/* ============================================================
   VATOS — Unified Site Styles
   공통 기반, 재사용 컴포넌트, 페이지별 구성 및 우피 재정의를 한 파일에서 관리한다.
   ============================================================ */

:root {
  --bg-black:    #070B0F;
  --dark:        #07141F;
  --navy:        #192C4F;
  --cyan:        #23A5B3;
  --cyan-soft:   rgba(35,165,179,0.14);
  --white:       #FFFFFF;
  --gray:        #8E959D;
  --gray-line:   rgba(255,255,255,0.10);
  --gray-line-2: rgba(255,255,255,0.06);

  --maxw: 1440px;
  --pad-x: clamp(24px, 5vw, 80px);
  --sec-pad: clamp(96px, 14vw, 200px);

  --font-body: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-en: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Contact and article colors */
  --navy-dark: #071228;
  --navy-mid: #122147;
  --cyan-dark: #238D98;
  --cyan-bg: #E8F7F8;
  --cyan-dim: rgba(42,163,176,0.12);
  --cyan-dim-2: rgba(42,163,176,0.06);
  --gray-100: #F4F6F9;
  --gray-200: #E8ECF2;
  --gray-300: #D1D8E4;
  --gray-400: #9BAABB;
  --gray-500: #6B7A93;
  --gray-600: #4A5568;
  --gray-700: #2D3748;
  --text-dark: #0B1B3D;
  --text-mid: #3A4E6E;
  --text-muted: #6B7A93;
  --border: rgba(255,255,255,0.08);
  --border-dark: rgba(11,27,61,0.1);

  /* Motion tokens */
  --motion-fast: 200ms;
  --motion-base: 400ms;
  --motion-reveal: 800ms;
  --ease-standard: ease;
  --ease-reveal: cubic-bezier(.2,.6,.2,1);
  --ease-emphasized: cubic-bezier(.16,.84,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  scrollbar-gutter: stable;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  font-family: var(--font-body);
  background: var(--bg-black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; }
::selection { background: var(--cyan); color: var(--bg-black); }

.vatos-container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

/* ============================================================
   HEADER — 메인페이지와 동일한 플로팅 글래스 상단바
   ============================================================ */
.vatos-header {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 1380px; z-index: 1000;
  background: rgba(9,15,20,0.30);
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  transition: top .4s cubic-bezier(.4,0,.2,1), background .4s ease,
              box-shadow .4s ease, backdrop-filter .4s ease, border-color .4s ease;
}
.vatos-header.scrolled {
  top: 8px;
  background: rgba(9,15,20,0.82);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}
.vatos-header-inner {
  max-width: none; margin: 0; padding: 0 14px 0 30px;
  height: 66px; display: flex; align-items: center; justify-content: space-between;
  transition: height .4s cubic-bezier(.4,0,.2,1);
}
.vatos-header.scrolled .vatos-header-inner { height: 56px; }

.vatos-logo { display: inline-flex; align-items: center; gap: 8px; }
.vatos-logo-mark { height: 24px; width: auto; }
.vatos-logo-text { font-weight: 800; font-size: 20px; letter-spacing: 1px; color: var(--white); }
.vatos-logo-text span { color: var(--white); }

.vatos-nav { display: flex; align-items: center; gap: 6px; }
.vatos-nav-item { position: relative; }
.vatos-nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.82);
  padding: 10px 16px; border-radius: 999px;
  transition: color .2s ease, background .2s ease; cursor: pointer;
}
.vatos-nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
/* 현재 페이지 메뉴 — VATOS Cyan 활성 표시 */
.vatos-nav-link.current { color: var(--cyan); }
.vatos-nav-link .vatos-arrow svg { width: 9px; height: 6px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform .25s ease; }
.vatos-nav-item:hover .vatos-nav-link .vatos-arrow svg { transform: rotate(180deg); }

.vatos-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: rgba(12,20,28,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10); border-radius: 16px;
  padding: 10px; min-width: 230px; opacity: 0; visibility: hidden;
  transition: opacity .25s ease, transform .25s ease; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
/* 상위 메뉴 ↔ 드롭다운 사이 hover 브릿지 (커서가 내려가도 끊기지 않게) */
.vatos-dropdown::before { content:''; position:absolute; left:0; right:0; top:-14px; height:14px; }
.vatos-dropdown-wide { min-width: 300px; }
.vatos-nav-item:hover .vatos-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.vatos-dropdown-item { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 10px; transition: background .2s ease; }
.vatos-dropdown-item:hover { background: var(--cyan-soft); }
.vatos-dropdown-item.current .vatos-dropdown-label { color: var(--cyan); }
.vatos-dropdown-icon svg { width: 19px; height: 19px; fill: none; stroke: var(--cyan); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.vatos-dropdown-text { display: flex; flex-direction: column; }
.vatos-dropdown-label { font-size: 13.5px; font-weight: 600; color: var(--white); }
.vatos-dropdown-subtitle { font-size: 12px; color: var(--gray); margin-top: 1px; }

.vatos-btn-contact-header {
  font-size: 14px; font-weight: 600; color: var(--white);
  padding: 11px 22px; border: 1px solid var(--cyan); border-radius: 999px;
  transition: background .25s ease, color .25s ease; white-space: nowrap;
}
.vatos-btn-contact-header:hover { background: var(--cyan); color: var(--bg-black); }

.vatos-hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; height: 20px; justify-content: center; cursor: pointer; margin-right: 8px; }
.vatos-hamburger span { display: block; height: 2px; width: 100%; background: var(--white); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.vatos-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vatos-hamburger.active span:nth-child(2) { opacity: 0; }
.vatos-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.vatos-mobile-nav {
  position: fixed; top: 0; right: 0; width: min(360px, 86vw); height: 100vh; z-index: 1200;
  background: rgba(7,15,22,0.98); backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255,255,255,0.08); padding: 90px 8px 40px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1); overflow-y: auto;
}
.vatos-mobile-nav.open { transform: translateX(0); }
.vatos-mobile-nav-section-label { font-size: 11px; letter-spacing: 2px; color: var(--cyan); padding: 14px 28px 6px; font-weight: 600; }
.vatos-mobile-nav-link { display: block; padding: 12px 28px; font-size: 15px; font-weight: 600; color: var(--white); }
.vatos-mobile-nav-sub { display: block; padding: 9px 28px 9px 40px; font-size: 13.5px; color: rgba(255,255,255,0.6); }
.vatos-mobile-nav-sub:hover, .vatos-mobile-nav-link:hover { color: var(--cyan); }
.vatos-mobile-nav-sub.current, .vatos-mobile-nav-link.current { color: var(--cyan); }
.vatos-mobile-nav-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 10px 28px; }

/* ============================================================
   FOOTER — 공통, 각 페이지 배경에서 검정으로 자연스럽게 전환
   ============================================================ */
.vatos-footer-transition { height: clamp(80px, 12vw, 160px); background: linear-gradient(180deg, transparent 0%, #05090d 100%); }
.vatos-footer { background: #05090d; border-top: 1px solid var(--gray-line-2); padding: clamp(60px,7vw,84px) 0 40px; position: relative; z-index: 2; }
.vatos-footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.vatos-footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: clamp(24px,3vw,48px); padding-bottom: 50px; border-bottom: 1px solid var(--gray-line-2); }
.vatos-footer-brand .vatos-logo { display: inline-flex; margin-bottom: 16px; }
.vatos-footer-brand .vatos-logo-text { font-size: 20px; color: var(--cyan); }
.vatos-footer-brand .vatos-logo-text span { color: var(--cyan); }
.vatos-footer-brand > p { font-size: 13.5px; color: rgba(255,255,255,0.42); line-height: 1.85; }
.vatos-footer-address { margin-top: 16px; font-size: 12px; line-height: 1.9; color: rgba(255,255,255,0.32); }
.vatos-footer-address .vatos-addr-line { white-space: nowrap; }
.vatos-no-wrap { white-space: nowrap; }
.vatos-footer-contact-icon { display: inline-flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; font-size: 13px; border: 1px solid var(--white); width: 100px; height: 40px; border-radius: 4px; color: var(--white); transition: border-color .25s ease, color .25s ease; }
.vatos-footer-contact-symbol { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.vatos-footer-contact-icon .vatos-footer-contact-symbol svg { width: 16px; height: 16px; fill:none; stroke: currentColor; stroke-width: 1.6; transition: stroke .25s ease; }
.vatos-footer-contact-icon:hover { border-color: var(--cyan); color: var(--cyan); }
.vatos-footer-col h5 { font-size: 12px; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); margin-bottom: 16px; font-weight: 700; }
.vatos-footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.42); margin-bottom: 11px; transition: color .2s ease; }
.vatos-footer-col a:hover { color: var(--cyan); }
.vatos-footer-bottom { padding-top: 26px; }
.vatos-footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .vatos-nav, .vatos-btn-contact-header { display: none; }
  .vatos-hamburger { display: flex; }
}
@media (max-width: 640px) {
  .vatos-footer-col { display: none; }
  .vatos-footer-top { grid-template-columns: 1fr; gap: 0; padding-bottom: 22px; }
  .vatos-footer-bottom { padding-top: 16px; }
}
@media (max-width: 480px) {
  .vatos-footer-address .vatos-addr-line { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  .vatos-motion-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}


/* ============================================================
   MOTION SYSTEM
   페이지와 무관한 재사용 모션. JS는 .visible 상태만 부여한다.
   ============================================================ */
.vatos-motion-reveal {
  opacity: 0;
  transform: translateY(var(--motion-distance, 28px));
  transition:
    opacity var(--motion-reveal) var(--ease-reveal),
    transform var(--motion-reveal) var(--ease-reveal);
  transition-delay: var(--motion-delay, 0ms);
}

.vatos-motion-reveal.visible {
  opacity: 1;
  transform: none;
}

.vatos-motion-left {
  --motion-x: -40px;
  opacity: 0;
  transform: translateX(var(--motion-x));
  transition:
    opacity var(--motion-reveal) var(--ease-emphasized),
    transform var(--motion-reveal) var(--ease-emphasized);
}

.vatos-motion-right {
  --motion-x: 40px;
  opacity: 0;
  transform: translateX(var(--motion-x));
  transition:
    opacity var(--motion-reveal) var(--ease-emphasized),
    transform var(--motion-reveal) var(--ease-emphasized);
}

:where(.vatos-motion-left, .vatos-motion-right).visible {
  opacity: 1;
  transform: none;
}

.vatos-motion-mask {
  clip-path: none;
  transition: clip-path 1s cubic-bezier(.65,0,.35,1);
}

.vatos-js .vatos-motion-mask {
  clip-path: inset(0 100% 0 0);
}

.vatos-js .vatos-motion-mask.visible {
  clip-path: inset(0 0 0 0);
}

.vatos-motion-delay-1 { --motion-delay: 80ms; }
.vatos-motion-delay-2 { --motion-delay: 160ms; }
.vatos-motion-delay-3 { --motion-delay: 240ms; }

body > .vatos-footer,
body > #vatos-layout-footer { margin-top: auto; }

@media (prefers-reduced-motion: reduce) {
  :where(.vatos-motion-reveal, .vatos-motion-left, .vatos-motion-right, .vatos-motion-mask) {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   OOPY OVERRIDES
   우피 기본 레이아웃과 메뉴의 기능은 유지하고 VATOS 디자인만 재정의한다.
   우피에서 생성하는 클래스가 변경되면 이 선택자만 갱신한다.
   ============================================================ */
html body .notion-scroller,
html body .notion-page-content {
  background: var(--bg-black) !important;
  color: var(--white);
}

html body div.css-wru17g.ej0hkt126 {
  position: fixed !important;
  top: 18px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: calc(100% - 48px) !important;
  max-width: 1380px !important;
  z-index: 1200 !important;

  background: rgba(9, 15, 20, 0.82) !important;
  backdrop-filter: blur(18px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45) !important;

  font-family: var(--font-body) !important;
}

@media (max-width: 640px) {
  html body div.css-wru17g.ej0hkt126 {
    top: 8px !important;
    width: calc(100% - 24px) !important;
  }
}

/* ============================================================
   MAIN PAGE
   메인 Hero, Intro, Company, Business Areas, Insights 구성
   ============================================================ */

.vatos-lang-en { font-family: var(--font-en); }

/* 메인 인트로가 끝난 뒤 상단바를 표시하는 상태만 페이지 전용으로 유지 */
body.vatos-page-main .vatos-header { opacity: 0; pointer-events: none; }
body.vatos-page-main .vatos-header.visible { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO — full viewport, text left / image right, particle bg
   ============================================================ */
.vatos-main-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--bg-black); overflow: hidden;
}
.vatos-main-hero-visual {
  position: absolute; top: 0; right: 0; width: 60%; height: 100%; z-index: 2;
  background: url('../images/main-hero-visual.jpg') no-repeat center right; background-size: cover;
}
.vatos-main-hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg-black) 0%, rgba(7,11,15,0.72) 26%, rgba(7,11,15,0.18) 62%, rgba(7,11,15,0.35) 100%);
}
.vatos-main-hero-inner { position: relative; z-index: 3; width: 100%; }

/* 하단 중앙 SCROLL 안내 — 정적인 첫 화면에 필요한 최소한의 신호만 */
.vatos-main-hero-scroll {
  position: absolute; left: 50%; bottom: clamp(28px, 4vw, 44px); transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.vatos-main-hero-scroll-text {
  font-family: var(--font-en); font-size: 11px; font-weight: 600; letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
}
.vatos-main-hero-scroll svg {
  width: 16px; height: 9px; fill: none; stroke: rgba(255,255,255,0.5); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  animation: rdScrollNudge 2.2s ease-in-out infinite;
}
@keyframes rdScrollNudge {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(4px); opacity: 1; }
}

.vatos-main-hero h1 {
  font-size: clamp(32px, 4.4vw, 64px); font-weight: 700; line-height: 1.32; letter-spacing: -1.2px;
  color: var(--white); max-width: 560px; margin-bottom: 34px;
}
.vatos-main-hero h1 .vatos-typing-cursor {
  display: inline-block; width: 3px; height: 0.82em; background: var(--cyan);
  margin-left: 3px; vertical-align: -0.08em; animation: rdCursorBlink 0.9s steps(1,start) infinite;
}
@keyframes rdCursorBlink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }

.vatos-main-hero-sub {
  font-size: clamp(15.5px, 1.3vw, 18px); line-height: 1.7; letter-spacing: -0.1px; color: rgba(255,255,255,0.72);
  max-width: 460px; opacity: 0;
}

/* ============================================================
   FULLSCREEN INTRO — DATA → SYSTEM → STABILITY, 자동 재생
   ============================================================ */
html.vatos-intro-lock, html.vatos-intro-lock body { overflow: hidden; }
/* 인트로 중에는 예약된 스크롤바 거터까지 흰색으로 채워, 우측에 어두운 띠가 보이지 않게 함 */
html.vatos-intro-lock { background: #FFFFFF; }

/* Hero 타이핑 애니메이션 진행 중 스크롤 잠금 (배경/디자인 변경 없이 overflow만 제어) */
html.vatos-hero-typing-lock, html.vatos-hero-typing-lock body { overflow: hidden; }

.vatos-main-intro {
  position: fixed; top: 0; left: 0;
  width: 100vw; /* 거터를 포함한 뷰포트 전체 폭 */
  height: 100vh; height: 100dvh; /* 모바일 브라우저 주소창 높이 변화 대응 */
  z-index: 4000;
  background: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: opacity .6s ease;
}
.vatos-main-intro.fading { opacity: 0; }
.vatos-main-intro.done { opacity: 0; visibility: hidden; pointer-events: none; }

.vatos-main-intro-word {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) translateY(22px);
  font-family: var(--font-en); font-weight: 800; letter-spacing: -3px;
  font-size: clamp(48px, 12vw, 168px); line-height: 1;
  color: var(--dark); white-space: nowrap;
  opacity: 0; filter: blur(6px);
  transition: opacity .45s ease, transform .45s ease, filter .45s ease;
}
.vatos-main-intro-word.active { opacity: 1; transform: translate(-50%,-50%) translateY(0); filter: blur(0); }
.vatos-main-intro-accent { color: var(--cyan); }

@media (max-width: 640px) {
  .vatos-main-intro-word { font-size: clamp(40px, 15vw, 88px); letter-spacing: -2px; }
}

/* ============================================================
   COMPANY — title left / body right, wide mask-reveal image
   ============================================================ */
.vatos-main-company { background: var(--bg-black); padding-top: var(--sec-pad); }
.vatos-main-company-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 120px);
  align-items: start; padding-bottom: clamp(70px, 9vw, 130px);
}
.vatos-main-eyebrow { display: inline-flex; align-items: center; margin-bottom: 22px; }
.vatos-main-eyebrow span { font-family: var(--font-en); font-size: 12px; letter-spacing: 3px; color: var(--cyan); font-weight: 600; text-transform: uppercase; }
.vatos-main-h2 { font-size: clamp(30px, 3.6vw, 54px); font-weight: 700; line-height: 1.32; letter-spacing: -1px; color: var(--white); }
.vatos-main-company-body p { font-size: clamp(15px,1.15vw,17px); line-height: 1.95; color: rgba(255,255,255,0.66); }
.vatos-main-company-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 34px;
  font-family: var(--font-en); font-size: 14.5px; font-weight: 600; color: var(--white);
  padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,0.25); transition: gap .25s ease, border-color .25s ease, color .25s ease;
}
.vatos-main-company-link:hover { gap: 14px; color: var(--cyan); border-color: var(--cyan); }
.vatos-main-company-figure {
  width: 100%; height: clamp(300px, 42vw, 560px); overflow: hidden;
  clip-path: none;
}
.vatos-js .vatos-main-company-figure { clip-path: inset(0 50% 0 50%); }
.vatos-js .vatos-main-company-figure.visible { clip-path: inset(0); }
.vatos-main-company-figure img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }

/* ============================================================
   BUSINESS AREAS — pinned scroll, live text left / image right
   ============================================================ */
.vatos-main-business {
  position: relative;
  z-index: 1;
  background: var(--dark);
}
.vatos-main-business-pin { height: 100vh; display: flex; align-items: center; overflow: hidden; }
.vatos-main-business-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); display: grid; grid-template-columns: 0.98fr 1.02fr; gap: clamp(30px,4vw,70px); align-items: center; }

@media (min-width: 901px) {
  .vatos-js .vatos-main-business {
    height: var(--vatos-business-scroll-height, 600vh);
  }

  .vatos-js .vatos-main-business-pin {
    position: sticky;
    top: 0;
  }
}

.vatos-main-business-left { position: relative; }
.vatos-main-business-eyebrow { font-family: var(--font-en); font-size: 12px; letter-spacing: 3px; color: var(--cyan); font-weight: 600; margin-bottom: 40px; text-transform: uppercase; }
.vatos-main-business-count { font-family: var(--font-en); font-size: clamp(56px, 8vw, 120px); font-weight: 800; line-height: 1; color: rgba(255,255,255,0.14); letter-spacing: -3px; margin-bottom: 6px; }
.vatos-main-business-count .vatos-cur { color: var(--cyan); }
.vatos-main-business-slides { position: relative; min-height: 270px; }
.vatos-main-business-slide { position: absolute; inset: 0; opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; pointer-events: none; }
.vatos-main-business-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.vatos-main-business-slide .vatos-lang-en { font-family: var(--font-en); font-size: clamp(20px,1.85vw,27px); font-weight: 700; color: var(--white); letter-spacing: -0.3px; line-height: 1.25; white-space: nowrap; }
.vatos-main-business-slide .vatos-lang-ko { display: inline-block; font-size: 15px; color: var(--cyan); margin-top: 10px; font-weight: 500; }
.vatos-main-business-slide .vatos-desc { font-size: clamp(14.5px,1.1vw,16.5px); line-height: 1.9; color: rgba(255,255,255,0.62); margin-top: 20px; max-width: 38ch; }
.vatos-main-business-slide .vatos-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 26px; font-family: var(--font-en); font-size: 13.5px; font-weight: 600; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.28); padding-bottom: 3px; transition: gap .25s, color .25s, border-color .25s; }
.vatos-main-business-slide .vatos-more:hover { gap: 13px; color: var(--cyan); border-color: var(--cyan); }

/* progress rail */
.vatos-main-business-rail { display: flex; gap: 10px; margin-top: 46px; }
.vatos-main-business-rail button { position: relative; width: 42px; height: 3px; border: 0; padding: 0; border-radius: 2px; background: rgba(255,255,255,0.16); cursor: pointer; overflow: hidden; }
.vatos-main-business-rail button .vatos-fill { position: absolute; inset: 0; width: 0; background: var(--cyan); border-radius: 2px; }
.vatos-main-business-rail button.active .vatos-fill { width: 100%; }

.vatos-main-business-stage { position: relative; width: 100%; height: clamp(340px, 46vw, 600px); border-radius: 18px; overflow: hidden; background: #05090d; border: 1px solid var(--gray-line-2); }
.vatos-main-business-img { position: absolute; inset: 0; opacity: 0; transform: scale(1.08); transition: opacity .8s ease, transform 1.2s cubic-bezier(.2,.6,.2,1); }
.vatos-main-business-img.active { opacity: 1; transform: scale(1); }
.vatos-main-business-img img { width: 100%; height: 100%; object-fit: cover; }
.vatos-main-business-img::after { content:''; position:absolute; inset:0; background: linear-gradient(120deg, rgba(7,20,31,0.55) 0%, rgba(7,20,31,0.05) 55%, rgba(7,20,31,0.0) 100%); }
.vatos-main-business-stage-num { position: absolute; left: 26px; bottom: 22px; z-index: 3; font-family: var(--font-en); font-weight: 800; font-size: clamp(40px,5vw,72px); color: rgba(255,255,255,0.9); letter-spacing: -2px; line-height: 1; text-shadow: 0 2px 20px rgba(0,0,0,0.5); pointer-events:none; }

/* ============================================================
   TECH INSIGHTS — title left / image + list right
   ============================================================ */
.vatos-main-insights {
  position: relative;
  z-index: 2;
  background: var(--bg-black);
  padding: var(--sec-pad) 0;
}
.vatos-main-insights-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px,6vw,90px); align-items: center; }
.vatos-main-insights-title { font-family: var(--font-en); font-size: clamp(46px, 7vw, 104px); font-weight: 800; line-height: 0.98; letter-spacing: -3px; color: var(--white); }
.vatos-main-insights-title .vatos-accent { color: var(--cyan); display:block; }
.vatos-main-insights-lead { font-size: clamp(15px,1.15vw,17px); line-height: 1.9; color: rgba(255,255,255,0.62); margin-top: 30px; max-width: 34ch; }
.vatos-main-insights-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 34px; font-family: var(--font-en); font-size: 14.5px; font-weight: 600; color: var(--white); position: relative; }
.vatos-main-insights-link::after { content:''; position:absolute; left:0; bottom:-5px; width:0; height:1px; background: var(--cyan); transition: width .35s ease; }
.vatos-main-insights-link:hover::after { width: 100%; }
.vatos-main-insights-link:hover { color: var(--cyan); }

.vatos-main-insights-figure { width: 100%; height: clamp(280px, 34vw, 440px); border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-line-2); }
.vatos-main-insights-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.vatos-main-insights-figure:hover img { transform: scale(1.05); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .vatos-main-hero-visual { width: 78%; }
  .vatos-main-hero-visual::after { background: linear-gradient(90deg, var(--bg-black) 0%, rgba(7,11,15,0.82) 38%, rgba(7,11,15,0.3) 100%); }
}

@media (max-width: 900px) {
  .vatos-main-company-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 70px; }
  .vatos-main-business { height: auto; min-height: 0; }
  .vatos-main-business-inner { grid-template-columns: 1fr; gap: 30px; }
  .vatos-main-business-pin { position: relative; top: auto; height: auto; padding: clamp(80px,14vw,120px) 0; }
  .vatos-main-business-stage { height: clamp(260px, 60vw, 420px); order: -1; }
  .vatos-main-business-slides { min-height: 240px; }
  .vatos-main-business-slide .vatos-lang-en { white-space: normal; font-size: clamp(22px, 5.5vw, 30px); }
  .vatos-main-insights-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .vatos-main-hero { min-height: 92vh; }
  .vatos-main-hero-visual { width: 100%; opacity: 0.5; }
  .vatos-main-hero-visual::after { background: linear-gradient(180deg, rgba(7,11,15,0.6) 0%, rgba(7,11,15,0.85) 100%); }
  .vatos-main-hero h1 { max-width: 100%; }
  .vatos-main-hero-sub { max-width: 100%; }
  .vatos-main-business-rail button { width: 30px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vatos-motion-reveal, .vatos-motion-mask, .vatos-main-company-figure { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .vatos-main-hero-sub { opacity: 1 !important; }
  .vatos-main-hero h1 .vatos-typing-cursor { display: none; }
  .vatos-main-hero-scroll svg { animation: none; }
  .vatos-main-intro { transition-duration: .25s; }
  .vatos-main-intro-word { transition: opacity .2s ease !important; filter: none !important; transform: translate(-50%,-50%) !important; }
}

/* ============================================================
   CONTACT AND INSIGHT ARTICLES
   문의 페이지, 일반 콘텐츠 및 기술 인사이트 상세 문서
   ============================================================ */

  /* 한국어 단어 중간 끊김 방지는 본문에만 적용, 상단/하단/메뉴 라벨은 기존 줄바꿈 동작 유지 */
  .vatos-header, .vatos-footer, .vatos-nav, .vatos-mobile-nav { word-break: normal; }


/* Shared section typography */
  /* ── SECTION COMMON ── */
  .vatos-contact { padding: 96px 0; }
  .vatos-section-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
  .vatos-section-label {
    font-family: var(--font-body);
    font-size: 12px; font-weight: 600; color: var(--cyan);
    letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px;
  }
  .vatos-section-title {
    font-family: var(--font-body);
    font-size: 36px; font-weight: 700; color: var(--text-dark);
    line-height: 1.25; letter-spacing: -0.3px;
  }
  .vatos-section-title-white { color: var(--white); }
  .vatos-section-desc {
    font-size: 15.5px; color: var(--text-muted); line-height: 1.8;
    margin-top: 14px; max-width: 600px;
  }
  .vatos-section-desc-white { color: rgba(255,255,255,0.55); }
  .vatos-section-head { margin-bottom: 56px; }


/* Contact */
  /* ── CONTACT (다른 다크 상세페이지와 동일한 디자인 시스템으로 통일) ── */
  body.vatos-page-contact { background: var(--navy-dark); }
  .vatos-contact { background: var(--navy-dark); }
  .vatos-contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .vatos-contact-info .vatos-section-label { color: var(--cyan); }
  .vatos-contact-info .vatos-section-title { margin-bottom: 30px; color: #fff; }
  .vatos-contact-info p { font-size:15.5px; color:rgba(255,255,255,0.62); line-height:1.85; margin-bottom:36px; }
  .vatos-contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom:40px; }
  .vatos-contact-detail { display:flex; align-items:center; gap:14px; }
  .vatos-contact-detail-icon {
    width:40px; height:40px; border-radius:8px; background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.14); display:flex; align-items:center; justify-content:center;
    flex-shrink: 0;
  }
  .vatos-contact-detail-icon svg { width:17px; height:17px; stroke:var(--cyan); fill:none; stroke-width:1.7; }
  .vatos-contact-detail-text { display: flex; flex-direction: column; justify-content: center; }
  .vatos-contact-detail-text h5 { font-size:12px; color:rgba(255,255,255,0.42); margin:0 0 2px; line-height: 1.3; }
  .vatos-contact-detail-text p { font-size:14px; color:#fff; font-weight:500; margin:0; line-height: 1.4; }
  /* 문의하기 위치 — 우편번호 한 줄, 주소 한 줄로 분리 표시 */
  .vatos-contact-detail-text .vatos-contact-addr { line-height: 1.6; }
  .vatos-contact-detail-text .vatos-contact-postal { display: block; }
  .vatos-contact-detail-text .vatos-contact-addr-line { display: block; }
  @media (min-width: 769px) {
    .vatos-contact-detail-text .vatos-contact-addr-line { white-space: nowrap; }
  }
  .vatos-contact-type-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
  .vatos-contact-type {
    background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.14); border-radius:8px;
    padding:18px 16px; cursor:pointer; transition:border-color .25s ease, background .25s ease; text-align:center;
  }
  .vatos-contact-type:hover { border-color:var(--cyan); background:rgba(255,255,255,0.05); }
  .vatos-contact-type-icon { font-size:22px; margin-bottom:6px; }
  .vatos-contact-type h5 { font-size:13px; font-weight:700; color:#fff; }
  .vatos-contact-type p { font-size:11.5px; color:rgba(255,255,255,0.42); margin-top:2px; }

  .vatos-contact-form {
    background: rgba(255,255,255,0.03); border-radius:14px; padding:40px 36px;
    border:1px solid rgba(255,255,255,0.12);
  }
  .vatos-contact-form-title { font-size:18px; font-weight:700; color:#fff; margin-bottom:24px; }
  .vatos-form-group { margin-bottom:20px; }
  .vatos-form-group label { display:block; font-size:13px; font-weight:700; color:rgba(255,255,255,0.75); margin-bottom:7px; }
  .vatos-form-group label .vatos-req { color: var(--cyan); }
  .vatos-form-group input, .vatos-form-group select, .vatos-form-group textarea {
    width:100%; padding:12px 14px; border:1px solid rgba(255,255,255,0.14); border-radius:6px;
    font-size:14px; color:#fff; font-family: var(--font-body);
    background: rgba(255,255,255,0.03);
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease; outline:none;
  }
  .vatos-form-group input::placeholder, .vatos-form-group textarea::placeholder { color: rgba(255,255,255,0.32); }
  .vatos-form-group select { color: rgba(255,255,255,0.85); }
  .vatos-form-group select option { background: var(--navy-dark); color: #fff; }
  .vatos-form-group input:focus, .vatos-form-group select:focus, .vatos-form-group textarea:focus {
    border-color: var(--cyan); background:rgba(255,255,255,0.05);
    box-shadow: 0 0 0 3px rgba(42,163,176,0.16);
  }
  .vatos-form-group textarea { min-height:110px; resize:vertical; }
  .vatos-form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
  .vatos-btn-submit {
    width:100%; background:transparent; color:#fff;
    font-size:14.5px; font-weight:700; padding:15px;
    border:1px solid var(--cyan); border-radius:999px; cursor:pointer;
    transition: background .25s ease, color .25s ease;
    font-family: var(--font-body); letter-spacing:0.3px;
  }
  .vatos-btn-submit:hover { background:var(--cyan); color:var(--navy-dark); }


/* Multipage foundations */
  /* ════════════ MULTIPAGE COMMON ════════════ */
  .vatos-nav-link.active { color: var(--cyan); }
  .vatos-mobile-nav-link.active { color: var(--cyan); }
  section[id] { scroll-margin-top: 76px; }

  /* ── PAGE HERO ── */
  :where(.vatos-page-hero, .vatos-article-hero) {
    background: var(--navy); position: relative; overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .vatos-page-hero { padding: 148px 0 68px; }
  .vatos-article-hero { padding:122px 0 56px; }

  :where(.vatos-page-hero, .vatos-article-hero)::before {
    content:''; position:absolute; top:-110px; right:-70px; width:340px; height:340px;
    background: radial-gradient(circle, rgba(42,163,176,0.12) 0%, transparent 70%); pointer-events:none;
  }
  :where(.vatos-page-hero, .vatos-article-hero) .vatos-section-inner { position: relative; z-index: 1; }
  .vatos-page-hero .vatos-section-label { color: var(--cyan); }
  :where(.vatos-page-hero, .vatos-article-hero) h1 {
    font-family: var(--font-body); font-size:42px; font-weight:700; color:#fff;
    line-height:1.22; letter-spacing:-0.5px; margin-top:8px;
  }
  .vatos-article-hero h1 { line-height:1.28; }
  .vatos-page-hero p {
    font-size:16px; color:rgba(255,255,255,0.55); line-height:1.85; margin-top:18px; max-width:740px;
  }

  /* ── PAGE CONTENT ── */
  .vatos-page-content { background: var(--navy-dark); padding: 72px 0; }
  .vatos-page-content.light { background: #fff; }

  .vatos-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:24px; }
  .vatos-detail-card {
    background: rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.07);
    border-radius:14px; padding:34px 32px;
  }
  .vatos-detail-card-label {
    font-family: var(--font-body); font-size:11px; font-weight:600; color:var(--cyan);
    letter-spacing:1.5px; text-transform:uppercase; margin-bottom:18px;
  }
  .vatos-detail-list { list-style:none; display:flex; flex-direction:column; gap:11px; margin:0; padding:0; }
  .vatos-detail-list li {
    position:relative; padding-left:22px; font-size:14px; color:rgba(255,255,255,0.66); line-height:1.6;
  }
  .vatos-detail-list li::before {
    content:''; position:absolute; left:2px; top:9px; width:6px; height:6px; border-radius:50%; background:var(--cyan);
  }
  .vatos-tag-wrap { display:flex; flex-wrap:wrap; gap:9px; }
  .vatos-tag {
    background:var(--cyan-dim); border:1px solid rgba(42,163,176,0.22); border-radius:5px;
    padding:7px 14px; font-family: var(--font-body); font-size:12.5px; color:var(--cyan); font-weight:500;
  }
  .vatos-client-pill-wrap { display:flex; flex-wrap:wrap; gap:9px; }
  .vatos-client-pill {
    background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:22px;
    padding:7px 16px; font-size:13px; color:rgba(255,255,255,0.72);
  }
  .vatos-clients-note { font-size:11.5px; color:rgba(255,255,255,0.3); margin-top:14px; }


/* Insight article */
  /* ── ARTICLE (상세 글) ── */
  .vatos-article-hero .vatos-section-label { color:var(--cyan); margin-top:16px; }
  .vatos-article-summary { font-size:16px; color:rgba(255,255,255,0.55); line-height:1.85; margin-top:18px; max-width:740px; }
  .vatos-article-back-link { display:inline-block; font-family: var(--font-body); font-size:13.5px; font-weight:600; color:var(--cyan); text-decoration:none; }
  .vatos-article-back-top { color:rgba(255,255,255,0.7); margin-bottom:4px; }
  .vatos-article-back-top:hover { color:var(--cyan); }

  /* 콘텐츠 시작 위치 통일: section-inner(1280px, 좌우 padding 40px)와 동일한 기준으로 좌측 정렬 */
  /* article-wrap 자체에는 max-width/margin:auto를 두지 않음 — body가 flex라서 flex item에 margin:auto를 주면
     shrink-to-fit 되어버리는 문제가 있어, 폭 제어는 항상 section-inner(비-flex 자손)가 전담하도록 통일 */
  .vatos-article-wrap { background:#fff; padding:64px 0 80px; }
  .vatos-article-content { display:contents; max-width:90%; margin:0; padding:0 40px; }
  .vatos-article-content h2 { font-family: var(--font-body); font-size:25px; font-weight:700; color:var(--navy); line-height:1.5; margin:48px 0 18px; letter-spacing:-0.3px; }
  .vatos-article-content h3 { font-family: var(--font-body); font-size:19px; font-weight:700; color:var(--navy); line-height:1.5; margin:38px 0 14px; }
  .vatos-article-content p { font-size:16px; color:var(--text-mid); line-height:1.95; margin-bottom:20px; }
  .vatos-article-content strong { color:var(--navy); font-weight:700; }
  .vatos-article-content code { font-family: var(--font-body), monospace; font-size:14px; font-weight: bold; background:var(--gray-100);
    border:1px solid var(--gray-200); border-radius:4px; padding:2px 7px; color:#0a7d66; }
  .vatos-article-hr { border:none; border-top:1px solid var(--gray-200); margin:40px 0; }
  .vatos-article-callout { background:rgba(42,163,176,0.07); border-left:3px solid; border-radius:8px;
    padding:20px 24px; margin:28px 0; }
  .vatos-article-callout p { margin:0; font-size:16.5px; color:var(--navy); font-weight:600; line-height:1.7; }
  .vatos-article-content blockquote.vatos-article-quote { margin:26px 0; padding:18px 26px; background:var(--gray-100);
    border-left:3px solid var(--cyan); border-radius:8px; }
  .vatos-article-content blockquote.vatos-article-quote p { margin:0 0 10px; font-size:15.5px; color:var(--text-mid); line-height:1.85; }
  .vatos-article-content blockquote.vatos-article-quote p:last-child { margin-bottom:0; }
  .vatos-article-content ul.vatos-article-list, .vatos-article-content ol.vatos-article-list { margin:18px 0; padding-left:0; display:flex; flex-direction:column; gap:9px; }
  .vatos-article-content ul.vatos-article-list li, .vatos-article-content ol.vatos-article-list li { position:relative; padding-left:24px; font-size:16px; color:var(--text-mid); line-height:1.8; list-style:none; }
  .vatos-article-content ul.vatos-article-list li::before { content:''; position:absolute; left:6px; top:12px; width:6px; height:6px; border-radius:50%; background:var(--cyan); }
  .vatos-article-content ol.vatos-article-list { counter-reset: ol-c; }
  .vatos-article-content ol.vatos-article-list li { counter-increment: ol-c; }
  .vatos-article-content ol.vatos-article-list li::before { content: counter(ol-c); position:absolute; left:0; top:3px;
    font-family: var(--font-body); font-size:11px; font-weight:700; color:var(--cyan);
    width:18px; height:18px; line-height:18px; text-align:center; background:var(--cyan-dim); border-radius:50%; }
  .vatos-article-table-wrap { overflow-x:auto; margin:26px 0; border:1px solid var(--gray-200); border-radius:10px; -webkit-overflow-scrolling:touch; }
  .vatos-article-content table { width:100%; border-collapse:collapse; min-width:560px; font-size:14px; }
  .vatos-article-content th { background:var(--navy); color:#fff; font-family: var(--font-body); font-weight:600;
    text-align:left; padding:13px 18px; white-space:nowrap; }
  .vatos-article-content td { padding:13px 18px; border-bottom:1px solid var(--gray-200); color:var(--text-mid); line-height:1.6; }
  .vatos-article-content tbody tr:last-child td { border-bottom:none; }
  .vatos-article-content tbody tr:nth-child(even) { background:var(--gray-100); }
  /* 사업분야 상세 표 — 표는 중앙 배치, 헤더는 가운데 정렬, 본문 셀은 좌측 정렬 */
  .vatos-article-business .vatos-article-table-wrap table { margin-left: auto; margin-right: auto; }
  .vatos-article-business .vatos-article-table-wrap th { text-align: center; vertical-align: middle; }
  .vatos-article-business .vatos-article-table-wrap td { text-align: left; vertical-align: middle; }
  .vatos-article-foot { max-width:820px; margin:48px 0 0; padding:28px 40px 0; border-top:1px solid var(--gray-200); }
  /* Business Areas 상세페이지 — section-inner로 감싸 다른 하위페이지와 동일한 좌측 정렬 기준 적용 */
  .vatos-article-wrap .vatos-section-inner { max-width:1280px; margin:0 auto; padding:0 40px; }
  .vatos-article-wrap .vatos-section-inner .vatos-article-content { padding:0; }
  .vatos-article-wrap .vatos-section-inner .vatos-article-foot { padding:28px 0 0; }

  @media (max-width:768px) {
    .vatos-article-hero h1 { font-size:26px; }
    .vatos-article-content { padding:0 22px; }
    .vatos-article-content h2 { font-size:22px; }
    .vatos-article-foot { padding-left:22px; padding-right:22px; }
    .vatos-insight-card { padding:26px 24px; }
    .vatos-insight-card-title { font-size:19px; }
  }

/* Article code and series badge */
  /* ════════════ 아티클 코드 블록 (코드펜스 대비) ════════════ */
  .vatos-article-content .vatos-article-pre { background: var(--navy-dark); color: #E8EEF5; border-radius: 10px;
    padding: 18px 20px; overflow-x: auto; margin: 22px 0; font-size: 13px; line-height: 1.7; }
  .vatos-article-content .vatos-article-pre code { background: none; border: none; padding: 0; color: inherit; }

  /* ════════════ Tech Insights 시리즈 번호 배지 ════════════ */
  .vatos-insight-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
  .vatos-insight-card-head .vatos-insight-card-label { margin-bottom: 0; }
  .vatos-insight-card-num { display: inline-flex; align-items: center; justify-content: center;
    min-width: 30px; height: 22px; padding: 0 8px; background: var(--cyan); color: #fff;
    font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
    border-radius: 6px; flex-shrink: 0; }
  .vatos-insight-card:hover .vatos-insight-card-num { background: var(--cyan-dark); }

/* ============================================================
   SUBPAGES
   About, Business, Culture, History, Location, Tech Insights
   ============================================================ */

/* ============================================================
   Business and shared subpage layouts
   ============================================================ */
/* ============================================================
   VATOS — Business Areas 상세페이지 공통 디자인
   5개 페이지(라이선스 / 운영&기술지원 / 성능컨설팅 / 마이그레이션&전환 / 교육)가
   이 파일 하나를 공유한다. 페이지별 차이는 data-vatos-service 속성으로 제어한다.
   ============================================================ */

/* 콘텐츠 레이어 */

/* 콘텐츠는 그래픽 위에 */
.vatos-sub-content { position: relative; z-index: 1; }

/* 섹션 공통 */
.vatos-sub-section { padding: clamp(80px, 11vw, 170px) 0; }
.vatos-sub-section-label {
  font-size: 12px; letter-spacing: 3px; font-weight: 600;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 28px;
}

/* ------------------------------------------------------------
   1) HERO — 검정 배경 + 대형 타이포, 좌우 진입 애니메이션
   ------------------------------------------------------------ */
.vatos-sub-hero {
  position: relative;
  padding: clamp(128px, 15vw, 148px) 0 clamp(54px, 6vw, 68px);
}
.vatos-sub-hero-label {
  font-size: 12px; letter-spacing: 2.5px; font-weight: 600;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 12px;
}
/* 모든 상세페이지(회사소개/연혁/오시는길/Business Areas 5개/Tech Insights/Culture) 공통 —
   바토스 문화 페이지의 제목 영역 크기·배치를 기준으로 통일 */
.vatos-sub-hero-title {
  font-size: clamp(28px, 3.2vw, 42px); font-weight: 700; line-height: 1.22;
  letter-spacing: -0.5px; color: var(--white); margin-top: 8px; margin-bottom: 0;
}
.vatos-sub-hero-summary {
  font-size: clamp(14.5px, 1.15vw, 16px); line-height: 1.85; font-weight: 400;
  color: rgba(255,255,255,0.62); max-width: 740px; margin-top: 18px;
}

/* 진입 애니메이션 — 제목 계열은 왼쪽에서, 설명 문장은 오른쪽에서, 묵직하고 절제된 모션 */
.vatos-sub-hero-label, .vatos-sub-hero-title { opacity: 0; transform: translateX(-52px); }
.vatos-sub-hero-summary { opacity: 0; transform: translateX(52px); }
.vatos-sub-hero.ready .vatos-sub-hero-label   { animation: bdInLeft  1.05s cubic-bezier(.16,.84,.2,1) .05s forwards; }
.vatos-sub-hero.ready .vatos-sub-hero-title   { animation: bdInLeft  1.15s cubic-bezier(.16,.84,.2,1) .18s forwards; }
.vatos-sub-hero.ready .vatos-sub-hero-summary { animation: bdInRight 1.15s cubic-bezier(.16,.84,.2,1) .40s forwards; }
@keyframes bdInLeft  { to { opacity: 1; transform: none; } }
@keyframes bdInRight { to { opacity: 1; transform: none; } }

/* Business Areas 5개 상세페이지 전용 — 배경 이미지가 있는 히어로
   (data-vatos-service 속성이 있는 페이지에서만 .vatos-sub-hero-media 로 사용) */
.vatos-sub-hero-media {
  height: 70vh; min-height: 420px;
  display: flex; align-items: center;
  padding: 0; overflow: hidden;
}
.vatos-sub-hero-media .vatos-container { position: relative; z-index: 2; width: 100%; }
.vatos-sub-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-repeat: no-repeat; background-size: cover; background-position: right 32%;
}
.vatos-sub-hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    rgba(7,11,15,0.96) 0%, rgba(7,11,15,0.88) 34%,
    rgba(7,11,15,0.45) 62%, rgba(7,11,15,0.08) 100%);
}

/* 텍스트 진입 — 라벨 → 제목 → 설명 순차 Fade-up (좌우 슬라이드 대신) */
.vatos-sub-hero-media .vatos-sub-hero-label,
.vatos-sub-hero-media .vatos-sub-hero-title,
.vatos-sub-hero-media .vatos-sub-hero-summary {
  opacity: 0; transform: translateY(22px);
}
.vatos-sub-hero-media.ready .vatos-sub-hero-label   { animation: bdFadeUp .8s cubic-bezier(.16,.84,.2,1) .05s forwards; }
.vatos-sub-hero-media.ready .vatos-sub-hero-title   { animation: bdFadeUp .85s cubic-bezier(.16,.84,.2,1) .18s forwards; }
.vatos-sub-hero-media.ready .vatos-sub-hero-summary { animation: bdFadeUp .85s cubic-bezier(.16,.84,.2,1) .34s forwards; }
@keyframes bdFadeUp { to { opacity: 1; transform: none; } }

/* ------------------------------------------------------------
   2) INTRO — 박스 없는 2열 비대칭 + 얇은 세로선
   ------------------------------------------------------------ */
.vatos-sub-intro-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 7vw, 110px); align-items: start;
}
/* 회사소개 페이지 전용 축소 여백. Business 페이지는 data-vatos-service 규칙이 우선 적용된다. */
.vatos-sub-intro { padding: clamp(36px, 5vw, 60px) 0; }
.vatos-sub-intro-lead {
  font-size: clamp(24px, 2.9vw, 44px); font-weight: 700; line-height: 1.42;
  letter-spacing: -1px; color: var(--white);
}
.vatos-sub-intro-lead em { font-style: normal; color: var(--cyan); }
.vatos-sub-intro-body {
  position: relative; padding-left: clamp(24px, 3vw, 44px);
  border-left: 1px solid rgba(35,165,179,0.45);
}
/* 스크롤 연동 인디케이터 — 연혁 페이지 타임라인과 동일한 방식,
   이동 범위는 이 섹션(.vatos-sub-intro-body) 내부로 제한된다 */
.vatos-sub-intro-dot {
  position: absolute; left: -4px; top: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
}
.vatos-sub-intro-body p {
  font-size: clamp(15px, 1.15vw, 17px); line-height: 2.05; color: rgba(255,255,255,0.62);
}
.vatos-sub-intro-body p + p { margin-top: 18px; }

/* 큰 핵심 문구 — 형광펜처럼 한 부분만 청록색 음영으로 강조 (1회성, 완료 후 유지) */
.vatos-highlight {
  background-image: linear-gradient(90deg, rgba(35,165,179,0.36), rgba(35,165,179,0.36));
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left center;
  padding: 0 3px; margin: 0 -3px;
  border-radius: 3px;
  transition: background-size 1.1s cubic-bezier(.4,0,.2,1);
}
.vatos-highlight.highlighted { background-size: 100% 100%; }

/* Business Areas 5개 상세페이지 — 핵심 메시지 상하 여백 축소 (data-vatos-service 존재 페이지에만 적용) */
:where(body, .vatos-sub-content)[data-vatos-service] .vatos-sub-intro { padding: clamp(48px, 7vw, 84px) 0; }

/* ------------------------------------------------------------
   3) 서비스 유형 — 에디토리얼 인터랙티브 리스트 (표 대체)
   ------------------------------------------------------------ */
.vatos-service-list { border-top: 1px solid rgba(255,255,255,0.12); }
.vatos-service-item {
  display: grid; grid-template-columns: clamp(70px, 7vw, 110px) 1fr;
  gap: clamp(18px, 3vw, 46px); align-items: center;
  padding: clamp(26px, 3.2vw, 42px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: border-color .35s ease;
}
.vatos-service-item-num {
  font-size: clamp(22px, 2.2vw, 34px); font-weight: 800; line-height: 1;
  color: rgba(255,255,255,0.22); letter-spacing: -1px;
  transition: color .3s ease;
}
.vatos-service-item-body { min-width: 0; }
.vatos-service-item-title {
  font-size: clamp(18px, 1.8vw, 27px); font-weight: 700; line-height: 1.35;
  color: var(--white); letter-spacing: -0.4px; transition: color .3s ease;
}
.vatos-service-item-meta {
  display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 500;
  color: var(--cyan); letter-spacing: .2px;
}
.vatos-service-item-desc {
  margin-top: 12px; font-size: clamp(14.5px, 1.05vw, 16px); line-height: 1.85;
  color: rgba(255,255,255,0.58); max-width: 64ch;
}

/* 텍스트 강조만 — 이동 가능한 요소처럼 보이지 않도록 이동(translate) 효과 없음 */
.vatos-service-item:hover { border-color: rgba(35,165,179,0.5); }
.vatos-service-item:hover .vatos-service-item-num,
.vatos-service-item:hover .vatos-service-item-title { color: var(--cyan); }

/* 순차 등장 */
.vatos-service-item { opacity: 0; transform: translateY(24px); }
.vatos-service-item.visible { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1), border-color .35s ease; }

/* Business Areas 5개 상세페이지 전용 — 동일한 리스트(.vatos-service-list/.vatos-service-item)를
   다크 카드 그리드로 전환한다. 문구·번호·순서는 마크업 변경 없이 그대로 유지된다. */
:where(body, .vatos-sub-content)[data-vatos-service] .vatos-service-list {
  border-top: none;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
}
:where(body, .vatos-sub-content)[data-vatos-service] .vatos-service-item {
  display: flex; flex-direction: column; align-items: flex-start;
  height: 100%; padding: clamp(24px, 2.6vw, 32px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  transition: border-color .3s ease, background .3s ease;
}
/* 호버 시 테두리·배경 밝기만 부드럽게 변경 (텍스트 색상 이동 없음) */
:where(body, .vatos-sub-content)[data-vatos-service] .vatos-service-item:hover {
  border-color: rgba(35,165,179,0.45);
  background: rgba(255,255,255,0.045);
}
:where(body, .vatos-sub-content)[data-vatos-service] .vatos-service-item:hover .vatos-service-item-title { color: var(--white); }

:where(body, .vatos-sub-content)[data-vatos-service] .vatos-service-item-num {
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  color: var(--cyan); opacity: 1; margin-bottom: 14px;
}
:where(body, .vatos-sub-content)[data-vatos-service] .vatos-service-item-title { font-size: 16px; line-height: 1.5; }
:where(body, .vatos-sub-content)[data-vatos-service] .vatos-service-item-meta { display: block; margin: 6px 0 0; }
:where(body, .vatos-sub-content)[data-vatos-service] .vatos-service-item-desc { margin-top: 10px; max-width: 100%; }

@media (max-width: 900px) {
  :where(body, .vatos-sub-content)[data-vatos-service] .vatos-service-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  :where(body, .vatos-sub-content)[data-vatos-service] .vatos-service-list { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   이미지 + 문구 교차 배치 (좌우 반전 가능) — 상세페이지 공통 컴포넌트
   회사소개 '기업 이념' 등, 이미지와 설명을 번갈아 배치하는 섹션에서 재사용
   ------------------------------------------------------------ */
.vatos-feature-list { border-top: 1px solid rgba(255,255,255,0.12); }

.vatos-feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
  padding: clamp(30px, 4vw, 52px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.vatos-feature-row:last-child { border-bottom: none; }

.vatos-feature-row-media {
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
}
.vatos-feature-row-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* 좌우 반전 (짝수 항목: 이미지-오른쪽 / 문구-왼쪽) */
.vatos-feature-row-reverse .vatos-feature-row-media { order: 2; }
.vatos-feature-row-reverse .vatos-feature-row-body { order: 1; }

.vatos-feature-row-body { min-width: 0; }
.vatos-feature-row-num {
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 14px;
}
/* 제목/설명은 기업 이념 리스트(.vatos-service-item)와 동일한 크기·색상 체계를 그대로 재사용 */
.vatos-feature-row-title {
  font-size: clamp(18px, 1.8vw, 27px); font-weight: 700; line-height: 1.35;
  color: var(--white); letter-spacing: -0.4px; margin-bottom: 14px;
}
.vatos-feature-row-desc p {
  font-size: clamp(14.5px, 1.05vw, 16px); line-height: 1.85;
  color: rgba(255,255,255,0.58);
}
.vatos-feature-row-desc p + p { margin-top: 12px; }

/* 스크롤 등장 — 기존 .vatos-motion-reveal 리빌 시스템 재사용, 이미지→문구 순으로 살짝 지연 */
@media (max-width: 800px) {
  .vatos-feature-row {
    grid-template-columns: 1fr; gap: 18px;
    padding: clamp(24px, 6vw, 34px) 0;
  }
  .vatos-feature-row-reverse .vatos-feature-row-media,
  .vatos-feature-row-reverse .vatos-feature-row-body { order: initial; }
  .vatos-feature-row-media { aspect-ratio: 16 / 10; }
}


.vatos-process { position: relative; }
.vatos-process-track { position: relative; margin-top: clamp(40px, 6vw, 76px); }
/* 배경 연결선 (스크롤 시 그려짐) */
.vatos-process-line {
  position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: visible;
}
.vatos-process-line path {
  fill: none; stroke: var(--cyan); stroke-width: 1.8; opacity: .7;
  stroke-dasharray: var(--len, 2000); stroke-dashoffset: var(--len, 2000);
  filter: drop-shadow(0 0 4px rgba(35,165,179,0.5));
}
.vatos-process-line path.drawn { transition: stroke-dashoffset 2.1s cubic-bezier(.16,.84,.2,1); stroke-dashoffset: 0; }

.vatos-steps { position: relative; z-index: 1; display: flex; flex-direction: column; gap: clamp(30px, 4.6vw, 66px); }
.vatos-step {
  display: flex; align-items: baseline; gap: clamp(22px, 3.4vw, 52px);
  max-width: 760px; opacity: .22; transition: opacity .8s cubic-bezier(.16,.84,.2,1), transform .8s cubic-bezier(.16,.84,.2,1);
  transform: translateY(34px) scale(.96);
}
/* 비정형 배치 — 단계마다 들여쓰기를 다르게, 화면 중앙~오른쪽까지 균형 있게 퍼지도록 확장 */
.vatos-step:nth-child(1) { margin-left: 0; }
.vatos-step:nth-child(2) { margin-left: clamp(40px, 12vw, 210px); }
.vatos-step:nth-child(3) { margin-left: clamp(90px, 25vw, 430px); }
.vatos-step:nth-child(4) { margin-left: clamp(40px, 12vw, 210px); }
.vatos-step:nth-child(5) { margin-left: 0; }
.vatos-step.active { opacity: 1; transform: none; }

.vatos-step-num {
  font-size: clamp(38px, 5.6vw, 86px); font-weight: 800; line-height: .95;
  letter-spacing: -3px; color: rgba(255,255,255,0.14); flex-shrink: 0;
  transition: color .6s ease, text-shadow .6s ease;
}
.vatos-step.active .vatos-step-num { color: var(--cyan); text-shadow: 0 0 24px rgba(35,165,179,0.55); }
.vatos-step-text { padding-top: clamp(4px, .8vw, 12px); }
.vatos-step-label { font-size: 11.5px; letter-spacing: 2.4px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.vatos-step-desc { margin-top: 8px; font-size: clamp(15px, 1.25vw, 19px); line-height: 1.6; color: rgba(255,255,255,0.86); font-weight: 500; }

/* ------------------------------------------------------------
   기존 이미지 자산 배치 — 무거운 카드 박스 없이 얇은 테두리만
   ------------------------------------------------------------ */
.vatos-media { margin-top: clamp(46px, 6vw, 80px); }
.vatos-media img {
  display: block; width: 100%; max-width: 1040px; height: auto;
  margin: 0 auto; border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
}
.vatos-media figcaption {
  margin-top: 14px; font-size: 12.5px; letter-spacing: .3px;
  color: rgba(255,255,255,0.38);
}

/* ------------------------------------------------------------
   핵심 지표 바 — 가로선 드로잉 + 순차 활성화 (카드/배경 없음)
   운영 & 기술지원 페이지의 '5개 핵심 장점' 전용
   ------------------------------------------------------------ */
.vatos-stats-bar { position: relative; padding-top: 30px; }
.vatos-stats-bar-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: rgba(255,255,255,0.14); border-radius: 2px;
}
.vatos-stats-bar-line-fill {
  position: absolute; top: 0; left: 0; height: 100%; width: 0%;
  background: var(--cyan); border-radius: 2px;
}
.vatos-stats-bar.visible .vatos-stats-bar-line-fill {
  width: 100%; transition: width 1.4s cubic-bezier(.4,0,.2,1);
}

.vatos-stats-row { display: flex; }
.vatos-stat {
  flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 24px clamp(14px, 2vw, 26px);
  border-left: 1px solid rgba(255,255,255,0.12);
  opacity: .4; transition: opacity .5s ease;
}
.vatos-stat:first-child { border-left: none; padding-left: 0; }
.vatos-stat.active { opacity: 1; }

.vatos-stat-num {
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.38); margin-bottom: 14px;
  transition: color .5s ease;
}
.vatos-stat.active .vatos-stat-num { color: var(--cyan); }

.vatos-stat-icon { width: 34px; height: 34px; margin-bottom: 14px; }
.vatos-stat-icon svg {
  width: 100%; height: 100%; fill: none; stroke: rgba(255,255,255,0.45);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .5s ease;
}
.vatos-stat.active .vatos-stat-icon svg { stroke: var(--cyan); }

.vatos-stat-title {
  font-size: clamp(15px, 1.2vw, 16.5px); font-weight: 700;
  color: rgba(255,255,255,0.5); letter-spacing: -0.2px;
  transition: color .5s ease;
}
.vatos-stat.active .vatos-stat-title { color: var(--white); }

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .vatos-sub-intro-grid { grid-template-columns: 1fr; gap: 34px; }
  .vatos-sub-intro-body {
    padding-left: 0; padding-top: 22px;
    border-left: none; border-top: 1px solid rgba(35,165,179,0.45);
  }
  .vatos-sub-intro-dot { left: 0; top: -4px; }

  /* 서비스 리스트 — 번호 / 제목 / 설명 세로 배치 */
  .vatos-service-item { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }
  .vatos-service-item-num { font-size: 20px; }
  .vatos-service-item-desc { max-width: 100%; }

  /* 프로세스 — 들여쓰기 해제, 연결선 숨김 */
  .vatos-step, .vatos-step:nth-child(n) { margin-left: 0; max-width: 100%; }
  .vatos-process-line { display: none; }
  .vatos-step { opacity: 1; transform: none; }
}

@media (max-width: 760px) {
  /* 핵심 지표 바 — 세로 리스트로 전환 */
  .vatos-stats-row { flex-direction: column; }
  .vatos-stat {
    border-left: none; border-top: 1px solid rgba(255,255,255,0.12);
    padding: 20px 2px;
  }
  .vatos-stat:first-child { border-top: none; padding-top: 0; }
}

@media (max-width: 640px) {
  .vatos-sub-hero { padding: 120px 0 54px; }
  .vatos-sub-hero-title { letter-spacing: -1px; }
  .vatos-sub-hero-summary { max-width: 100%; }
}

@media (max-width: 760px) {
  /* 배경 이미지 히어로 — 모바일에서는 vh 고정 대신 콘텐츠 기준 높이 */
  .vatos-sub-hero-media { height: auto; min-height: 0; padding: 120px 0 54px; display: block; }
  .vatos-sub-hero-media .vatos-sub-hero-bg { background-position: center 18%; }
  /* 텍스트가 전체 폭을 덮으므로 좌우 그라데이션 대신 균일한 어두운 톤 사용 */
  .vatos-sub-hero-media .vatos-sub-hero-scrim {
    background: linear-gradient(180deg, rgba(7,11,15,0.88) 0%, rgba(7,11,15,0.8) 60%, rgba(7,11,15,0.92) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vatos-sub-hero-label, .vatos-sub-hero-title, .vatos-sub-hero-summary { opacity: 1 !important; transform: none !important; animation: none !important; }
  .vatos-service-item { opacity: 1 !important; transform: none !important; }
  .vatos-step { opacity: 1 !important; transform: none !important; }
  .vatos-process-line path { stroke-dashoffset: 0 !important; transition: none !important; }
  .vatos-stats-bar-line-fill { transition: none !important; width: 100% !important; }
  .vatos-stat { opacity: 1 !important; }
  .vatos-sub-intro-dot { transition: none !important; }
  .vatos-highlight { transition: none !important; background-size: 100% 100% !important; }
}


/* ============================================================
   About VATOS
   ============================================================ */
/* ============================================================
   VATOS — About VATOS 상세페이지 전용 (Company / Location)
   이 파일의 공통 서브페이지 규칙 위에서 동작한다.
   기업 이념(회사소개)은 이 파일의 .vatos-service-list/.vatos-service-item를
   그대로 재사용하며, 이 파일은 오시는 길 카드처럼
   Business Areas 페이지에 없는 콘텐츠 전용 스타일만 정의한다.
   (History 연혁 타임라인은 아래 History 섹션 참조)
   ============================================================ */

/* ------------------------------------------------------------
   Location — 오시는 길
   ------------------------------------------------------------ */
.vatos-location-grid {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
  gap: clamp(20px, 3vw, 28px); align-items: stretch;
}

.vatos-location-map {
  height: 100%; min-height: 380px; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.02);
}
.vatos-location-map a { display: block; width: 100%; height: 100%; }
.vatos-location-map img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.vatos-location-map a:hover img { transform: scale(1.03); }

.vatos-location-card {
  padding: clamp(30px, 3.2vw, 42px);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column;
}

.vatos-location-label { font-size: 12px; font-weight: 600; letter-spacing: 2px; color: var(--cyan); text-transform: uppercase; }
.vatos-location-name {
  display: flex; align-items: center; gap: 9px;
  font-size: clamp(22px, 2vw, 26px); font-weight: 800; color: var(--white);
  margin-top: 8px;
}
.vatos-location-name-pin svg { width: 22px; height: 22px; stroke: var(--cyan); fill: none; stroke-width: 1.8; display: block; }

.vatos-location-addr-row { display: flex; align-items: flex-start; gap: 8px; position: relative; margin-top: 18px; }
.vatos-location-addr { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.75; flex: 1; }
.vatos-location-copy-btn {
  flex-shrink: 0; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.16); border-radius: 6px;
  background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color .2s ease;
}
.vatos-location-copy-btn svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1.8; }
.vatos-location-copy-btn:hover { border-color: var(--cyan); }
.vatos-location-copy-btn:hover svg { stroke: var(--cyan); }
.vatos-location-copy-toast {
  position: absolute; right: 0; top: -22px; font-size: 12px; color: var(--cyan); font-weight: 600;
  opacity: 0; transform: translateY(4px); transition: opacity .25s ease, transform .25s ease; pointer-events: none;
}
.vatos-location-copy-toast.show { opacity: 1; transform: translateY(0); }

.vatos-location-item { margin-top: 20px; }
.vatos-location-item-label { font-size: 12px; color: rgba(255,255,255,0.42); margin-bottom: 4px; }
.vatos-location-item-value { font-size: 14.5px; color: var(--white); font-weight: 600; }

.vatos-location-transit { display: flex; flex-direction: column; gap: 10px; margin-top: 2px; }
.vatos-transit-row { display: flex; align-items: center; gap: 9px; }
.vatos-transit-text { font-size: 13.5px; color: rgba(255,255,255,0.68); }
.vatos-subway-badge { display: inline-flex; align-items: center; padding: 3px 11px; border-radius: 20px; font-size: 11.5px; font-weight: 700; color: #fff; }
.vatos-subway-badge.vatos-line-2 { background: #00A84D; }
.vatos-subway-badge.vatos-line-bundang { background: #F5A200; }

.vatos-location-kakao-link { margin-top: auto; padding-top: 22px; font-size: 13.5px; font-weight: 600; color: var(--cyan); }
.vatos-location-kakao-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .vatos-location-grid { grid-template-columns: 1fr; }
  .vatos-location-map { min-height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  .vatos-location-map a:hover img { transform: none; }
}


/* ============================================================
   History
   ============================================================ */
/* ============================================================
   VATOS — History(연혁) 페이지 전용
   이 파일의 공통 Header/Hero 규칙 위에서 동작한다.
   이 파일은 연혁 섹션 전용 세로 타임라인 레이아웃 + 스크롤 인디케이터만 담당한다.
   ============================================================ */

.vatos-history-sec { padding-top: 0; }

/* ------------------------------------------------------------
   전체 레이아웃 — 좌측 고정 타이틀 / 우측 타임라인
   ------------------------------------------------------------ */
.vatos-history-layout {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: clamp(36px, 6vw, 90px);
}

/* ------------------------------------------------------------
   좌측 고정 타이틀 — SINCE 2015 / OUR HISTORY
   ------------------------------------------------------------ */
.vatos-history-side-inner {
  position: sticky;
  top: clamp(104px, 13vh, 150px);
}
.vatos-history-since {
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 14px;
}
.vatos-history-title {
  font-size: clamp(32px, 4vw, 54px); font-weight: 800; line-height: 1.08;
  letter-spacing: -1px; color: var(--white); text-transform: uppercase; margin: 0;
}

/* ------------------------------------------------------------
   타임라인 — 세로선 + 스크롤 연동 인디케이터
   ------------------------------------------------------------ */
.vatos-history-timeline { position: relative; }

.vatos-history-line {
  position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px;
  background: rgba(255,255,255,0.14);
  border-radius: 2px;
}
.vatos-history-line-fill {
  position: absolute; left: 0; top: 0; width: 100%; height: 0%;
  background: var(--cyan);
  border-radius: 2px;
}
.vatos-history-indicator {
  position: absolute; left: 50%; top: 0%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-black);
  border: 2px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.vatos-history-indicator svg { width: 13px; height: 13px; stroke: var(--cyan); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.vatos-history-rows {
  padding-left: clamp(30px, 3.4vw, 44px);
  display: flex; flex-direction: column;
  gap: clamp(44px, 6vw, 76px);
}

.vatos-history-row { display: flex; gap: clamp(20px, 3vw, 40px); }

.vatos-history-row-year {
  flex: 0 0 clamp(84px, 8vw, 120px);
  font-size: clamp(26px, 2.6vw, 38px); font-weight: 800; line-height: 1;
  letter-spacing: -1px; color: rgba(255,255,255,0.32);
  transition: color .5s ease;
}
.vatos-history-row.active .vatos-history-row-year { color: var(--cyan); }

.vatos-history-row-items {
  flex: 1; min-width: 0;
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.vatos-history-row-items li {
  position: relative; padding-left: 18px;
  font-size: clamp(14.5px, 1.05vw, 16px); line-height: 1.75; font-weight: 400;
  color: rgba(255,255,255,0.68);
}
.vatos-history-row.active .vatos-history-row-items li { color: var(--white); font-weight: 700; }
.vatos-history-row-items li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(35,165,179,0.65);
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .vatos-history-layout { display: block; }
  .vatos-history-side-inner { position: static; margin-bottom: 40px; }

  .vatos-history-rows { padding-left: 26px; gap: 40px; }
  .vatos-history-row { flex-direction: column; gap: 8px; }
  .vatos-history-row-year { flex: none; font-size: 26px; }
}

@media (max-width: 480px) {
  .vatos-history-title { font-size: 30px; }
  .vatos-history-rows { padding-left: 22px; }
  .vatos-history-indicator { width: 24px; height: 24px; }
  .vatos-history-indicator svg { width: 11px; height: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .vatos-history-row-year { transition: none; }
}


/* ============================================================
   Culture
   ============================================================ */
/* ============================================================
   VATOS — Culture(바토스 문화) 상세페이지 전용
   Header/Hero는 위의 공통 규칙을 그대로 재사용한다.
   이 파일은 Tech Insights와 동일 톤의 오로라
   배경, 복지제도/문화 카드 등 이 페이지 고유 콘텐츠만 정의한다.
   ============================================================ */

body.vatos-page-sub.vatos-page-culture { background: #0A0F1C; }

/* 페이지 전체에 고정되는 오로라 배경 (Tech Insights .vatos-insights-bg 와 동일 톤) */
.vatos-culture-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.vatos-culture-bg-base {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 18% 8%,  rgba(64,110,255,0.30), transparent 62%),
    radial-gradient(820px 560px at 82% 14%, rgba(160,84,255,0.26), transparent 62%),
    radial-gradient(760px 520px at 60% 46%, rgba(255,92,170,0.16), transparent 64%),
    radial-gradient(900px 620px at 24% 72%, rgba(35,165,179,0.20), transparent 66%);
}
.vatos-culture-bg-ribbon {
  position: absolute; left: -22%; top: -18%; width: 144%; height: 136%;
  background: conic-gradient(from 210deg at 50% 50%,
      rgba(64,110,255,0.00) 0deg, rgba(64,110,255,0.24) 62deg,
      rgba(160,84,255,0.22) 142deg, rgba(255,92,170,0.16) 216deg,
      rgba(35,165,179,0.20) 296deg, rgba(64,110,255,0.00) 360deg);
  filter: blur(72px);
  animation: culRibbon 64s linear infinite;
}
@keyframes culRibbon { from { transform: rotate(0deg) scale(1.05); } to { transform: rotate(360deg) scale(1.05); } }
.vatos-culture-bg-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 40vh;
  background: linear-gradient(180deg, transparent 0%, #0A0F1C 55%, #060E22 100%);
}

.vatos-culture-section, .vatos-culture-section.alt { padding: 76px 0; background: transparent; position: relative; z-index: 1; }
.vatos-culture-head { margin-bottom: 42px; }
.vatos-culture-head .vatos-sub-section-label { margin-bottom: 12px; }
.vatos-culture-head h2 { font-family: var(--font-body); font-size: 30px; font-weight: 700; color: var(--white); margin-top: 8px; letter-spacing: -0.3px; }
.vatos-culture-desc { font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.8; margin-top: 12px; max-width: 640px; }
.vatos-culture-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 1fr; gap: 22px; }

/* 복지제도 — 투명도 높은 글래스 카드 */
.vatos-culture-card {
  border-radius: 14px; padding: 28px 26px;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  display: flex; flex-direction: column; height: 100%;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: none;
}
.vatos-culture-card:hover {
  background: rgba(255,255,255,0.075); border-color: rgba(35,165,179,0.45);
  box-shadow: 0 14px 34px rgba(0,0,0,0.28); transform: translateY(-4px);
}

/* 문화 — 더 불투명하고 테두리가 뚜렷한 글래스 카드로 구분 (같은 배경 위에서 톤만 차이) */
.vatos-culture-section.alt .vatos-culture-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 8px 26px rgba(0,0,0,0.22);
}
.vatos-culture-section.alt .vatos-culture-card:hover {
  background: rgba(255,255,255,0.14); border-color: rgba(35,165,179,0.6);
  box-shadow: 0 18px 40px rgba(0,0,0,0.32); transform: translateY(-4px);
}

.vatos-culture-icon {
  width: 48px; height: 48px; border-radius: 12px; background: rgba(35,165,179,0.16);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.vatos-culture-icon svg { width: 23px; height: 23px; stroke: var(--cyan); fill: none; stroke-width: 1.7; }
.vatos-culture-icon-emoji { font-size: 24px; background: rgba(35,165,179,0.12); }
.vatos-culture-card h3 { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 9px; line-height: 1.45; }
.vatos-culture-card p { font-size: 13.5px; color: rgba(255,255,255,0.62); line-height: 1.75; }
.vatos-culture-bullets { margin-top: 13px; display: flex; flex-direction: column; gap: 6px; padding: 0; }
.vatos-culture-bullets li { list-style: none; position: relative; padding-left: 16px; font-size: 13px; color: rgba(255,255,255,0.6); }
.vatos-culture-bullets li::before { content: ''; position: absolute; left: 2px; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }

@media (max-width: 768px) {
  .vatos-culture-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vatos-culture-card { padding: 18px 16px; border-radius: 12px; }
  .vatos-culture-icon { width: 38px; height: 38px; margin-bottom: 12px; border-radius: 10px; }
  .vatos-culture-icon svg { width: 18px; height: 18px; }
  .vatos-culture-icon-emoji { font-size: 19px; }
  .vatos-culture-card h3 { font-size: 13.5px; margin-bottom: 6px; line-height: 1.4; word-break: keep-all; }
  .vatos-culture-card p { font-size: 12px; line-height: 1.6; word-break: keep-all; }
  .vatos-culture-bullets { margin-top: 8px; gap: 4px; }
  .vatos-culture-bullets li { font-size: 11px; padding-left: 13px; }
}

/* 매우 좁은 화면(≤380px)에서는 2열 유지 시 가독성이 깨지므로 이 구간만 1열로 전환 */
@media (max-width: 380px) {
  .vatos-culture-grid { grid-template-columns: 1fr; gap: 14px; }
  .vatos-culture-card { padding: 20px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .vatos-culture-bg-ribbon { animation: none; }
}


/* ============================================================
   Tech Insights index
   ============================================================ */
/* ============================================================
   VATOS — Tech Insights
   Business Areas보다 밝은 톤. 블루·퍼플·핑크 오로라 광택 위에
   반투명 글래스 카드가 떠 있는 콘텐츠 플랫폼 느낌.
   ============================================================ */

body.vatos-page-sub.vatos-page-insights { background: #0A0F1C; }

/* ------------------------------------------------------------
   배경 — 오로라 광택 (fixed, 카드 뒤로 은은하게 비침)
   ------------------------------------------------------------ */
.vatos-insights-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.vatos-insights-bg-base {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 18% 8%,  rgba(64,110,255,0.30), transparent 62%),
    radial-gradient(820px 560px at 82% 14%, rgba(160,84,255,0.26), transparent 62%),
    radial-gradient(760px 520px at 60% 46%, rgba(255,92,170,0.16), transparent 64%),
    radial-gradient(900px 620px at 24% 72%, rgba(35,165,179,0.20), transparent 66%);
}
/* 아주 느리게 흐르는 광택 리본 */
.vatos-insights-bg-ribbon {
  position: absolute; left: -22%; top: -18%; width: 144%; height: 136%;
  background:
    conic-gradient(from 210deg at 50% 50%,
      rgba(64,110,255,0.00) 0deg,
      rgba(64,110,255,0.24) 62deg,
      rgba(160,84,255,0.22) 142deg,
      rgba(255,92,170,0.16) 216deg,
      rgba(35,165,179,0.20) 296deg,
      rgba(64,110,255,0.00) 360deg);
  filter: blur(72px);
  animation: tiRibbon 64s linear infinite;
}
@keyframes tiRibbon { from { transform: rotate(0deg) scale(1.05); } to { transform: rotate(360deg) scale(1.05); } }

/* 푸터 진입 전 광택이 사라지고 검정으로 전환 */
.vatos-insights-bg-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 46vh;
  background: linear-gradient(180deg, transparent 0%, #0A0F1C 55%, #05090d 100%);
}

.vatos-insights-main { position: relative; z-index: 1; }

/* 히어로(제목 영역)는 이 파일의 공통 컴포넌트인 .vatos-sub-hero를 재사용한다.
   (다른 상세페이지들과 동일한 크기·배치로 통일) */

/* ------------------------------------------------------------
   카드 그리드 — 첫 카드도 동일 비중 (균형)
   ------------------------------------------------------------ */
.vatos-insights-list-sec { padding-bottom: clamp(70px, 9vw, 130px); }
.vatos-insights-list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 26px);
  transition: opacity .32s ease;
}
.vatos-insights-list.swapping { opacity: 0; }

.vatos-insights-card {
  position: relative; display: flex; flex-direction: column;
  min-height: clamp(190px, 17vw, 236px);
  padding: clamp(24px, 2.2vw, 32px);
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  transition: transform .35s cubic-bezier(.2,.6,.2,1), background .35s ease,
              border-color .35s ease, backdrop-filter .35s ease;
}
.vatos-insights-card-num {
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--cyan); margin-bottom: 16px;
}
.vatos-insights-card-title {
  font-size: clamp(16.5px, 1.35vw, 19px); font-weight: 700; line-height: 1.5;
  letter-spacing: -0.3px; color: var(--white); margin-bottom: 20px;
}
.vatos-insights-card-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600; color: var(--cyan);
}
.vatos-insights-card-link .vatos-link-arrow { transition: transform .3s ease; }

.vatos-insights-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.085);
  border-color: rgba(255,255,255,0.26);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
}
.vatos-insights-card:hover .vatos-insights-card-link .vatos-link-arrow { transform: translateX(4px); }

/* 순차 등장 */
.vatos-insights-card { opacity: 0; transform: translateY(22px); }
.vatos-insights-card.visible {
  opacity: 1; transform: none;
  transition: opacity .6s cubic-bezier(.2,.6,.2,1), transform .6s cubic-bezier(.2,.6,.2,1),
              background .35s ease, border-color .35s ease;
}
.vatos-insights-card.visible:hover { transform: translateY(-5px); }

/* ------------------------------------------------------------
   PAGINATION
   ------------------------------------------------------------ */
.vatos-insights-pagination {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: clamp(44px, 5vw, 68px);
}
.vatos-insights-pagination .vatos-page-btn {
  min-width: 40px; height: 40px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px; color: rgba(255,255,255,0.72);
  font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.vatos-insights-pagination .vatos-page-btn:hover:not(:disabled) { border-color: rgba(35,165,179,0.6); color: var(--white); }
.vatos-insights-pagination .vatos-page-btn.active {
  border-color: var(--cyan); color: var(--cyan); background: rgba(35,165,179,0.12);
}
.vatos-insights-pagination .vatos-page-btn:disabled { opacity: .3; cursor: default; }

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1000px) {
  .vatos-insights-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .vatos-insights-list { grid-template-columns: 1fr; }
  .vatos-insights-card { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .vatos-insights-bg-ribbon { animation: none; }
  .vatos-insights-card { opacity: 1 !important; transform: none !important; }
  .vatos-insights-card:hover, .vatos-insights-card.visible:hover { transform: none; }
  .vatos-insights-list { transition: none; }
}
