/* ============================================================
   EnoVance HP — style.css
   Design: Premium HR company (Recruit/Persol level)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #1B3FC4;
  --primary-dark:  #0F2785;
  --primary-light: #3B5EE8;
  --accent:        #F97316;
  --accent-light:  #FB923C;
  --dark:          #111827;
  --gray-900:      #111827;
  --gray-700:      #374151;
  --gray-500:      #6b7280;
  --gray-400:      #9ca3af;
  --gray-200:      #E2E8F0;
  --gray-100:      #F1F5F9;
  --gray-50:       #F8FAFC;
  --white:         #FFFFFF;

  --gradient-hero:    linear-gradient(160deg, #EEF2FF 0%, #F0F7FF 55%, #FFFFFF 100%);
  --gradient-brand:   linear-gradient(135deg, #1B3FC4, #6366F1);
  --gradient-accent:  linear-gradient(135deg, #F97316, #FBBF24);
  --gradient-dark:    linear-gradient(135deg, #1B3FC4 0%, #4338CA 100%);

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
  --shadow-xl:  0 24px 80px rgba(0,0,0,0.18);
  --shadow-brand: 0 8px 32px rgba(27,63,196,0.30);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-full: 9999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', 'Meiryo', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 2px;
  background: var(--accent);
}
.section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-title span {
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
  padding-bottom: 2px;
}
.section-desc {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 56px;
  line-height: 1.9;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section--gray { background: var(--gray-50); }
.section--dark { background: var(--gradient-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(27,63,196,0.40);
}
.btn--outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
  font-weight: 600;
}
.btn--outline:hover {
  background: rgba(27,63,196,0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(27,63,196,0.12);
}
.btn--white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--hero-primary {
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 15px;
  padding: 16px 32px;
  box-shadow: var(--shadow-brand);
}
.btn--hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(27,63,196,0.40);
}
.btn--hero-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn--hero-secondary:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* ---------- Tags ---------- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-600);
  letter-spacing: 0.02em;
}

/* ---------- Animations ---------- */
.fade-up, .fade-left, .fade-right {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up      { transform: translateY(40px); }
.fade-left    { transform: translateX(-40px); }
.fade-right   { transform: translateX(40px); }
.is-visible   { opacity: 1 !important; transform: none !important; }

/* Staggered children */
.numbers__item:nth-child(2), .service-card:nth-child(2),
.reason-card:nth-child(2), .voice-card:nth-child(2),
.news-item:nth-child(2), .flow__step:nth-child(2) { transition-delay: 0.1s; }
.numbers__item:nth-child(3), .service-card:nth-child(3),
.reason-card:nth-child(3), .voice-card:nth-child(3),
.news-item:nth-child(3), .flow__step:nth-child(3) { transition-delay: 0.2s; }
.numbers__item:nth-child(4), .reason-card:nth-child(4),
.news-item:nth-child(4), .flow__step:nth-child(4) { transition-delay: 0.3s; }
.news-item:nth-child(5) { transition-delay: 0.4s; }

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray-200);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.header.hero-mode .logo-img { filter: brightness(0); }
.footer__logo .logo-img { filter: brightness(0) invert(1); }
.header.hero-mode .nav__link { color: var(--gray-900); }
.header.hero-mode .btn--outline {
  border-color: var(--primary);
  color: var(--primary);
}
.header__nav { flex: 1; }
.nav__list {
  display: flex;
  gap: 4px;
}
.nav__link {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
  letter-spacing: 0.01em;
}
.nav__link:hover {
  color: var(--primary);
  background: rgba(27,63,196,0.06);
}
.header__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--header-h) 0 0;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(27,63,196,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,63,196,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #4F46E5, transparent);
  top: -200px; right: -100px;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #F97316, transparent);
  bottom: 0; left: -100px;
  animation-delay: -3s;
  opacity: 0.20;
}
.hero__blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #06B6D4, transparent);
  top: 40%; left: 30%;
  animation-delay: -5s;
  opacity: 0.15;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -20px) scale(1.05); }
  66%       { transform: translate(-15px, 15px) scale(0.97); }
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(27,63,196,0.08);
  border: 1px solid rgba(27,63,196,0.2);
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero__title--accent {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
  border-bottom: 3px solid var(--primary);
  padding-bottom: 2px;
}
.hero__desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.9;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
  padding: 20px;
}
.hero__mockup {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}
.mockup__bar {
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  margin-bottom: 16px;
  position: relative;
}
.mockup__bar::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 60%; height: 100%;
  background: var(--gradient-brand);
  border-radius: 4px;
}
.mockup__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  background: var(--gray-50);
  transition: background 0.2s;
}
.mockup__row:hover { background: var(--gray-100); }
.mockup__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient-brand);
  flex-shrink: 0;
}
.mockup__avatar--2 { background: linear-gradient(135deg, #10B981, #059669); }
.mockup__avatar--3 { background: linear-gradient(135deg, #F97316, #EF4444); }
.mockup__lines { flex: 1; }
.mockup__line {
  height: 8px;
  border-radius: 4px;
  background: var(--gray-200);
  margin-bottom: 4px;
}
.mockup__line--wide  { width: 80%; }
.mockup__line--medium{ width: 60%; }
.mockup__line--short { width: 40%; }
.mockup__badge {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  background: rgba(99,102,241,0.12);
  color: var(--primary);
  white-space: nowrap;
}
.mockup__badge--green  { background: rgba(16,185,129,0.12); color: #059669; }
.mockup__badge--orange { background: rgba(249,115,22,0.12); color: #F97316; }
.hero__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  animation: cardFloat 4s ease-in-out infinite;
}
.hero__card--1 { top: -20px; left: -20px; animation-delay: 0s; }
.hero__card--2 { top: 40%;  right: -30px; animation-delay: -1.5s; }
.hero__card--3 { bottom: -10px; left: 10px; animation-delay: -3s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero__card-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__card-icon svg { width: 18px; height: 18px; color: white; }
.hero__card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.hero__card-label {
  font-size: 11px;
  color: var(--gray-500);
  white-space: nowrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 11px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.1em;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gray-300), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- TICKER ---------- */
.ticker {
  background: var(--gradient-brand);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: 32px;
  animation: ticker 30s linear infinite;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}
.ticker__track span:nth-child(even) { color: var(--accent); font-size: 8px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- NUMBERS ---------- */
.numbers .section-label,
.numbers .section-title { text-align: center; }
.numbers .section-title { display: block; }
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.numbers__item {
  background: var(--white);
  padding: 48px 32px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}
.numbers__item:hover {
  background: var(--primary);
}
.numbers__item:hover .numbers__num,
.numbers__item:hover .numbers__label,
.numbers__item:hover .numbers__desc { color: rgba(255,255,255,0.9); }
.numbers__num {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  transition: color 0.3s;
}
.numbers__unit {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.numbers__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  transition: color 0.3s;
}
.numbers__desc {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.7;
  transition: color 0.3s;
}

/* ---------- ABOUT ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.about__mission {
  background: var(--gray-50);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
}
.about__mission-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 10px;
}
.about__mission-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.8;
}
.about__desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 36px;
}
.about__values { display: flex; flex-direction: column; gap: 24px; }
.about__value {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease);
}
.about__value:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
  border-color: var(--gray-200);
}
.about__value-icon {
  width: 48px; height: 48px;
  background: var(--gradient-brand);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about__value-icon svg { width: 22px; height: 22px; color: white; }
.about__value h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.about__value p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ---------- SERVICES ---------- */
.services .section-label,
.services .section-title,
.services .section-desc { text-align: center; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card--featured {
  background: var(--gradient-brand);
  border-color: transparent;
  color: white;
}
.service-card--featured::before { display: none; }
.service-card--featured .service-card__num,
.service-card--featured .service-card__title,
.service-card--featured .service-card__desc,
.service-card--featured .service-card__list li { color: rgba(255,255,255,0.9); }
.service-card--featured .service-card__list li::before { background: var(--accent-light); }
.service-card--featured .tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.service-card--featured .service-card__link { color: white; }
.service-card--featured .service-card__link::after { background: white; }
.service-card__badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}
.service-card__num {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--gray-300);
  letter-spacing: 0.08em;
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
}
.service-card--featured .service-card__icon {
  background: rgba(255,255,255,0.15);
}
.service-card__icon svg { width: 26px; height: 26px; color: var(--primary); }
.service-card--featured .service-card__icon svg { color: white; }
.service-card__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.3;
}
.service-card__title small {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
  opacity: 0.7;
}
.service-card__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}
.service-card__list {
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.service-card__list li {
  font-size: 13px;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.service-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  position: relative;
  width: fit-content;
}
.service-card__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 24px;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.service-card__link:hover::after { transform: scaleX(1); }
.service-card__link svg { width: 14px; height: 14px; }

/* ---------- REASONS ---------- */
.reasons .section-label,
.reasons .section-title { text-align: center; }
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.reason-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.reason-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: 0;
}
.reason-card:hover::after { opacity: 1; }
.reason-card:hover .reason-card__icon,
.reason-card:hover .reason-card__num,
.reason-card:hover h3,
.reason-card:hover p { color: white !important; z-index: 1; position: relative; }
.reason-card:hover .reason-card__icon { background: rgba(255,255,255,0.2); }
.reason-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-brand); border-color: transparent; }
.reason-card__num {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.reason-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: background 0.3s;
}
.reason-card__icon svg { width: 22px; height: 22px; color: var(--primary); transition: color 0.3s; }
.reason-card:hover .reason-card__icon svg { color: white; }
.reason-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.reason-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

/* ---------- FLOW ---------- */
.flow .section-label { color: rgba(255,255,255,0.5); }
.flow .section-label::before { background: var(--accent); }
.flow__tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  padding: 4px;
  width: fit-content;
  margin: 0 auto 60px;
}
.flow__tab {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s var(--ease);
}
.flow__tab--active {
  background: var(--white);
  color: var(--primary);
}
.flow__content--hidden { display: none; }
.flow__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}
.flow__arrow {
  color: rgba(255,255,255,0.35);
  font-size: 20px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flow__step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.flow__step:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.flow__step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: white;
  background: var(--gradient-brand);
  border-radius: 20px;
  padding: 3px 12px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.flow__step h3 {
  font-size: 15px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  line-height: 1.4;
}
.flow__step p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.8; flex: 1; }

/* Flow light variant (white/gray bg) */
.flow__steps--light .flow__step {
  background: white;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.flow__steps--light .flow__step:hover {
  background: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.flow__steps--light .flow__step h3 { color: var(--dark); }
.flow__steps--light .flow__step p { color: var(--gray-500); }
.flow__steps--light .flow__arrow { color: var(--gray-300); }

/* ---------- VOICE ---------- */
.voice .section-label,
.voice .section-title { text-align: center; }
.voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.voice-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.voice-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.voice-card__quote {
  font-size: 80px;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 0.7;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
}
.voice-card__text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.9;
  margin-bottom: 28px;
  flex: 1;
}
.voice-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-100);
  padding-top: 20px;
}
.voice-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--gradient-brand);
}
.voice-card__avatar--google {
  background: #fff;
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #4285F4;
  font-family: 'Outfit', sans-serif;
}
.voice-card__avatar--google::after { content: 'G'; }
.voice-card__stars {
  font-size: 16px;
  color: #FBBC05;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.voice-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.voice-card__role { font-size: 12px; color: var(--gray-500); }
.voice__cta {
  text-align: center;
  margin-top: 48px;
}
.voice__cta .btn--outline {
  display: inline-flex;
  align-items: center;
}

/* ---------- NEWS ---------- */
.news__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.news__list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.2s var(--ease);
}
.news-item:first-child { border-top: 1px solid var(--gray-200); }
.news-item:hover { padding-left: 12px; }
.news-item__date {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  flex-shrink: 0;
  min-width: 90px;
}
.news-item__cat {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  white-space: nowrap;
}
.news-item__cat--service { background: #EEF2FF; color: var(--primary); }
.news-item__cat--pr      { background: #FFF7ED; color: #C2410C; }
.news-item__cat--media   { background: #F0FDF4; color: #15803D; }
.news-item__cat--corp    { background: #F8FAFC; color: var(--gray-600); }
.news-item__title {
  font-size: 14px;
  color: var(--gray-800);
  font-weight: 500;
  transition: color 0.2s;
  line-height: 1.6;
}
.news-item:hover .news-item__title { color: var(--primary); }

/* ---------- CTA ---------- */
.cta { padding: 100px 0; }
.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta__card {
  border-radius: var(--radius-xl);
  padding: 60px 52px;
  position: relative;
  overflow: hidden;
}
.cta__card--company {
  background: var(--gradient-dark);
  color: white;
}
.cta__card--jobseeker {
  background: linear-gradient(135deg, #F97316, #EF4444);
  color: white;
}
.cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta__label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  position: relative;
}
.cta__title {
  font-size: 32px;
  font-weight: 900;
  color: white;
  line-height: 1.3;
  margin-bottom: 16px;
  position: relative;
}
.cta__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 28px;
  position: relative;
}
.cta__list {
  margin-bottom: 36px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.cta__list li {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.cta__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-weight: 700;
}
.cta__card--jobseeker .cta__list li::before { color: rgba(255,255,255,0.9); }
.cta .btn { position: relative; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  color: var(--gray-400);
}
.footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo .logo-text { color: white; }
.footer__tagline {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.footer__mission-short {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}
.footer__nav-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__nav-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer__nav-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-col a {
  font-size: 13px;
  color: var(--gray-500);
  transition: color 0.2s;
}
.footer__nav-col a:hover { color: white; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer__links a:hover { color: rgba(255,255,255,0.7); }

/* ---------- PC ONLY ---------- */
.pc-only { display: inline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero__inner { gap: 48px; }
  .about__inner { gap: 48px; }
  .reasons__grid { grid-template-columns: repeat(2, 1fr); }
  .flow__steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .flow__arrow { display: none; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .pc-only { display: none; }

  /* Header */
  .header__nav, .header__actions { display: none; }
  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: white;
    padding: 24px 20px;
    box-shadow: var(--shadow-lg);
    gap: 0;
  }
  .header__nav.open .nav__list { flex-direction: column; }
  .hamburger { display: flex; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 48px;
  }
  .hero__visual { display: none; }
  .hero__title { font-size: 38px; }

  /* Numbers */
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .numbers__num { font-size: 40px; }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: 40px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Reasons */
  .reasons__grid { grid-template-columns: 1fr 1fr; }

  /* Voice */
  .voice__grid { grid-template-columns: 1fr; }

  /* News */
  .news__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .news-item { flex-wrap: wrap; }

  /* CTA */
  .cta__grid { grid-template-columns: 1fr; }
  .cta__card { padding: 40px 28px; }
  .cta__title { font-size: 26px; }

  /* Footer */
  .footer__nav-group { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .numbers__grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .reasons__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .btn--hero-primary, .btn--hero-secondary { justify-content: center; }
  .footer__nav-group { grid-template-columns: 1fr; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   SUB-PAGE COMMON STYLES
   ============================================================ */

/* ---------- Page Hero ---------- */
.page-hero {
  background: var(--gradient-hero);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(27,63,196,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,63,196,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.12;
  animation: blobFloat 8s ease-in-out infinite;
}
.page-hero__blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #1B3FC4, transparent);
  top: -150px; right: -80px;
}
.page-hero__blob--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #F97316, transparent);
  bottom: -100px; left: -80px;
  animation-delay: -3s; opacity: 0.08;
}
.page-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative; z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--gray-400);
}
.breadcrumb a { color: var(--gray-400); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb__sep { font-size: 10px; }
.breadcrumb__current { color: var(--gray-700); }
.page-hero__label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
}
.page-hero__label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 2px;
  background: var(--accent);
}
.page-hero__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.page-hero__title span {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
  border-bottom: 3px solid var(--primary);
  padding-bottom: 2px;
}
.page-hero__desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.9;
  max-width: 600px;
}

/* ---------- Sub-page CTA banner ---------- */
.sub-cta {
  background: var(--gradient-brand);
  padding: 80px 0;
  text-align: center;
  color: white;
}
.sub-cta__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  margin-bottom: 16px;
}
.sub-cta__desc { font-size: 16px; opacity: 0.8; margin-bottom: 36px; }
.sub-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SERVICE PAGE
   ============================================================ */
.service-detail {
  padding: 100px 0;
}
.service-detail:nth-child(even) { background: var(--gray-50); }
.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail__inner--reverse { direction: rtl; }
.service-detail__inner--reverse > * { direction: ltr; }
.service-detail__visual {
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail__visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.service-detail__visual-num {
  font-family: 'Outfit', sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  position: absolute;
  bottom: -20px; right: 20px;
  line-height: 1;
}
.service-detail__visual-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.service-detail__visual-icon svg { width: 44px; height: 44px; color: white; }
.service-detail__num {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary); margin-bottom: 12px;
}
.service-detail__title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 900; color: var(--dark);
  margin-bottom: 16px; line-height: 1.3;
}
.service-detail__title small {
  display: block;
  font-size: 0.55em;
  font-weight: 600;
  color: var(--gray-500);
  margin-top: 4px;
}
.service-detail__desc { font-size: 15px; color: var(--gray-500); line-height: 1.9; margin-bottom: 28px; }
.service-detail__features {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px;
}
.feature-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.feature-item__icon {
  width: 24px; height: 24px; flex-shrink: 0;
  background: rgba(27,63,196,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.feature-item__icon svg { width: 14px; height: 14px; color: var(--primary); }
.feature-item__text { font-size: 14px; color: var(--gray-700); line-height: 1.6; }
.service-detail__tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* Service comparison */
.service-comparison { padding: 80px 0; background: var(--gray-50); }
.comparison-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.comparison-table th {
  background: var(--gradient-brand);
  color: white; padding: 20px 24px;
  font-weight: 700; font-size: 15px;
  text-align: center;
}
.comparison-table th:first-child { text-align: left; background: var(--dark); }
.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px; color: var(--gray-700);
  background: white; text-align: center;
}
.comparison-table td:first-child { text-align: left; font-weight: 600; color: var(--dark); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .check { color: var(--primary); font-size: 18px; font-weight: 700; }
.comparison-table .dash { color: var(--gray-300); }

/* FAQ */
.faq { padding: 80px 0; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden; background: white;
}
.faq-item__q {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--dark);
  transition: background 0.2s;
}
.faq-item__q:hover { background: var(--gray-50); }
.faq-item__q-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--gradient-brand);
  border-radius: var(--radius-sm);
  color: white; display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 14px;
}
.faq-item__toggle {
  margin-left: auto; font-size: 20px;
  transition: transform 0.3s var(--ease);
  color: var(--primary);
}
.faq-item.open .faq-item__toggle { transform: rotate(45deg); }
.faq-item__a {
  padding: 0 24px 20px 68px;
  font-size: 14px; color: var(--gray-500); line-height: 1.9;
  display: none;
}
.faq-item.open .faq-item__a { display: block; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mission-hero {
  background: var(--gradient-dark);
  padding: 100px 0;
  text-align: center;
  color: white;
  position: relative; overflow: hidden;
}
.mission-hero__label {
  font-family: 'Outfit', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  margin-bottom: 16px;
}
.mission-hero__text {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900; line-height: 1.7;
  max-width: 800px; margin: 0 auto 40px;
}
.mission-hero__text span {
  background: linear-gradient(90deg, #FB923C, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.value-card {
  background: white; border-radius: var(--radius-lg);
  padding: 40px 32px; box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.value-card__num {
  font-family: 'Outfit', sans-serif; font-size: 48px;
  font-weight: 900; color: var(--gray-100);
  line-height: 1; margin-bottom: 20px;
}
.value-card__icon {
  width: 52px; height: 52px;
  background: rgba(27,63,196,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-card__icon svg { width: 28px; height: 28px; color: var(--primary); }
.value-card__title { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.value-card__desc { font-size: 14px; color: var(--gray-500); line-height: 1.8; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100); text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: 28px;
  font-weight: 900; color: white;
}
.team-card__avatar--1 { background: linear-gradient(135deg, #1B3FC4, #6366F1); }
.team-card__avatar--2 { background: linear-gradient(135deg, #F97316, #FBBF24); }
.team-card__avatar--3 { background: linear-gradient(135deg, #06B6D4, #3B82F6); }
.team-card__avatar--4 { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.team-card__avatar--5 { background: linear-gradient(135deg, #10B981, #3B82F6); }
.team-card__avatar--6 { background: linear-gradient(135deg, #EF4444, #F97316); }
.team-card__role { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--primary); text-transform: uppercase; margin-bottom: 8px; }
.team-card__name { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.team-card__bio { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

/* ============================================================
   COMPANY PAGE
   ============================================================ */
.company-info { padding: 80px 0; }
.company-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.company-table th {
  width: 200px; background: var(--gray-50);
  padding: 20px 28px; font-size: 14px;
  font-weight: 700; color: var(--dark);
  border-bottom: 1px solid var(--gray-200);
  text-align: left; vertical-align: top;
}
.company-table td {
  padding: 20px 28px; font-size: 14px;
  color: var(--gray-700); background: white;
  border-bottom: 1px solid var(--gray-200);
  line-height: 1.8;
}
.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: none; }

/* History timeline */
.history { padding: 80px 0; background: var(--gray-50); }
.timeline {
  position: relative; padding-left: 32px;
  max-width: 800px; margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 8px; bottom: 0;
  width: 2px; background: var(--gray-200);
}
.timeline-item {
  position: relative; padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute; left: -38px; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--primary);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item__year {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--primary); letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.timeline-item__title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.timeline-item__desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-page { padding: 80px 0; }
.news-filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.news-filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-500);
  background: white;
  transition: all 0.2s var(--ease);
}
.news-filter-btn:hover,
.news-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.news-cards { display: flex; flex-direction: column; gap: 0; }
.news-card-item {
  display: grid;
  grid-template-columns: 140px auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s;
}
.news-card-item:hover { background: var(--gray-50); border-radius: var(--radius-md); padding-left: 16px; padding-right: 16px; }
.news-card-item:first-child { border-top: 1px solid var(--gray-100); }
.news-item__date { font-family: 'Outfit', sans-serif; font-size: 13px; color: var(--gray-400); font-weight: 600; white-space: nowrap; }
.news-item__cat {
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; white-space: nowrap;
  letter-spacing: 0.04em;
}
.news-item__cat--service { background: rgba(27,63,196,0.1); color: var(--primary); }
.news-item__cat--pr { background: rgba(249,115,22,0.1); color: var(--accent); }
.news-item__cat--media { background: rgba(16,185,129,0.1); color: #059669; }
.news-item__cat--corp { background: rgba(100,116,139,0.1); color: var(--gray-500); }
.news-item__cat--event { background: rgba(139,92,246,0.1); color: #7C3AED; }
.news-item__title-link {
  font-size: 15px; color: var(--dark);
  font-weight: 500;
  transition: color 0.2s;
}
.news-item__title-link:hover { color: var(--primary); }
.news-item__arrow { color: var(--gray-300); font-size: 18px; }

/* ============================================================
   RECRUIT PAGE
   ============================================================ */
.recruit-culture { padding: 100px 0; }
.culture-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.culture-card {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: white;
  position: relative; overflow: hidden;
}
.culture-card::before {
  content: '';
  position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.culture-card__num {
  font-family: 'Outfit', sans-serif;
  font-size: 40px; font-weight: 900;
  opacity: 0.2; margin-bottom: 12px; line-height: 1;
}
.culture-card__title { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.culture-card__desc { font-size: 13px; opacity: 0.8; line-height: 1.7; }

.job-listings { padding: 80px 0; background: var(--gray-50); }
.job-cards { display: flex; flex-direction: column; gap: 20px; }
.job-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: grid; grid-template-columns: 1fr auto;
  gap: 20px; align-items: start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.job-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.job-card__tag {
  display: inline-block; padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700;
  background: rgba(27,63,196,0.08); color: var(--primary);
  margin-bottom: 12px;
}
.job-card__title { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.job-card__desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.job-card__meta { display: flex; flex-wrap: wrap; gap: 12px; }
.job-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--gray-500);
}
.job-meta-item svg { width: 14px; height: 14px; }
.job-card__apply { align-self: center; }

.benefits { padding: 80px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-item {
  background: white; border-radius: var(--radius-md);
  padding: 28px 20px; text-align: center;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease);
}
.benefit-item:hover { transform: translateY(-4px); }
.benefit-item__icon {
  width: 52px; height: 52px;
  background: rgba(27,63,196,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.benefit-item__icon svg { width: 26px; height: 26px; color: var(--primary); }
.benefit-item__title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.benefit-item__desc { font-size: 12px; color: var(--gray-400); line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-options { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 80px; }
.contact-card {
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative; overflow: hidden;
}
.contact-card--company { background: var(--gradient-dark); color: white; }
.contact-card--jobseeker { background: var(--gradient-brand); color: white; }
.contact-card__label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  opacity: 0.6; text-transform: uppercase; margin-bottom: 20px;
}
.contact-card__title { font-size: 28px; font-weight: 900; margin-bottom: 16px; line-height: 1.3; }
.contact-card__desc { font-size: 14px; opacity: 0.75; line-height: 1.8; margin-bottom: 28px; }
.contact-card__list { margin-bottom: 32px; }
.contact-card__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; opacity: 0.85; margin-bottom: 10px;
}
.contact-card__list li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}

/* Contact form */
.contact-form-section { padding: 80px 0; background: var(--gray-50); }
.contact-form {
  max-width: 720px; margin: 0 auto;
  background: white; border-radius: var(--radius-xl);
  padding: 56px 48px; box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 28px; }
.form-group label {
  display: block; font-size: 14px;
  font-weight: 700; color: var(--dark); margin-bottom: 10px;
}
.form-group label span { color: var(--accent); margin-left: 4px; font-size: 12px; }
.form-input {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 15px; font-family: inherit;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: white;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,63,196,0.12);
}
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note {
  font-size: 13px; color: var(--gray-400);
  margin-bottom: 32px; line-height: 1.7;
}
.form-note a { color: var(--primary); text-decoration: underline; }
.form-submit { text-align: center; }
.form-submit .btn { padding: 16px 48px; font-size: 16px; }

/* ============================================================
   WORKS PAGE
   ============================================================ */
.works-page { padding: 80px 0; }
.works-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-bottom: 64px;
}
.works-stat {
  text-align: center; background: white;
  border-radius: var(--radius-lg);
  padding: 32px 20px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.works-stat__num {
  font-family: 'Outfit', sans-serif;
  font-size: 44px; font-weight: 900;
  color: var(--primary); line-height: 1; margin-bottom: 8px;
}
.works-stat__label { font-size: 13px; color: var(--gray-400); font-weight: 600; }
.works-filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.works-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.works-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.works-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.works-card__visual {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.works-card__visual--blue { background: linear-gradient(135deg, #1B3FC4, #6366F1); }
.works-card__visual--orange { background: linear-gradient(135deg, #F97316, #FBBF24); }
.works-card__visual--teal { background: linear-gradient(135deg, #0EA5E9, #06B6D4); }
.works-card__visual--purple { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.works-card__visual--green { background: linear-gradient(135deg, #10B981, #3B82F6); }
.works-card__visual--red { background: linear-gradient(135deg, #EF4444, #F97316); }
.works-card__visual-text {
  font-family: 'Outfit', sans-serif;
  font-size: 64px; font-weight: 900;
  color: rgba(255,255,255,0.15); line-height: 1;
}
.works-card__body { padding: 28px 24px; }
.works-card__industry {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--primary); text-transform: uppercase; margin-bottom: 8px;
}
.works-card__title { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 12px; line-height: 1.4; }
.works-card__desc { font-size: 13px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.works-card__result {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  background: rgba(27,63,196,0.06);
}
.works-card__result-num {
  font-family: 'Outfit', sans-serif; font-size: 22px;
  font-weight: 900; color: var(--primary);
}
.works-card__result-text { font-size: 12px; color: var(--gray-500); }

/* ============================================================
   RESPONSIVE (sub-pages)
   ============================================================ */
@media (max-width: 1024px) {
  .service-detail__inner { grid-template-columns: 1fr; gap: 40px; }
  .service-detail__inner--reverse { direction: ltr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .works-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 40px 32px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 130px 0 60px; }
  .page-hero__inner { padding: 0 20px; }
  .service-detail__visual { min-height: 200px; padding: 40px 24px; }
  .value-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: 1fr; }
  .works-cards { grid-template-columns: 1fr; }
  .works-stats { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .company-table th { width: 120px; }
  .news-card-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .news-item__arrow { display: none; }
  .job-card { grid-template-columns: 1fr; }
  .sub-cta__actions { flex-direction: column; align-items: center; }
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; }
}
