/* =====================================================
   GENESIS MANAGEMENT SOLUTIONS — V3 PREMIUM CSS
   Palette: Warm Charcoal + Copper Rose + Cream
   Fonts: Sora + Plus Jakarta Sans + Noto Sans KR
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Space+Grotesk:wght@400;600;700&family=Noto+Sans+KR:wght@400;500;600;700&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────────────────────── */
:root {
  /* Primary Palette */
  --charcoal: #1c2528;
  --charcoal-mid: #2f3b3f;
  --charcoal-lt: #4f5f64;

  /* Teal Accent (reusing copper keys) */
  --copper: #2a9d8f;
  --copper-lt: #56b8ac;
  --copper-glow: #d8f3ee;
  --copper-deep: #1a6669;

  /* Light Surfaces */
  --cream: #fcfefd;
  --sand: #f6fbf9;
  --white: #ffffff;

  /* Text */
  --text-light: #f5fbfa;
  --text-dark: #1c2528;
  --text-muted: #6f8085;
  --text-kr: rgba(245, 251, 250, 0.55);

  /* Borders & Dividers */
  --border: #dde8e5;
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  --font-kr: 'Noto Sans KR', sans-serif;

  /* Layout */
  --max-w: 1240px;
  --pad: clamp(20px, 5vw, 80px);
  --radius: 8px;
  --radius-lg: 16px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ─────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  font-family: var(--font-body);
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1,
h2,
h3 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--charcoal);
}

h4,
h5,
h6 {
  font-family: var(--font-body);
  line-height: 1.3;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 700;
}

h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
}

h3 {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
}

h4 {
  font-size: 16px;
  font-weight: 700;
}

.kr {
  font-family: var(--font-kr);
}

.kr-small {
  font-family: var(--font-kr);
  font-size: 0.78em;
  opacity: 0.55;
  display: block;
  margin-top: 5px;
  font-weight: 400;
}

.kr-muted {
  font-family: var(--font-kr);
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-top: 8px;
  display: block;
}

/* ─── UTILITY LAYOUT ─────────────────────────────────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--copper);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--copper);
}

.section-intro {
  max-width: 640px;
  margin-bottom: 60px;
}

.section-intro h2 {
  margin-bottom: 16px;
}

.section-intro p {
  font-size: 17px;
  color: var(--text-muted);
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

[data-reveal="left"] {
  transform: translateX(-32px);
}

[data-reveal="right"] {
  transform: translateX(32px);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger */
[data-reveal][data-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal][data-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal][data-delay="3"] {
  transition-delay: 0.3s;
}

[data-reveal][data-delay="4"] {
  transition-delay: 0.4s;
}

[data-reveal][data-delay="5"] {
  transition-delay: 0.5s;
}

[data-reveal][data-delay="6"] {
  transition-delay: 0.6s;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
  border: none;
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--copper-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184, 117, 93, 0.35);
}

.btn-outline {
  border: 2px solid var(--copper);
  color: var(--copper);
  background: transparent;
  padding: 12px 26px;
}

.btn-outline:hover {
  background: var(--copper);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1.5px solid var(--border-dark);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  padding: 12px 26px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ─── HEADER / NAV ───────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 var(--pad);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}

.site-header.scrolled {
  background: rgba(30, 30, 36, 0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

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

.nav-logo img {
  height: 38px;
  object-fit: contain;
}

/* Nav links — reordered: About | Services | Industries | FAQ | Insights | [Contact CTA] */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  background: var(--copper) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--copper-lt) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(30, 30, 36, 0.97);
  backdrop-filter: blur(24px);
  padding: 24px var(--pad) 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-direction: column;
  gap: 4px;
  transform: translateY(-16px);
  opacity: 0;
  transition: all 0.3s var(--ease);
  pointer-events: none;
  z-index: 1000;
}

.nav-mobile.open {
  display: flex;
  transform: none;
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease;
}

.nav-mobile a:hover {
  color: var(--copper);
}

.nav-mobile .nav-cta {
  border-bottom: none;
  margin-top: 16px;
  text-align: center;
  display: block;
  border-radius: 100px !important;
  background: var(--copper) !important;
  color: white !important;
  padding: 14px 0 !important;
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 140px var(--pad) 100px;
}

/* Animated gradient mesh */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(184, 117, 93, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(184, 117, 93, 0.08) 0%, transparent 50%),
    linear-gradient(160deg, #1e1e24 0%, #2d2d35 50%, #1e1e24 100%);
  animation: meshMove 12s ease-in-out infinite alternate;
}

@keyframes meshMove {
  0% {
    background-position: 0 0, 100% 100%, 0 0;
  }

  100% {
    background-position: 10% 10%, 90% 90%, 0 0;
  }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--copper-glow);
  border-radius: 50%;
  opacity: 0;
  animation: float var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-10vh) scale(1.5);
    opacity: 0;
  }
}

.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--copper);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--copper);
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: 8px;
}

.hero-kr-line {
  display: block;
  font-family: var(--font-kr);
  font-size: 0.42em;
  font-weight: 400;
  color: rgba(242, 236, 229, 0.38);
  margin-top: 12px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(242, 236, 229, 0.65);
  max-width: 500px;
  margin: 28px 0 6px;
  line-height: 1.8;
}

.hero-sub-kr {
  display: block;
  font-family: var(--font-kr);
  font-size: 13px;
  color: rgba(242, 236, 229, 0.3);
  margin-top: 6px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Hero right — stat cards */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.hero-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(184, 117, 93, 0.3);
  transform: translateY(-4px);
}

.hero-stat:hover::before {
  opacity: 1;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 700;
  color: var(--copper-lt);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  display: block;
}

.stat-kr {
  font-family: var(--font-kr);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  display: block;
  margin-top: 4px;
}

/* ─── PAGE HERO (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  background: var(--charcoal);
  padding: 160px var(--pad) 96px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(184, 117, 93, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(184, 117, 93, 0.06) 0%, transparent 50%);
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--text-light);
  max-width: 860px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(242, 236, 229, 0.6);
  max-width: 580px;
  line-height: 1.8;
}

.page-hero .hero-kr {
  font-family: var(--font-kr);
  display: block;
  font-size: 0.44em;
  color: rgba(242, 236, 229, 0.35);
  margin-top: 10px;
}

.page-hero .hero-sub-kr {
  font-family: var(--font-kr);
  font-size: 14px;
  color: rgba(242, 236, 229, 0.3);
  display: block;
  margin-top: 8px;
}

.page-hero .hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ─── INDUSTRIES MOSAIC ───────────────────────────────────────────────────── */
.section-industries {
  padding: 0;
}

.ind-header {
  padding: 96px var(--pad) 56px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.ind-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 4px;
}

.ind-tile {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.ind-tile:first-child {
  grid-row: 1 / 3;
}

.ind-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.ind-tile:hover img {
  transform: scale(1.08);
}

.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 30, 36, 0.92) 0%, rgba(30, 30, 36, 0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s ease;
}

.ind-tile:hover .ind-overlay {
  background: linear-gradient(to top, rgba(30, 30, 36, 0.96) 0%, rgba(184, 117, 93, 0.15) 60%, transparent 100%);
}

.ind-overlay h3 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 4px;
  transform: translateY(6px);
  transition: transform 0.4s var(--ease);
}

.ind-tile:hover .ind-overlay h3 {
  transform: none;
}

.ind-overlay .ind-kr {
  font-family: var(--font-kr);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.ind-overlay .ind-copper {
  display: block;
  width: 0;
  height: 2px;
  background: var(--copper);
  margin-top: 8px;
  transition: width 0.4s var(--ease);
}

.ind-tile:hover .ind-overlay .ind-copper {
  width: 32px;
}

/* ─── SERVICES ────────────────────────────────────────────────────────────── */
.section-services {
  padding: 100px 0;
  background: var(--sand);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 56px;
}

/* Cards ordered: Documentation → Screening → E7 Advisory → Workforce (reversed from original) */
.svc-card {
  background: var(--charcoal);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.4s var(--ease);
}

.svc-card:nth-child(2) {
  background: var(--charcoal-mid);
}

.svc-card:nth-child(3) {
  background: var(--charcoal-mid);
}

.svc-card:hover {
  background: var(--copper-deep) !important;
}

.svc-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.svc-icon-wrap {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 117, 93, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.3s ease;
}

.svc-card:hover .svc-icon-wrap {
  border-color: rgba(184, 117, 93, 0.7);
}

.svc-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--copper-lt);
}

.svc-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.svc-kr {
  display: block;
  font-family: var(--font-kr);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.svc-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ─── STATS STRIP ──────────────────────────────────────────────────────────── */
.section-stats {
  padding: 80px 0;
  background: var(--cream);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Credibility items reordered: Global → Korean SMEs → Manufacturing → Years */
.stats-item {
  padding: 44px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background 0.3s ease;
}

.stats-item:last-child {
  border-right: none;
}

.stats-item:hover {
  background: var(--sand);
}

.stats-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--copper);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-icon svg {
  width: 20px;
  height: 20px;
  color: var(--copper);
}

.stats-num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--copper);
  display: block;
  line-height: 1;
}

.stats-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.stats-kr {
  font-family: var(--font-kr);
  font-size: 11px;
  color: var(--text-muted);
}

/* ─── RECRUITMENT PROCESS — VERTICAL TIMELINE ──────────────────────────────── */
.section-process {
  padding: 100px 0;
  background: var(--charcoal);
}

.section-process .eyebrow {
  color: var(--copper-lt);
}

.section-process .eyebrow::before {
  background: var(--copper-lt);
}

.section-process h2 {
  color: var(--text-light);
}

.section-process .section-intro p {
  color: rgba(242, 236, 229, 0.55);
}

.timeline {
  position: relative;
  max-width: 840px;
  margin: 64px auto 0;
  padding: 0 var(--pad);
}

.timeline::before {
  content: '';
  position: absolute;
  left: calc(var(--pad) + 31px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184, 117, 93, 0.4) 10%, rgba(184, 117, 93, 0.4) 90%, transparent);
}

.tl-step {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  padding-bottom: 52px;
  position: relative;
}

.tl-step:last-child {
  padding-bottom: 0;
}

.tl-dot {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--charcoal-mid);
  border: 2px solid var(--copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease-bounce);
}

.tl-step:hover .tl-dot {
  background: var(--copper);
  border-color: var(--copper-lt);
  transform: scale(1.12);
}

.tl-dot svg {
  width: 24px;
  height: 24px;
  color: var(--copper-lt);
  transition: color 0.3s ease;
}

.tl-step:hover .tl-dot svg {
  color: var(--white);
}

.tl-num {
  position: absolute;
  top: -10px;
  right: -8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--charcoal);
  background: var(--copper);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tl-content {
  flex: 1;
  padding-top: 14px;
}

.tl-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
  font-family: var(--font-head);
}

.tl-content .tl-kr {
  font-family: var(--font-kr);
  font-size: 13px;
  color: var(--text-kr);
  display: block;
  margin-bottom: 10px;
}

.tl-content p {
  font-size: 14px;
  color: rgba(242, 236, 229, 0.5);
  line-height: 1.7;
  display: none;
}

.tl-step:hover .tl-content p {
  display: block;
}

/* ─── INSIGHTS ────────────────────────────────────────────────────────────── */
.section-insights {
  padding: 100px 0;
  background: var(--cream);
}

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

.insight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper-glow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.insight-card:hover {
  border-color: var(--copper-glow);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(184, 117, 93, 0.12);
}

.insight-card:hover::before {
  transform: scaleX(1);
}

.insight-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper);
  margin-bottom: 14px;
}

.insight-card h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.4;
}

.insight-card p {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.7;
}

.insight-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--copper);
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.insight-card:hover .insight-more {
  gap: 12px;
}

/* ─── LEADERSHIP ──────────────────────────────────────────────────────────── */
.section-leadership {
  padding: 100px 0;
  background: var(--sand);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.lead-left {
  border-left: 3px solid var(--copper);
  padding-left: 32px;
}

.lead-left .eyebrow {
  margin-bottom: 20px;
}

.lead-name {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--charcoal);
  margin-bottom: 6px;
}

.lead-role {
  font-size: 15px;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 28px;
  display: block;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

.lead-bio {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.lead-bio-kr {
  font-family: var(--font-kr);
  font-size: 14px;
  color: rgba(107, 102, 112, 0.7);
  line-height: 1.7;
  font-style: italic;
  padding-top: 24px;
  margin-top: 20px;
  border-top: 1px solid var(--border);
}

.lead-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lead-item {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.3s ease;
}

.lead-item:last-child {
  border-bottom: none;
}

.lead-item:hover {
  background: var(--charcoal);
}

.lead-item:hover h4,
.lead-item:hover p {
  color: rgba(255, 255, 255, 0.8);
}

.lead-item-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}

.lead-item:hover .lead-item-icon {
  border-color: var(--copper);
}

.lead-item-icon svg {
  width: 16px;
  height: 16px;
  color: var(--copper);
}

.lead-item h4 {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.lead-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.lead-item .region-kr {
  font-family: var(--font-kr);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── CTA FULLBLEED ───────────────────────────────────────────────────────── */
.section-cta {
  padding: 100px var(--pad);
  text-align: center;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184, 117, 93, 0.1) 0%, transparent 65%);
  animation: ctaPulse 6s ease-in-out infinite alternate;
}

@keyframes ctaPulse {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-kr {
  display: block;
  font-family: var(--font-kr);
  font-size: 0.48em;
  color: rgba(242, 236, 229, 0.35);
  margin-top: 8px;
  font-weight: 400;
}

.cta-inner p {
  font-size: 16px;
  color: rgba(242, 236, 229, 0.6);
  line-height: 1.8;
  margin-bottom: 8px;
}

.cta-sub-kr {
  font-family: var(--font-kr);
  font-size: 13px;
  color: rgba(242, 236, 229, 0.25);
  display: block;
  margin-top: 6px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
/* Column order: Contact | Insights | Services | Brand */
.site-footer {
  background: #17171c;
  padding: 80px 0 0;
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--copper);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li,
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--copper);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-brand {
  text-align: right;
}

.footer-logo {
  height: 36px;
  margin-left: auto;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

.footer-tagline span {
  display: block;
  font-family: var(--font-kr);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.15);
  margin-top: 4px;
}

.footer-bottom-wrap {
  max-width: var(--max-w);
  margin: 56px auto 0;
  padding: 24px var(--pad);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* ─── ABOUT PAGE ──────────────────────────────────────────────────────────── */
.about-who-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}

.who-text {}

.who-text h2 {
  margin-bottom: 20px;
}

.who-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.85;
}

.who-text .p-kr {
  font-family: var(--font-kr);
  font-size: 14px;
  color: rgba(107, 102, 112, 0.65);
  font-style: italic;
  line-height: 1.7;
  margin-top: 8px;
}

.who-accent {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.who-accent-block {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  color: var(--text-light);
}

.who-accent-num {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 700;
  color: var(--copper-lt);
  line-height: 1;
  margin-bottom: 8px;
}

.who-accent-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.who-accent-kr {
  font-family: var(--font-kr);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  display: block;
  margin-top: 4px;
}

/* Philosophy grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}

.phi-item {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.phi-item:nth-child(2n) {
  border-right: none;
}

.phi-item:nth-child(n+3) {
  border-bottom: none;
}

.phi-item:hover {
  background: var(--charcoal);
}

.phi-item:hover .phi-num,
.phi-item:hover h4,
.phi-item:hover p,
.phi-item:hover .phi-kr {
  color: rgba(255, 255, 255, 0.85) !important;
}

.phi-num {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 18px;
  line-height: 1;
}

.phi-item h4 {
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.phi-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.phi-item .phi-kr {
  font-family: var(--font-kr);
  font-size: 12px;
  color: rgba(107, 102, 112, 0.7);
  font-style: italic;
}

/* Case studies */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s var(--ease);
}

.case-card:hover {
  border-color: var(--copper-glow);
  box-shadow: 0 10px 40px rgba(184, 117, 93, 0.1);
  transform: translateY(-3px);
}

.case-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-tag::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--copper);
}

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

.case-icon {
  width: 36px;
  height: 36px;
  background: var(--charcoal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.case-icon svg {
  width: 16px;
  height: 16px;
  color: var(--copper-lt);
}

.case-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.case-sub {
  font-size: 12px;
  color: var(--copper);
  font-weight: 600;
}

.case-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.case-kr {
  font-family: var(--font-kr);
  font-size: 12px;
  color: rgba(107, 102, 112, 0.6);
  font-style: italic;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 8px;
}

/* Global experience */
.global-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.global-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s var(--ease);
}

.global-card:hover {
  border-color: var(--copper-glow);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(184, 117, 93, 0.08);
}

.global-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.global-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.global-region {
  font-family: var(--font-kr);
  font-size: 12px;
  color: rgba(107, 102, 112, 0.5);
  margin-top: 10px;
}

/* ─── SERVICES PAGE ───────────────────────────────────────────────────────── */
.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.svc-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.svc-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 12px;
}

.svc-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.svc-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.35s var(--ease);
}

.svc-block:hover {
  border-color: var(--copper-glow);
  box-shadow: 0 8px 32px rgba(184, 117, 93, 0.1);
}

.svc-block-icon {
  width: 48px;
  height: 48px;
  background: var(--sand);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.svc-block-icon svg {
  width: 22px;
  height: 22px;
  color: var(--copper);
}

.svc-block h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.svc-block .svc-kr {
  font-family: var(--font-kr);
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.svc-block p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.framework-banner {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.framework-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184, 117, 93, 0.12) 0%, transparent 60%);
}

.framework-banner>* {
  position: relative;
  z-index: 1;
}

.framework-banner h3 {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--white);
  margin-bottom: 8px;
}

.framework-banner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
}

.pdf-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.pdf-badge {
  background: var(--copper);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.pdf-info {
  flex: 1;
}

.pdf-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.pdf-info p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ─── INDUSTRIES PAGE ───────────────────────────────────────────────────────── */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.sector-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
}

.sector-card:hover {
  box-shadow: 0 12px 48px rgba(184, 117, 93, 0.12);
  transform: translateY(-4px);
  border-color: var(--copper-glow);
}

.sector-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.sector-card:hover img {
  transform: scale(1.06);
}

.sector-card-body {
  padding: 28px;
}

.sector-card-body h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.sector-kr {
  font-family: var(--font-kr);
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.sector-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.role-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s ease;
}

.role-group:hover {
  border-color: var(--copper);
}

.role-group h4 {
  font-size: 15px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
}

.role-group ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.role-group li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.role-group li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

/* ─── FAQ PAGE ────────────────────────────────────────────────────────────── */
/* FAQ group order: Indian Professionals → Korean Employers → Admin Reps */
.faq-section {
  padding: 100px 0;
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
}

.faq-sidebar-nav {
  position: sticky;
  top: 96px;
}

.faq-sidebar-nav h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper);
  margin-bottom: 16px;
}

.faq-sidebar-nav a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

.faq-sidebar-nav a:hover {
  color: var(--charcoal);
}

.faq-group {
  margin-bottom: 52px;
}

.faq-group-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--copper);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  background: none;
  border: none;
  text-align: left;
  gap: 16px;
  cursor: pointer;
  transition: color 0.25s ease;
}

.faq-q-kr {
  display: block;
  font-family: var(--font-kr);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}

.faq-toggle:hover {
  color: var(--copper);
}

.faq-arrow {
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--copper);
  transition: transform 0.35s var(--ease);
}

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

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-body-inner {
  padding: 0 0 24px;
}

.faq-body-inner p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-a-kr {
  font-family: var(--font-kr);
  display: block;
  font-size: 13px;
  color: rgba(107, 102, 112, 0.65);
  font-style: italic;
  margin-top: 10px;
  line-height: 1.7;
}

/* ─── CONTACT PAGE ────────────────────────────────────────────────────────── */
/* Channel order: KakaoTalk → Phone → WhatsApp → Email */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card:hover {
  border-color: var(--copper);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(184, 117, 93, 0.1);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--copper);
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper);
}

.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.2s ease;
}

.contact-value:hover {
  color: var(--copper);
}

.contact-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-note .kr {
  font-family: var(--font-kr);
}

.contact-action-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-block {}

.contact-info-block h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper);
  margin-bottom: 14px;
}

.contact-info-block p,
.contact-info-block address {
  font-size: 14px;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.85;
}

.fee-box {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.fee-box h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper-lt);
  margin-bottom: 14px;
}

.fee-box p {
  font-size: 14px;
  color: rgba(242, 236, 229, 0.6);
  line-height: 1.8;
  margin-bottom: 10px;
}

.fee-box .fee-kr {
  font-family: var(--font-kr);
  font-size: 13px;
  color: rgba(242, 236, 229, 0.3);
  font-style: italic;
  margin-top: 10px;
  display: block;
}

/* ─── INSIGHTS INDEX PAGE ──────────────────────────────────────────────────── */
.insights-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--copper);
  color: var(--copper);
  background: rgba(184, 117, 93, 0.06);
}

.card-hidden {
  display: none !important;
}

/* ─── ARTICLE PAGES ────────────────────────────────────────────────────────── */
.article-wrap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--pad);
}

.article-toc {
  position: sticky;
  top: 96px;
  height: fit-content;
}

.article-toc .toc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper);
  margin-bottom: 16px;
}

.article-toc a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

.article-toc a:hover {
  color: var(--charcoal);
}

.article-body h2 {
  font-size: clamp(22px, 2.5vw, 34px);
  margin-top: 44px;
  margin-bottom: 18px;
}

.article-body h3 {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 32px;
  margin-bottom: 14px;
}

.article-body p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

.article-body ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 18px;
}

.article-body li {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.article-body th {
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  font-family: var(--font-body);
}

.article-body td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}

.article-kr-note {
  background: var(--sand);
  border-left: 3px solid var(--copper);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}

.article-kr-note p {
  font-family: var(--font-kr);
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.75;
  font-style: italic;
}

/* ─── EMPLOYER GUIDE / FRAMEWORK / POSITIONS ─────────────────────────────── */
.guide-section {
  padding: 96px 0;
}

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

.position-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
}

.position-item:hover {
  border-color: var(--copper);
  transform: translateY(-2px);
}

.pos-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper);
  margin-bottom: 10px;
}

.position-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.pos-kr {
  font-family: var(--font-kr);
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── CANDIDATES PAGE ────────────────────────────────────────────────────────── */
.candidates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.candidate-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s var(--ease);
}

.candidate-card:hover {
  border-color: var(--copper);
  box-shadow: 0 8px 32px rgba(184, 117, 93, 0.1);
  transform: translateY(-3px);
}

.cand-role {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper);
  margin-bottom: 14px;
}

.candidate-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.cand-kr {
  font-family: var(--font-kr);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.cand-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cand-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.cand-detail svg {
  width: 14px;
  height: 14px;
  color: var(--copper);
  flex-shrink: 0;
}

/* ─── PRIVACY / TERMS ────────────────────────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px var(--pad);
}

.legal-content h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  margin-top: 44px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal-content li {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.7;
}

/* ─── CONTENT SECTIONS ─────────────────────────────────────────────────────── */
.section {
  padding: 96px 0;
}

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

.section-sand {
  background: var(--sand);
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  background: var(--charcoal);
}

/* styled list */
.styled-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 14px;
}

.styled-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.styled-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 12px;
  top: 1px;
}

/* trust statement */
.trust-statement {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 800px;
  margin: 32px auto 0;
  text-align: center;
}

.trust-statement-kr {
  font-family: var(--font-kr);
  display: block;
  font-size: 13px;
  color: rgba(107, 102, 112, 0.6);
  font-style: italic;
  margin-top: 14px;
}

/* resource cards */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s var(--ease);
}

.resource-card:hover {
  border-color: var(--copper-glow);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(184, 117, 93, 0.08);
}

.resource-card h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.resource-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* intl grid */
.intl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.intl-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.intl-card:hover {
  border-color: var(--copper);
}

.intl-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.intl-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.intl-regions {
  font-family: var(--font-kr);
  font-size: 12px;
  color: rgba(107, 102, 112, 0.5);
  margin-top: 10px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .stats-item:nth-child(2) {
    border-right: none;
  }

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

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .about-who-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .phi-item {
    border-right: none !important;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar-nav {
    display: none;
  }

  .article-wrap {
    grid-template-columns: 1fr;
  }

  .article-toc {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-logo {
    margin-left: 0;
  }

  .ind-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .ind-tile:first-child {
    grid-row: auto;
  }

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

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

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

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

  .intl-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero {
    padding: 120px var(--pad) 80px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero {
    padding: 120px var(--pad) 60px;
  }

  .section,
  .guide-section {
    padding: 64px 0;
  }

  .section-services .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
    border: none;
    gap: 12px;
  }

  .stats-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    border-right: 1px solid var(--border) !important;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .svc-blocks {
    grid-template-columns: 1fr;
  }

  .sector-grid {
    grid-template-columns: 1fr;
  }

  .role-grid {
    grid-template-columns: 1fr;
  }

  .contact-channels-grid {
    grid-template-columns: 1fr;
  }

  .global-grid,
  .intl-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-logo {
    margin-left: 0;
  }

  .footer-bottom-wrap {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .ind-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .ind-tile {
    height: 220px;
  }

  .hero-actions,
  .cta-actions,
  .page-hero .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .positions-grid {
    grid-template-columns: 1fr;
  }

  .candidates-grid {
    grid-template-columns: 1fr;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding: 0 16px;
  }

  .timeline::before {
    left: 47px;
  }

  .framework-banner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .section-intro {
    margin-bottom: 40px;
  }

  .hero-stat {
    padding: 20px;
  }
}

/* ─── ARTICLE LAYOUT ─────────────────────────────────────────────────────── */
.article-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px var(--pad) 100px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 100px;
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid var(--border);
}

.toc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 14px;
}

.article-toc a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  border-left: 2px solid transparent;
  padding-left: 10px;
  margin-left: -10px;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.article-toc a:hover {
  color: var(--charcoal);
  border-left-color: var(--copper);
}

.article-body {
  max-width: 720px;
}

.article-body h2 {
  font-size: clamp(20px, 2vw, 26px);
  color: var(--charcoal);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sand);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  font-size: 17px;
  color: var(--charcoal);
  margin: 28px 0 10px;
}

.article-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.article-body li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.article-body strong {
  color: var(--charcoal);
}

.article-body a {
  color: var(--copper);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  border-radius: var(--radius);
  overflow: hidden;
}

.article-body table th {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-body table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.article-body table tr:hover td {
  background: var(--sand);
}

.article-kr-note {
  background: rgba(184, 117, 93, 0.06);
  border-left: 3px solid var(--copper);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 24px 0;
}

.article-kr-note p {
  margin: 0;
  font-family: var(--font-kr);
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .article-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .article-toc {
    position: static;
    display: none;
  }
}

/* ─── CANDIDATE CARDS ─────────────────────────────────────────────────────── */
.candidates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.candidate-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.35s var(--ease);
}

.candidate-card:hover {
  border-color: var(--copper);
  box-shadow: 0 8px 32px rgba(184, 117, 93, 0.1);
  transform: translateY(-4px);
}

.cand-role {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper);
  display: block;
  margin-bottom: 8px;
}

.candidate-card h3 {
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.3;
}

.cand-kr {
  font-family: var(--font-kr);
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}

.cand-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cand-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cand-detail svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--copper);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .candidates-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .candidates-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── CASE CARDS ──────────────────────────────────────────────────────────── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.35s var(--ease);
}

.case-card:hover {
  border-color: var(--copper);
  box-shadow: 0 8px 24px rgba(184, 117, 93, 0.1);
}

.case-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper);
  display: block;
  margin-bottom: 16px;
}

.case-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.case-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.case-icon svg {
  width: 18px;
  height: 18px;
  color: var(--copper);
}

.case-header h4 {
  font-size: 16px;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.case-sub {
  font-family: var(--font-kr);
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

.case-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── ROLE GRID (Korean Employers Page) ──────────────────────────────────── */
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.role-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.3s ease;
}

.role-group:hover {
  border-color: var(--copper);
}

.role-group h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.role-group ul {
  padding-left: 16px;
  margin: 0;
}

.role-group li {
  font-family: var(--font-kr);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .role-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .role-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── FRAMEWORK BANNER ────────────────────────────────────────────────────── */
.framework-banner {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.framework-banner h3 {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.framework-banner p {
  font-size: 15px;
  color: rgba(242, 236, 229, 0.55);
  line-height: 1.7;
  margin: 0;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .framework-banner {
    flex-direction: column;
    padding: 32px 24px;
  }
}

/* ─── STYLED LIST ─────────────────────────────────────────────────────────── */
.styled-list {
  padding-left: 0;
  list-style: none;
}

.styled-list li {
  padding: 10px 0 10px 20px;
  position: relative;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  border-bottom: 1px dashed var(--border);
}

.styled-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 700;
}

.styled-list li:last-child {
  border-bottom: none;
}

/* ─── SECTION-STATS ───────────────────────────────────────────────────────── */
.section-stats {
  padding: 0;
  background: var(--cream);
}