/* ========== Tokens / Reset ========== */
:root{
  --brand:#0B5CFF;
  --brand-600:#0A54E8;
  --brand-400:#3C7BFF;

  --ink:#0F172A;
  --sub:#46566D;
  --muted:#5B6474;

  --line:#E6ECF3;
  --bg:#F7F8FB;
  --card:#FFFFFF;

  --container:1240px;
  --page-pad:20px;

  --shadow-sm:0 2px 8px rgba(2,6,23,.06);
  --shadow-lg:0 16px 40px rgba(2,6,23,.14);
  --focus:#0B5CFF40;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

html {
  scroll-behavior: smooth;
}

body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Pretendard,"Noto Sans KR",sans-serif;
  color:var(--ink); background:var(--bg); line-height:1.65; letter-spacing:.1px;
}
img{max-width:100%; display:block; height:auto}
a{color:inherit; text-decoration:none}
a:visited{color:inherit}
.nowrap{white-space:nowrap}

/* ========== Layout Helpers ========== */
.container{
  width:100%; max-width:var(--container);
  padding:0 var(--page-pad); margin:0 auto;
}

/* ========== Header & Global Nav (Clean v2025-11-17) ========== */

/* 고정 헤더 높이 */
:root {
  --header-h: 72px;
}

/* 가로 스크롤 방지 */
html, body {
  overflow-x: hidden;
}

/* 고정 헤더에 가려지지 않도록 상단 패딩 */
body {
  padding-top: var(--header-h);
}

/* 공통 헤더 */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 3000;
  background: rgba(255,255,255,.75);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(2,6,23,.03);
  transition: background .25s ease, box-shadow .25s ease;
}

/* 스크롤 시 살짝 진하게 */
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 4px 12px rgba(2,6,23,.06);
}

.nav-wrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 브랜드 로고 */
.brand-logo {
  font-family: "Segoe UI", "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.brand-logo:hover {
  transform: scale(1.04);
  color: var(--brand);
}

.logo-web {
  font-family: "Pacifico", cursive;
  color: #e53935;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* 데스크톱 기본 내비 */
.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* 메뉴 + 문의하기 공통 스타일 */
.nav a,
.nav .btn-nav {
  display: inline-flex;
  align-items: center;

  padding: 10px 12px;
  color: var(--sub);
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: -0.2px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: color .2s ease, background .2s ease, transform .06s ease;

  font-family: inherit;   /* 다른 메뉴와 동일 폰트 사용 */
  font-size: inherit;     /* 다른 메뉴와 동일 크기 사용 */
}


/* 호버 */
.nav a:hover {
  color: var(--ink);
  background: #F5F7FB;
}

/* 현재 페이지 표시 – 데스크톱 메뉴만 살짝 강조 (배경 없음) */
.nav a.active,
.nav a[aria-current="page"] {
  color: var(--sub);
  background: transparent;
  box-shadow: none;
  transform: none;
}

/* 모바일 메뉴(#site-nav)에서는 active도 일반 링크와 동일하게 흰색 유지 */
#site-nav.nav a.active,
#site-nav.nav a[aria-current="page"] {
  color: #E5EDF7;        /* 기본 모바일 메뉴 글자색과 동일 */
  background: transparent;
  box-shadow: none;
  transform: none;
}

/* 헤더 우측 문의하기 – 공통 스타일을 그대로 사용, 차이만 정의 */
.btn-nav {
  border: none;
  background: transparent;
}

/* hover 시 효과 */
.btn-nav:hover {
  background: #F5F7FB;
  color: var(--ink);
}

/* 클릭 시 파란 테두리/박스 제거 (필요시) */
.btn-nav:focus,
.btn-nav:active {
  outline: none;
  box-shadow: none;
}

/* 햄버거 버튼 (기본: PC에서는 숨김) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  z-index: 3100;
}

.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

/* X 아이콘 모양 */
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 모바일 메뉴 오픈 시 바디 스크롤 잠금 */
.body-lock {
  overflow: hidden;
}

/* 모바일 메뉴가 열릴 때 사용하는 어두운 배경 레이어 */
.nav-dim {
  position: fixed;
  inset: 0;                        /* top/right/bottom/left = 0 */
  z-index: 2500;
  background: rgba(15, 23, 42, 0.45); /* 화면을 살짝 어둡게 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

/* dim이 켜진 상태 (JS에서 .is-active를 붙일 예정) */
.nav-dim.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* 오프캔버스 내비 공통 (모바일 기본값) – 글래스모픽 스타일 */
#site-nav.nav {
  position: fixed;
  top: var(--header-h);
  right: 10px;
  left: auto;
  z-index: 3000;

  display: flex;
  flex-direction: column;
  gap: 6px;

  width: min(300px, 65vw);
  padding: 14px 14px 16px;

  /* 글래스모픽 핵심 */
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);

  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
  transform: translateX(48px) translateY(-4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform .38s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity  .30s ease-out,
    visibility .30s ease-out;
}

/* 메뉴가 열린 상태 */
#site-nav.nav.is-open {
  transform: translateX(0) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 오프캔버스 내 링크 스타일 – 어두운 유리 위에 밝은 텍스트 */
#site-nav.nav a {
  display: block;
  padding: 12px 10px;
  margin: 2px 0;

  font-family: "Segoe UI","Noto Sans KR",sans-serif;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.2;

  color: #E5EDF7;
  border-radius: 12px;
  -webkit-tap-highlight-color: transparent;
  min-height: 42px;

  transition:
    color .18s ease,
    background .18s ease,
    transform .08s ease;
}

/* 터치/호버 시 */
#site-nav.nav a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}


/* 클릭/포커스 잔상 제거 */
#site-nav.nav a:focus,
#site-nav.nav a:active {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  outline: none;
  transform: none;
}

/* CTA 버튼 – 모바일 메뉴에서도 일반 항목과 거의 동일하게 */
@media (max-width: 960px) {
  #site-nav.nav a.btn-nav {
    margin-top: 12px;
    padding: 12px 10px;

    /* 다른 메뉴와 동일하게 */
    color: #E5EDF7;                 
    background: transparent;        
    border: 0;
  }

  #site-nav.nav a.btn-nav:hover {
    background: rgba(255, 255, 255, 0.08);  /* 동일 hover */
    color: #FFFFFF;
    transform: translateX(2px);
  }
}


/* ✅ 모바일 레이아웃 (≤ 960px) */
@media (max-width: 960px) {

  .nav-toggle {
    display: inline-block;
  }

  /* 헤더 오른쪽 정렬 유지 */
  .nav {
    /* nav 자체는 숨기지 않고, #site-nav.nav이 오프캔버스 역할 수행 */
  }
}

/* ✅ 데스크톱 레이아웃 (≥ 961px) */
@media (min-width: 961px) {

  /* 햄버거 숨기기 */
  .nav-toggle {
    display: none;
  }

  /* 데스크톱에서는 일반 가로 메뉴 */
  #site-nav.nav {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;

    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  /* 기본 상태: 모든 메뉴(문의하기 포함) */
  #site-nav.nav a,
  #site-nav.nav .btn-nav {
    padding: 10px 12px;
    margin: 0;
    min-height: auto;
    transform: none;
    color: var(--sub);        /* 기본 글자색 */
    background: transparent;  /* 기본 배경 없음 */
  }

  /* 마우스를 올렸을 때만 진하게 표시 */
  #site-nav.nav a:hover,
  #site-nav.nav .btn-nav:hover {
    color: var(--ink);        /* 진한 글자색 */
    background: #F5F7FB;      /* 옅은 회색 배경 */
  }

  /* === Language Toggle (기존 데스크톱 메뉴 안에 통합) === */

  /* 현재 페이지 언어: 진하게, 클릭 불가 */
  #site-nav.nav a.lang-current {
    font-weight: 700;
    color: var(--ink);    /* 메뉴 중에서 가장 진한 남색 */
    opacity: 1;
    pointer-events: none; /* 클릭 안 되게 */
    cursor: default;
  }

  /* 전환용 언어 버튼: 살짝 흐리게 → hover 시 진하게 */
  #site-nav.nav a.lang-switch {
    opacity: 0.55;
  }

  #site-nav.nav a.lang-switch:hover {
    opacity: 1;
  }

  /* 방문/클릭/포커스 상태도 모두 기본 색으로 강제 */
  #site-nav.nav a:visited,
  #site-nav.nav .btn-nav:visited,
  #site-nav.nav a:focus,
  #site-nav.nav .btn-nav:focus,
  #site-nav.nav a:active,
  #site-nav.nav .btn-nav:active {
    color: var(--sub);        /* 클릭 후에도 다시 기본색 */
    background: transparent;  /* 배경도 기본으로 */
    outline: none;
    box-shadow: none;
  }

  /* (선택) 현재 페이지 표시용 active 클래스가 있다면 이렇게 통일 */
  #site-nav.nav a.active,
  #site-nav.nav .btn-nav.active {
    color: var(--ink);        /* 현재 페이지만 조금 더 진하게 */
    background: transparent;
    font-weight: 700;
  }
}


/* ✅ 고정 헤더용 앵커 오프셋 (섹션 점프 시 가려지지 않게) */
[id] {
  scroll-margin-top: calc(var(--header-h, 72px) + 16px);
}

/* 모바일에서 로고 크기만 살짝 축소 */
@media (max-width: 600px) {
  .brand-logo {
    font-size: 1.2rem;
  }
}

/* ========== Hero ========== */
.hero{
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;          /* 컨텐츠 수직·수평 중앙 정렬 */
  overflow: hidden;
}

/* 배경 컨테이너: 예비 이미지 + 동영상 틀 */
.hero-bg{
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat; /* 동영상 안 뜰 때 예비 이미지 */
  filter: saturate(115%) brightness(.7);
  overflow: hidden; /* 영상이 밖으로 넘치지 않게 */
  z-index: 0;
}

/* 실제 동영상 레이어 */
.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;                       /* 화면 꽉 채우기 */
  filter: saturate(115%) brightness(.68);   /* 기존 이미지 톤과 비슷하게 */
  pointer-events: none;                    /* 버튼 클릭 방해하지 않게 */
  z-index: 0;
}

/* 메인 오버레이 (가독성 유지) */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,
    rgba(5,12,30,.58) 0%,
    rgba(5,12,30,.35) 46%,
    rgba(5,12,30,.60) 100%);
  z-index: 0;
}

/* 하단부만 살짝 더 어둡게 (고급스러운 깊이감) */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(180deg,
    rgba(2,6,23,0) 0%,
    rgba(2,6,23,.10) 55%,
    rgba(2,6,23,.20) 100%);
  z-index: 0;
}

.hero-inner{
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 80px 0;
  max-width: 780px;                 /* 문단 폭 제한 → 더 고급스럽게 */
  margin: 0 auto;
}

.hero h1{
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.4px;
  text-shadow: 0 2px 12px rgba(2,6,23,.18);
}

/* 부제(sub)는 기존 .hero .sub 정의를 그대로 사용 (아래 패치 영역) */
/* 여기서는 h1, 버튼 레이아웃만 정리 */

.hero-cta{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Hero에서 사용하는 기본 버튼 스타일 */
.btn-primary,
.btn-outline{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition:
    transform .04s ease,
    background .2s ease,
    color .2s ease,
    border-color .2s ease,
    box-shadow .18s ease;
  min-height: 44px;
}

/* 기본 파란 CTA */
.btn-primary{
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover{
  background: var(--brand-600);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(11,92,255,.20);
}
.btn-primary:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* 보조 CTA 버튼 (흰 배경 + 옅은 테두리) */
.btn-outline{
  border: 1.5px solid #d0d7e2;
  color: #1f2937;
  background: #ffffff;
}
.btn-outline:hover{
  background: #f3f6fb;
  border-color: #b8c2d0;
  color: #0B5CFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15,23,42,.12);
}
.btn-outline:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.scroll-hint{
  margin-top: 28px;
  opacity: .85;
}

/* Hero 모바일 타이포 (기존 의도 유지 + 정리) */
@media (max-width: 768px){
  .hero-inner{
    padding: 64px 0;
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero h1{
    font-size: 1.6rem;
    line-height: 1.25;
    letter-spacing: -0.3px;
  }
}


/* ========== Why Cards ========== */
.why{padding:80px 0; background:#fff}
.why h2{font-size:28px; margin:0 0 24px; font-weight:800}
.cards-3{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
.card{background:var(--card); border:1px solid var(--line); border-radius:14px; padding:24px; box-shadow:var(--shadow-sm);}
.card h3{margin:0 0 8px; font-size:18px}

/* ========== Service Table ========== */
.service{
  padding: 84px 0;
  background: var(--bg);
}

.service h2{
  font-size: 28px;
  margin: 0 0 22px;
  font-weight: 800;
}

/* 전체 테이블 박스 */
.table-wrap{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

/* 행 구조 */
.row{
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.row:first-child{
  border-top: 0;
  background: #F3F7FF;
  font-weight: 700;
}

/* 셀 내부 */
.cell{
  padding: 14px 18px;
  line-height: 1.45;
  font-size: 15px;
}

/* 간단한 비고문 */
.note{
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* 모바일에서 보기 좋게 1열 레이아웃으로 */
@media (max-width: 720px){
  .row{
    grid-template-columns: 1fr;
  }
  .row:first-child{
    display: none; /* 헤더는 모바일에서 제거 */
  }
  .cell{
    padding: 16px 18px;
    border-top: 1px solid var(--line);
  }
  .cell:first-child{
    border-top: 0;
  }
}


/* ========== Features ========== */
.features{
  padding: 84px 0;
  background: #fff;
}

.features h2{
  font-size: 28px;
  margin: 0 0 18px;
  font-weight: 800;
}

/* (선택) h2 아래 한 줄 설명에 사용할 수 있는 서브 텍스트 */
.features .section-sub{
  margin: 0 0 26px;
  color: var(--sub);
  font-size: 15px;
}

.grid-2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-sm);

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature h3{
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
}

.feature p{
  margin: 0;
  color: var(--sub);
}

/* 카드 하단에 들어가는 작은 설명 줄 */
.feature .meta{
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--muted);
}

/* 옵션/태그용 뱃지 (있으면 자동으로 예쁘게) */
.feature .badge{
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #EEF3FF;
  color: #0B5CFF;
  font-size: 12px;
  font-weight: 600;
}


/* ========== Samples ========== */
.samples{padding:80px 0; background:var(--bg)}
.samples h2{font-size:28px; margin:0 0 24px; font-weight:800}
.thumbs{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.thumb{background:#fff; border:1px solid var(--line); border-radius:14px; overflow:hidden}
.thumb figcaption{padding:10px 12px; color:var(--sub); font-size:14px}

/* === 샘플 이미지 비율 통일 === */
.samples .thumb img {
  width: 100%;
  height: 240px; /* 원하는 고정 높이값 (예: 220~260px 사이로 조정 가능) */
  object-fit: cover; /* 이미지 잘림 없이 균형감 있게 채우기 */
  display: block;
}
@media (max-width: 600px) {
  .samples .thumb img {
    height: 180px;
  }
}


/* ========== FAQ ========== */
.faq{padding:80px 0; background:#fff}
.faq h2{font-size:28px; margin:0 0 24px; font-weight:800}
details{background:#fff; border:1px solid var(--line); border-radius:12px; padding:14px 16px; margin-bottom:12px}
details[open]{box-shadow:var(--shadow-sm)}

/* ========== Contact ========== */
.contact{padding:80px 0; background:var(--bg)}

.contact-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr;  /* 왼쪽:오른쪽 비율 조정 */
  gap:20px;
}

.contact-form{display:grid; gap:12px}

/* 텍스트형 인풋 + textarea에만 적용 */
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#fff;
}

.contact-form button{margin-top:6px}
.contact-box{background:#fff; border:1px solid var(--line); border-radius:14px; padding:16px 20px; box-shadow:var(--shadow-sm)}
.block{display:block; text-align:center; margin-top:10px}

/* ========== Footer ========== */
.site-footer{border-top:1px solid var(--line); background:#fff}
.footer-inner{padding:20px 0; text-align:center; color:var(--muted); font-size:14px}

/* ========== Responsive ========== */
@media (max-width:960px){
  .grid-2{grid-template-columns:1fr}
  .cards-3{grid-template-columns:1fr 1fr}
  .thumbs{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
  .hero h1{font-size:36px}
}
@media (max-width:600px){
  .cards-3,.thumbs{grid-template-columns:1fr}
  .hero-cta a{min-height:44px; padding:12px 18px}
  .hero h1{font-size:30px}
  .why,.service,.features,.samples,.faq,.contact{padding:64px 0}
}

/* ========== Form: Select 공통 복원 ========== */
select{appearance:auto; color:var(--ink); background-color:#fff}

/* ========== Contact: select를 input/textarea와 동일 스타일로 ========== */
.contact-form select{
  width:100%;
  background:#fff;
  color:var(--muted);
  line-height:1.4;
  font-family:inherit;
  font-weight:400;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;

  -webkit-appearance:none;
  appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235B6474' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat:no-repeat;
  background-position:right 12px center;
  background-size:14px 14px;
  padding-right:38px;
}

.contact-form select:hover{border-color:#D6DEE8}
.contact-form select::-ms-expand{display:none}
.contact-form select option[value=""]{ color:var(--muted); }

#formNote{ display:none; margin-top:12px; color:var(--sub); }
.is-success #formNote{ display:block; color:#0a7d22; }
.is-error   #formNote{ display:block; color:#b42318; }

.contact-form label{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:var(--sub);
}
.contact-form input[type="checkbox"]{
  width:auto;
  height:auto;
  accent-color:var(--brand);
}

/* =========================================
   PATCH v2025-11-11  (Safe Visual Upgrade)
   - 헤더/내비 동작 변경 없음
   - 카드/썸네일/테이블/버튼/타이포 시각 업그레이드
========================================= */

/* 1) 타이포/간격 미세 보정 */
:root{
  --heading-tight: -0.2px;
}
h1,h2,h3{ letter-spacing: var(--heading-tight); }
.section-tight{ /* 필요 시 섹션 상단 여백 살짝 줄일 때 사용 */
  padding-top: 56px !important;
}

/* 2) 버튼: 포커스·호버 정교화 */
.btn-primary, .btn-outline{
  will-change: transform, box-shadow;
}
.btn-primary:hover{
  box-shadow: 0 8px 20px rgba(11,92,255,.20);
}
.btn-outline:hover{
  box-shadow: 0 6px 16px rgba(2,6,23,.10);
}
.btn-ghost{
  display:inline-block; padding:10px 14px; border-radius:10px;
  background:transparent; color:var(--sub);
  transition:background .2s ease, color .2s ease, transform .06s ease;
}
.btn-ghost:hover{ background:#F5F7FB; color:var(--ink); transform: translateY(-1px); }

/* 3) 카드 계열: 미세 입체감 + 호버 상승 */
.card,
.feature,
.contact-box,
.table-wrap,
.thumb{
  transition: box-shadow .18s ease, transform .08s ease, border-color .18s ease;
}
.card:hover,
.feature:hover,
.contact-box:hover{
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: #DDE6F0;
}

/* 4) 샘플 썸네일: 이미지 부드러운 줌 & 캡션 토글 강조 */
.samples .thumb img{
  transition: transform .25s ease, filter .25s ease;
}
.samples .thumb:hover img{
  transform: scale(1.02);
  filter: saturate(108%);
}
.samples .thumb figcaption{
  transition: color .2s ease;
}
.samples .thumb:hover figcaption{
  color: var(--ink);
}

/* 5) 서비스 테이블: 지브라 줄무늬 + 헤더 고정 대비 강화 */
.row:nth-child(even){ background: #FAFCFF; }
.row:first-child{
  background: #EAF2FF; /* 기존보다 살짝 선명 */
  border-bottom: 1px solid #D8E6FF;
}
.cell{ line-height: 1.55; }

/* 6) Why/Features 섹션 타이틀 하부 간격 보정 */
.why h2, .features h2, .service h2, .samples h2, .faq h2{
  margin-bottom: 20px; /* 살짝 타이트하게 */
}

/* 8) 푸터 가독성 보정 */
.footer-inner{
  font-size: 13.5px;
  color: #5F6B7A;
}

/* 9) 모바일 미세 보정: 버튼 탭 영역/히어로 타이포 */
@media (max-width:600px){
  .hero h1{ letter-spacing: -0.3px; }
  .hero-cta a{ min-height: 46px; }
}

/* 10) 접근성: 포커스 윤곽선 통일(키보드 탐색 시) */
a:focus-visible, button:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 10px;
}
/* =========================================
   PATCH v2025-11-11 (Design Upgrade – Part 2)
   - FAQ 아이콘/접힘 스타일
   - 히어로 서브카피 가독성
   - 테이블 모바일 스크롤 힌트
   - 가격/CTA 정렬 일관화
========================================= */

/* A. FAQ (details/summary) */
.faq details{
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  padding:14px 16px;
  margin:12px 0;
  transition:box-shadow .18s ease, border-color .18s ease;
}
.faq details[open]{ box-shadow:var(--shadow-sm); border-color:#DDE6F0; }
.faq summary{
  list-style:none; cursor:pointer; font-weight:700; color:var(--ink);
  display:flex; align-items:center; gap:10px; margin:0; outline: none;
}
.faq summary::-webkit-details-marker{ display:none; }
/* + / - 아이콘 */
.faq summary::after{
  content:'+'; margin-left:auto; font-weight:800; color:var(--sub);
  width:24px; height:24px; display:grid; place-items:center;
  border-radius:8px; background:#F2F6FF; border:1px solid #E1EAFE;
}
.faq details[open] summary::after{
  content:'–'; color:#0B5CFF; background:#EAF2FF; border-color:#D4E4FF;
}
.faq .answer{ margin-top:10px; color:var(--sub); line-height:1.65; }


/* C. 테이블 가로스크롤 힌트 */
.table-wrap{
  position:relative; overflow:auto; /* 기존 구조 유지 */
  scrollbar-width: thin;
}
@media (max-width: 900px){
  .table-wrap.is-scrollable::after{
    content:'좌우로 스와이프';
    position: sticky; right: 8px; bottom: 6px; margin-left:auto;
    display:inline-block; padding:4px 8px; font-size:12px;
    color:#3F4A59; background:#F1F5FF; border:1px solid #DDE6FF;
    border-radius:8px; box-shadow:0 6px 14px rgba(2,6,23,.06);
  }
}

/* D. 가격 카드/CTA 정렬(높이 통일 & 버튼 하단 정렬) */
.pricing .cards{ display:grid; gap:16px; }
@media (min-width: 820px){
  .pricing .cards{ grid-template-columns: repeat(3, 1fr); }
}
.pricing .card{
  display:flex; flex-direction:column; justify-content:space-between;
  min-height: 420px; /* 필요 시 380~460px 사이 조절 */
}
.pricing .price-row{
  display:flex; align-items:flex-end; gap:8px; margin: 4px 0 10px;
}
.pricing .price{ font-size:28px; font-weight:800; letter-spacing:-0.3px; }
.pricing .per{ color:var(--sub); font-size:13.5px; margin-bottom:4px; }
.pricing .features{ margin:10px 0 14px; }
.pricing .cta-area{ margin-top:auto; }
.pricing .cta-area .btn-primary{ width:100%; }

/* E. CTA 섹션 미세 정렬(공통) */
.cta .actions{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:center;
}

/* =========================================
   PART 3 (Compat) — Hero/Section Readability
   - 기존 .hero::before(이미 있음)와 충돌 회피
   - .hero::after 얕은 보정 + 텍스트 가독성
   - 섹션 타이틀 하이라이트 바
   - 헤더 고정(A2)와 무관(안전)
========================================= */

/* A. Hero: 얕은 추가 오버레이(기존 ::before 유지) */
.hero{ position: relative; }
.hero::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  /* 하단부만 살짝 더 어둡게 */
  background: linear-gradient(180deg,
    rgba(2,6,23,0) 0%,
    rgba(2,6,23,.08) 55%,
    rgba(2,6,23,.18) 100%);
  z-index: 0; /* BG 위, 텍스트 아래 */
}

/* 텍스트 가독성 보정(중복 안전) */
.hero h1{
  text-shadow: 0 2px 12px rgba(2,6,23,.18);
  position: relative; z-index: 1;
}

/* B. 섹션 타이틀 하이라이트 바(추가 마크업 불필요) */
.why h2, .service h2, .features h2, .samples h2, .pricing h2, .faq h2, .cta h2{
  position: relative; padding-bottom: 10px;
}
.why h2::after, .service h2::after, .features h2::after,
.samples h2::after, .pricing h2::after, .faq h2::after, .cta h2::after{
  content:""; position:absolute; left:0; bottom:0;
  width:72px; height:3px; border-radius:999px;
  background: linear-gradient(90deg, #0B5CFF 0%, #94B6FF 100%);
  opacity:.85;
}

/* C. 카드/썸네일 톤 살짝 통일(이미지 색감 경미 보정) */
.card img, .thumb img{
  image-rendering:auto;
  filter: saturate(1.04) contrast(1.02) brightness(.99);
}
/* =========================================
   PART 4 — Finishing touches (Header fixed 대응)
   - 고정 헤더용 앵커 오프셋
   - 버튼/폼 접근성 & 일관성
   - 섹션 간 리듬/대비 정리
   - 푸터 링크 가독성
========================================= */

/* 2) 버튼 일관성 & 접근성 */
.btn, .btn-primary, .btn-outline, .btn-ghost{
  min-height: 44px; /* 터치 타깃 */
  font-weight: 700;
}
.btn-primary:active,
.btn-outline:active{ transform: translateY(1px); }

/* 3) 폼 포커스 가독성 */
input[type="text"], input[type="email"], input[type="tel"],
select, textarea{
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px 14px;
  transition: box-shadow .18s ease, border-color .18s ease;
}
input:focus, select:focus, textarea:focus{
  border-color:#BFD2FF;
  box-shadow:0 0 0 4px rgba(11,92,255,.12);
  outline:0;
}

/* 4) 섹션 리듬(상하 여백 표준화) */
.section, section{
  padding-top: clamp(56px, 7vw, 84px);
  padding-bottom: clamp(56px, 7vw, 84px);
}
.section.compact{ padding-top:48px; padding-bottom:48px; }

/* 5) 선택적 소프트 배경(원하시는 섹션에 .section.alt 추가) */
.section.alt{ background:#F8FAFE; }

/* 6) 카드 내부 타이포 간격 통일 */
.card h3{ margin:0 0 10px; }
.card p{  margin:0 0 12px; }

/* 7) 푸터 링크 가독성 */
footer a{
  color:#4A6078; text-decoration:none; border-bottom:1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
footer a:hover{
  color:#0B5CFF; border-color:#BFD2FF;
}

/* 8) 추천 요금제 강조(.pricing .card.is-featured 사용 시) */
.pricing .card.is-featured{
  border:1px solid #CFE0FF;
  box-shadow:0 14px 32px rgba(11,92,255,.10);
}
.pricing .card.is-featured .price{ color:#0B5CFF; }

/* 9) 작은 화면 좌우 패딩 보정 */
@media (max-width: 600px){
  .container, .wrap, .inner{ padding-left:14px; padding-right:14px; }
}
/* =========================================
   PART 5A — Icon System (20/24px 규격 통일)
   - img, svg 모두 공통 규격
   - 텍스트 정렬/간격 유틸리티
========================================= */

/* 아이콘 공통 베이스 */
.icon,
.icon img,
.icon svg{
  display:inline-block;
  vertical-align:middle;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

/* 크기 토큰 (필요 시 두 가지만 사용 권장) */
.icon-20{ font-size:20px; line-height:20px; }
.icon-24{ font-size:24px; line-height:24px; }

/* 색상(선택) — 현재 테마 컬러에 맞춤 */
.icon-muted svg{ stroke:#5B6474; fill: none; }
.icon-brand svg{ stroke:#0B5CFF; fill: none; }

/* FAQ 질문 앞 물음표 아이콘만 오렌지색으로 */
.faq summary .icon-muted svg{
  stroke:#FF6B35;
}

/* 아이콘과 텍스트 정렬·간격 유틸 */
.irow{ display:flex; align-items:center; gap:10px; }
.irow-tight{ display:flex; align-items:center; gap:6px; }
.ileft{ display:inline-flex; align-items:center; gap:8px; }
.iright{ display:inline-flex; align-items:center; gap:8px; flex-direction:row-reverse; }

/* 리스트에서 아이콘 정렬이 틀어지는 현상 방지 */
.ul-icons{ list-style:none; margin:0; padding:0; }
.ul-icons li{ display:flex; align-items:flex-start; gap:10px; margin:10px 0; }
.ul-icons .icon{ margin-top:2px; } /* 2줄 이상 텍스트 시 높이 보정 */

/* 섹션별 적용 예: Features/Service 카드에 통일감 */
.feature .icon, .service .icon{ color:#0B5CFF; }
.faq summary .icon{ color:#46566D; } /* FAQ 요약행 왼쪽 아이콘 */
/* =========================================
   PART 5B — Footer Information Layout
   - 2~3열 반응형 그리드
   - 주소/연락처/저작권/정책 링크 구조화
========================================= */

.site-footer{ background:#0F172A; color:#C5D0DE; }
.site-footer a{ color:#CFE0FF; text-decoration:none; border-bottom:1px solid transparent; }
.site-footer a:hover{ border-color:#84B1FF; }

.footer-wrap{
  max-width: var(--container);
  padding: 40px var(--page-pad);
  margin: 0 auto;
}

.footer-grid{
  display:grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px){
  .footer-grid{ grid-template-columns: 1.2fr 1fr 1fr; }
}

.footer-block h4{
  margin:0 0 12px; color:#FFFFFF; font-size:16px; font-weight:800;
}
.footer-block p, .footer-block li, .footer-block a{ font-size:14px; line-height:1.6; }

.footer-list{ list-style:none; padding:0; margin:0; }
.footer-list li{ margin:6px 0; }

.footer-meta{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top: 20px; padding: 16px 0 0;
  display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; align-items:center;
  font-size:13px; color:#A9B6C6;
}

/* 소셜 아이콘 (선택) */
.footer-social{ display:flex; gap:12px; align-items:center; }
.footer-social .icon{ color:#CFE0FF; }
.footer-social a:hover .icon{ color:#FFFFFF; }

/* 주소·연락처 행 아이콘 정렬 */
.footer-row{ display:flex; gap:10px; align-items:flex-start; }
.footer-row .icon{ margin-top:2px; }

/* =========================
   ✅ 체크 아이콘 수직 정렬 패치 v2
   - 글자보다 아래로 내려가던 현상 보정
   - 모든 SVG 아이콘 공통 적용
========================= */

.icon {
  display: inline-flex;
  align-items: center;  /* flex-start → center */
}

.icon svg {
  position: relative;
  top: 0;               /* -0.2em 제거 */
  margin-top: 0;        /* -1px 제거 */
  height: 1em;          /* 폰트 높이와 동일 */
}


/* === 체크 아이콘 정렬 미세 보정 === */

/* =========================
   Footer 미세 정렬 패치 v1
   - 좌측 컬럼 약간 넓게
   - 위쪽 패딩 줄이고, 아랫줄 여유
   - 컬럼 간 간격 조금 넓게
========================= */

/* 전체 푸터 패딩 조정 (위는 살짝 줄이고, 아래는 약간 여유) */
.site-footer .footer-wrap{
  padding: 32px var(--page-pad) 24px;
}

/* 컬럼 간 간격·비율 조정 */
.site-footer .footer-grid{
  gap: 24px;
}

/* 데스크톱에서 컬럼 비율: 왼쪽 소개를 조금 더 넓게 */
@media (min-width: 720px){
  .site-footer .footer-grid{
    grid-template-columns: 1.5fr 1fr 1.2fr;
  }
}

/* 맨 아랫줄(© …)과 본문 사이 여백 살짝 늘리기 */
.site-footer .footer-meta{
  margin-top: 24px;
}
/* =====================================
   Footer 미세 조정 패치 v2 (Compact)
   - 전체 위/아래 패딩 더 압축
   - 컬럼 간 간격도 줄임
   - © 저작권 줄과 본문 간격 축소
===================================== */

/* 전체 패딩 축소 */
.site-footer .footer-wrap{
  padding: 24px var(--page-pad) 18px; /* 기존 32/24 → 24/18로 축소 */
}

/* 컬럼 간 간격 줄이기 */
.site-footer .footer-grid{
  gap: 16px; /* 기존 24px → 16px */
}

/* 데스크톱 컬럼 비율 살짝 더 조여서 전체가 가까워 보이게 */
@media (min-width: 720px){
  .site-footer .footer-grid{
    grid-template-columns: 1.4fr 1fr 1.1fr; /* 기존보다 전체 폭 조임 */
  }
}

/* 저작권 줄과 본문 사이 거리 더 축소 */
.site-footer .footer-meta{
  margin-top: 16px; /* 기존 24px → 16px */
}
/* ============================
   Mobile Tuning (≤ 768px)
   ============================ */
@media (max-width: 768px) {

  /* 1) 히어로 타이틀 & 버튼 크기 (최종) */
  .hero h1,
  .hero-title,
  h1.hero-title {
    font-size: 1.6rem !important;   /* 최종값 */
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .hero-cta a,
  .hero .btn-primary,
  .hero .btn-outline,
  .hero .btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.9rem;
    min-height: 44px;
  }

  .hero-buttons {
    gap: 6px;
  }

  /* 2) 섹션 제목(h2) 크기 & 여백 */
  h2,
  .section-title {
    font-size: 1.25rem;     /* 약 20px */
    margin-top: 2rem;
    margin-bottom: 1.25rem;
  }

  /* 3) 카드 내부 텍스트 */
  .card h3 {
    font-size: 1.1rem;      /* 약 17~18px */
  }

  .card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* 4) 가격 비교 테이블 줄간 & 패딩 */
  .pricing-table,
  table {
    font-size: 0.9rem;      /* 약 14~15px */
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.6rem 0.35rem;
    line-height: 1.45;
  }

  table th,
  table td {
    padding: 10px 6px;      /* 최종 padding */
    line-height: 1.45;
  }

  /* 5) 문의 폼 입력창 간격 정리 */
  .contact-form .form-row,
  .contact-form .form-group,
  form .form-row,
  form .form-group {
    margin-bottom: 0.9rem;  /* PC보다 살짝 좁게 */
  }

  /* 6) 페이지 좌우 여백 살짝 줄이기 */
  .container,
  .section-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  /* 7) Pricing 모바일 카드 간격/가독성 */
  .pricing-cards {
    margin-top: 12px;        /* 섹션 제목과 카드 간 거리 살짝 줄이기 */
  }

  .pricing-card {
    padding: 14px 14px;      /* 상하/좌우 여백 균형 있게 약간 타이트하게 */
  }

  .pricing-card h3 {
    font-size: 1.05rem;      /* PC보다 살짝만 작게, 하지만 강조는 유지 */
    margin-bottom: 4px;      /* 제목 아래 간격 정리 */
  }

  .pricing-card .tagline {
    margin-bottom: 6px;      /* 태그라인 아래 간격 살짝 줄이기 */
  }


}

/* === Hero Subtitle Readability Boost (부제 가독성 강화 – 최종 통합 버전) === */
/* === Hero Subtitle – 완전 투명 + 얇은 텍스트 그림자 === */
.hero .sub {
  position: relative;
  z-index: 1;

  display: inline-block;
  max-width: 720px;
  margin: 10px auto 0;

  padding: 0; /* 배경 제거하므로 padding 제거 */
  background: none; /* 배경 완전 제거 */
  border-radius: 0;

  color: #ffffff !important; /* 영상 위에서 잘 보이도록 유지 */
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.68;

  backdrop-filter: none;
  text-shadow: 0 2px 6px rgba(0,0,0,0.45); /* 얕고 자연스러운 그림자 */
}


/* 모바일에서 좌우 여백만 살짝 정리 */
@media (max-width: 600px) {
  .hero .sub {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ===========================
   Pricing – 모바일 카드 레이아웃 (통일 버전)
   =========================== */

/* 기본은 PC 기준: 카드 숨김 */
.pricing-cards {
  display: none;
}

/* 카드 공통 스타일 (WHY/Features 카드와 톤 통일) */
.pricing-card {
  position: relative;
  border-radius: 16px;               /* Features 카드와 맞춤 */
  padding: 16px 18px 18px;
  background: #ffffff;               /* 그라데이션 제거 → 흰 카드 */
  box-shadow: var(--shadow-sm);      /* 카드 계열과 동일 계열 섀도우 */
  border: 1px solid var(--line);     /* 공통 라인 컬러 */
  overflow: hidden;
}

/* 카드 사이 간격 */
.pricing-card + .pricing-card {
  margin-top: 16px;
}

/* 첫 번째 카드에 "추천" 배지 표시 (강조는 유지) */
.pricing-card:nth-child(1)::after {
  content: "추천";
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #0B5CFF;
  background: #EAF2FF;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.16);
}

/* 내부 타이틀/텍스트 */
.pricing-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 4px 0 4px;
  color: #0f172a;
}

.pricing-card .tagline {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 10px;
}

/* 리스트 */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card li {
  font-size: 0.9rem;
  line-height: 1.55;
  padding-top: 6px;
  border-top: 1px solid #eef2ff;
  margin-top: 6px;
}

.pricing-card li:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.pricing-card strong {
  font-weight: 600;
  color: #0B5CFF;
}

/* 모바일(가로폭 768px 이하)에서 전환 */
@media (max-width: 768px) {
  .service {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .service h2 {
    text-align: left;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .service .table-wrap {
    display: none;          /* 테이블 숨김 */
  }

  .pricing-cards {
    display: block;         /* 카드 표시 */
    margin-top: 12px;
  }

  .pricing-card {
    padding: 16px 16px 18px;
  }
}


/* === Pricing CTA: 오른쪽 버튼 가독성 업그레이드 === */
.hero-cta .btn-outline {
  border-color: #d0d7e2 !important;  /* 은은한 회색 테두리 */
  background: #ffffff !important;    /* 흰 배경 유지 */
  color: #1f2937 !important;         /* 진한 글자색(거의 검정) */
}

/* 터치/호버 시 살짝 강조 */
.hero-cta .btn-outline:hover {
  background: #f3f6fb !important;    /* 아주 옅은 파란 톤 회색 */
  border-color: #b8c2d0 !important;
  color: #0B5CFF !important;         /* 브랜드 블루로 텍스트 강조 */
}
/* =========================================
   Global Text Scale (PC + Mobile 공통)
   - 본문: 15px / line-height 1.6
   - 보조 설명: 13.5px
   - 가격/옵션/FAQ/문의/샘플 등 전역 통일
========================================= */

/* 1) 본문 텍스트 통합 (주요 내용용) */
.why .card p,
.service .cell,
.features .feature p,
.samples .thumb figcaption,
.pricing-cards .pricing-card .tagline,
.pricing-cards .pricing-card li,
.faq .answer,
.faq details p,
.contact .contact-grid p,
.contact .contact-box p {
  font-size: 15px;
  line-height: 1.6;
}

/* 2) 작은 글자(보조 설명/노트/푸터 등) 통합 */
.note,
.contact-form label,
.site-footer .footer-block p,
.site-footer .footer-block li,
.site-footer .footer-meta {
  font-size: 13.5px;
  line-height: 1.5;
}
/* a태그 버튼 흰색 글씨 강제 적용 */
a.btn-primary,
.hero-cta a.btn-primary {
  color: #fff !important;
}
/* =========================================
   Mobile Nav – Sleek Upgrade v1
   - 햄버거 메뉴 패널/딤/아이템 미세 업그레이드
   - JS 수정 없이 디자인만 개선
========================================= */
@media (max-width: 960px) {

  /* 1) 딤 배경: 살짝 더 부드럽게 + 약한 블러 */
  .nav-dim {
    background: rgba(15, 23, 42, 0.40);   /* 너무 어둡지 않게 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  /* 2) 햄버거 메뉴 패널(오른쪽 카드 느낌) */
  #site-nav.nav {
    width: min(280px, 70vw);             /* 조금 더 슬림하게 */
    padding: 12px 14px 16px;
    gap: 4px;

    border-radius: 20px;                 /* 모서리 살짝 더 둥글게 */
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.55);

    /* 살짝 오른쪽/위에서 미끄러지듯 등장 */
    transform: translateX(24px) translateY(-6px);
  }

  #site-nav.nav.is-open {
    transform: translateX(0) translateY(0);
  }

  /* 3) 메뉴 아이템: 알약( pill ) 모양 + 부드러운 hover */
  #site-nav.nav a {
    padding: 11px 14px;
    margin: 1px 0;
    border-radius: 999px;                /* pill 모양 */
    font-size: 15px;
  }

  #site-nav.nav a:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #FFFFFF;
    transform: translateX(4px);          /* 살짝 오른쪽으로 밀리는 느낌 */
  }

  /* 4) 언어 토글(KR / EN)만 살짝 위쪽에 여백 */
  #site-nav.nav a:nth-last-child(2),
  #site-nav.nav a:nth-last-child(1) {
    margin-top: 4px;
  }
}
