/* ============================================================
   넥스트뱅크 — 다크 프리미엄 핀테크 디자인 시스템
   메인 컬러 #396bff · Pretendard · 글래스모피즘 · 네온 글로우
   ============================================================ */

/* Pretendard 가변 폰트 — 직접 @font-face 로 font-display 제어.
   optional: 캐시된 이후엔 대체폰트 깜빡임(FOUT) 없이 바로 적용 */
@font-face {
  font-family: "Pretendard";
  font-weight: 45 920;
  font-style: normal;
  font-display: optional;
  src: url("https://cdn.jsdelivr.net/npm/pretendard@1.3.9/dist/web/variable/woff2/PretendardVariable.woff2") format("woff2-variations");
}

:root {
  --bg: #06080f;
  --bg-2: #0a0e1b;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --surface-3: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --ink: #eef1f8;
  --ink-2: #c7cfe0;
  --muted: #8a93a9;
  --brand: #396bff;
  --brand-2: #74a0ff;
  --brand-ink: #b4c8ff;
  --glow: rgba(57, 107, 255, 0.45);
  --radius: 20px;
  --radius-lg: 26px;
  --container: 1200px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 20px 60px rgba(57, 107, 255, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* 고정 헤더 높이만큼 앵커 이동 오프셋 — 섹션이 헤더에 가려지지 않게 */
  scroll-padding-top: 92px;
  scrollbar-color: rgba(116, 160, 255, 0.35) transparent;
}

/* 커스텀 다크 스크롤바 */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--bg);
  border-radius: 999px;
  background: rgba(120, 140, 180, 0.32);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(116, 160, 255, 0.5);
}

/* 상단 스크롤 진행바 (JS 로 생성) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 3px;
  transform: scaleX(var(--p, 0));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 12px rgba(57, 107, 255, 0.7);
  pointer-events: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Pretendard", "Plus Jakarta Sans", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  letter-spacing: -0.01em;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

/* 전역 앰비언트 글로우 — 어두운 배경에 은은한 빛 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 12% -5%, rgba(57, 107, 255, 0.16), transparent 60%),
    radial-gradient(800px 600px at 100% 8%, rgba(99, 137, 255, 0.1), transparent 55%),
    radial-gradient(1000px 700px at 50% 110%, rgba(57, 107, 255, 0.1), transparent 60%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 3px;
}

::selection {
  background: rgba(57, 107, 255, 0.4);
  color: #fff;
}

.container {
  width: min(100% - 44px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 124px 0;
}

/* ── 타이포 ── */
h1, h2, h3, p {
  margin-top: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--brand-ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-2));
  content: "";
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: 44px;
}

/* 강조 그라데이션 텍스트 */
.text-grad {
  background: linear-gradient(105deg, #ffffff 0%, var(--brand-2) 55%, var(--brand) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* 의도적 줄바꿈 — 데스크탑에서만 */
.brk {
  display: inline;
}

@media (max-width: 600px) {
  .brk {
    display: none;
  }
}

/* ── 버튼 ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.btn-brand,
.btn-form {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand) 0%, #4f7bff 100%);
  color: #fff;
  box-shadow: 0 14px 36px rgba(57, 107, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* hover 시 빛이 스쳐 지나가는 샤인 스윕 */
.btn-primary::after,
.btn-brand::after,
.btn-form::after,
.nav-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -160%;
  width: 55%;
  height: 100%;
  transform: skewX(-22deg);
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  pointer-events: none;
}

.btn-primary:hover::after,
.btn-brand:hover::after,
.btn-form:hover::after,
.nav-cta:hover::after {
  animation: btnShine 0.85s ease;
}

@keyframes btnShine {
  to { left: 160%; }
}

.nav-cta {
  position: relative;
  overflow: hidden;
}

.btn-primary:hover,
.btn-brand:hover,
.btn-form:hover {
  box-shadow: 0 20px 52px rgba(57, 107, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-secondary {
  background: var(--surface-2);
  border-color: var(--line-2);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  background: var(--surface-3);
  border-color: rgba(116, 160, 255, 0.5);
}

/* ============================================================
   헤더 / 내비게이션
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 11, 22, 0.72);
  border-bottom-color: var(--line);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.brand img {
  width: 150px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink-2);
  font-weight: 600;
  font-size: 0.96rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover {
  background: var(--surface-2);
  color: var(--ink);
}

.nav-menu .nav-cta {
  margin-left: 8px;
  background: linear-gradient(135deg, var(--brand), #4f7bff);
  color: #fff;
  box-shadow: 0 10px 26px rgba(57, 107, 255, 0.4);
}

.nav-menu .nav-cta:hover {
  background: linear-gradient(135deg, var(--brand), #4f7bff);
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-2);
  border-radius: 13px;
  background: var(--surface-2);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   히어로 (index)
   ============================================================ */
.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
  color: var(--ink);
  text-align: center;
}

/* 은은한 배경 사진 — 어둡게 깔아 텍스트를 방해하지 않게 */
.hero-photo {
  position: absolute;
  inset: -24px;
  z-index: 0;
  background: url("../images/hero-bg.webp") center/cover no-repeat;
  opacity: 0.15;
  filter: grayscale(0.3) brightness(0.68) contrast(1.05);
  pointer-events: none;
}

/* 확 퍼지는 글로우 — 가운데 밝고 바깥은 어둠으로 사라짐 */
.hero-burst {
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 0;
  width: 150vmax;
  height: 150vmax;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  background: radial-gradient(circle at 50% 50%,
    rgba(150, 184, 255, 0.85) 0%,
    rgba(57, 107, 255, 0.7) 11%,
    rgba(45, 80, 200, 0.4) 24%,
    rgba(24, 40, 110, 0.16) 40%,
    transparent 60%);
  filter: blur(6px);
}

body.is-loaded .hero-burst {
  animation: heroBurst 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroBurst {
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* 미세 격자 */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 44%, #000 0%, #000 42%, transparent 82%);
  -webkit-mask-image: radial-gradient(circle at 50% 44%, #000 0%, #000 42%, transparent 82%);
}

/* 앰비언트 빛망울 */
.hero-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-orb-1 {
  top: -140px;
  left: -90px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(57, 107, 255, 0.55), transparent 70%);
}

.hero-orb-2 {
  right: -130px;
  bottom: -150px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(116, 160, 255, 0.45), transparent 70%);
}

/* 가장자리 비네팅 */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 80% at 50% 44%, transparent 40%, rgba(3, 5, 12, 0.7) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 150px 0 96px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 18px 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--surface-2);
  backdrop-filter: blur(12px);
  color: var(--ink-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(116, 160, 255, 0.22), 0 0 12px var(--brand-2);
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(116, 160, 255, 0.22), 0 0 12px var(--brand-2); }
  50% { box-shadow: 0 0 0 7px rgba(116, 160, 255, 0.06), 0 0 6px var(--brand-2); }
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 7.4vw, 6.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 0 auto 36px;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}

.hero-stats span {
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  backdrop-filter: blur(12px);
  color: var(--ink-2);
}

.hero-stats strong {
  color: #fff;
}

/* 스크롤 인디케이터 */
.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: start center;
  width: 26px;
  height: 42px;
  padding-top: 7px;
  border: 2px solid var(--line-2);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero-scroll span {
  width: 4px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand-2);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ============================================================
   글래스 카드 공통 + 가치
   ============================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.value-card,
.feature-card,
.svc-card,
.svc-why-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.value-card {
  padding: 34px;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-2), transparent);
  opacity: 0.5;
}

.value-card:hover,
.feature-card:hover,
.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(116, 160, 255, 0.4);
  background: var(--surface-2);
  box-shadow: var(--shadow), 0 0 0 1px rgba(57, 107, 255, 0.15);
}

.value-card span {
  display: block;
  margin-bottom: 30px;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.value-card h3 {
  margin-bottom: 12px;
  color: #fff;
}

.value-card p,
.feature-card p,
.about-copy p,
.service-copy p,
.partners-head p,
.svc-card p {
  color: var(--muted);
}

/* ============================================================
   회사 소개
   ============================================================ */
.about-grid,
.service-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 60px;
}

.about-copy h2,
.service-copy h2 {
  color: #fff;
}

.about-copy p,
.service-copy p {
  font-size: 1.1rem;
}

.about-media,
.service-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-media::after,
.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  border-radius: inherit;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-visual {
  background: var(--surface);
}

.service-visual img {
  width: 100%;
}

/* ============================================================
   서비스 (index)
   ============================================================ */
.service-copy .btn {
  margin-top: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.feature-card {
  padding: 28px;
}

.feature-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: 15px;
  background: rgba(57, 107, 255, 0.12);
  border: 1px solid rgba(57, 107, 255, 0.22);
  object-fit: contain;
}

.feature-card h3 {
  margin-bottom: 8px;
  color: #fff;
}

/* ============================================================
   파트너
   ============================================================ */
.partners-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
}

.partners-head h2 {
  color: #fff;
}

.partners-head > strong {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partners-head > strong span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  -webkit-text-fill-color: var(--muted);
}

/* 파트너 그룹 라벨 */
.partner-group + .partner-group {
  margin-top: 32px;
}

.partner-group-label {
  display: inline-block;
  margin: 0 0 16px;
  padding: 5px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--brand-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* 전체 로고를 한눈에 — 정적 그리드 */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.partner-cell {
  display: grid;
  place-items: center;
  height: 104px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(57, 107, 255, 0.28);
}

.partner-cell img {
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
}

/* ============================================================
   문의 (CTA + 폼)
   ============================================================ */
.contact {
  position: relative;
  overflow: hidden;
  padding: 124px 0;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(700px 460px at 82% 0%, rgba(57, 107, 255, 0.22), transparent 60%),
    radial-gradient(600px 460px at 0% 100%, rgba(116, 160, 255, 0.12), transparent 55%);
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy .eyebrow,
.contact-copy > p {
  color: var(--ink-2);
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-cards a,
.contact-cards span {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  backdrop-filter: blur(12px);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-cards a:hover {
  border-color: rgba(116, 160, 255, 0.5);
  background: var(--surface-2);
}

.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--ink);
}

.contact-form span {
  font-size: 0.9rem;
  color: var(--ink-2);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line-2);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #5f6982;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(57, 107, 255, 0.2);
}

.btn-form {
  width: 100%;
}

.form-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--brand-2);
  font-weight: 600;
}

/* ============================================================
   푸터
   ============================================================ */
.footer {
  padding: 64px 0 56px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 22px;
}

.footer-info {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.9;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

/* 메인 메뉴 — 알약 버튼 */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-nav a {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-nav a:hover {
  color: #fff;
  border-color: var(--line-2);
  background: var(--surface);
}

/* 법적 고지 — 구분선 아래 작은 텍스트 링크 */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 0;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.footer-legal a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--brand-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal a:not(:last-child)::after {
  content: "·";
  margin: 0 11px;
  color: var(--line-2);
  font-weight: 400;
}

/* ============================================================
   스크롤 인 등장
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   매장비서 소개 페이지 (maejangbiseo.html)
   ============================================================ */
.svc-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 172px 0 128px;
  text-align: center;
  background: var(--bg);
  color: var(--ink);
}

.svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(780px 520px at 50% -8%, rgba(57, 107, 255, 0.35), transparent 60%),
    radial-gradient(600px 500px at 88% 12%, rgba(116, 160, 255, 0.16), transparent 55%);
}

.svc-hero .container {
  position: relative;
  z-index: 2;
}

.svc-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #fff;
}

.svc-hero-sub {
  width: min(660px, 100%);
  margin: 0 auto 34px;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
}

/* 다운로드 배지 */
.svc-downloads {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.svc-dl-badge {
  display: inline-flex;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-dl-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.6);
}

.svc-dl-badge svg {
  display: block;
  height: 54px;
  width: auto;
}

/* 히어로 미디어 */
.svc-hero-media {
  position: relative;
  z-index: 2;
  width: min(940px, 100%);
  margin: 50px auto 0;
  aspect-ratio: 16 / 8;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 80px rgba(57, 107, 255, 0.2);
}

.svc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 통계 스트립 */
.svc-stats {
  position: relative;
  z-index: 3;
}

.svc-stats .container {
  margin-top: -66px;
}

.svc-stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.svc-stat {
  padding: 34px 20px;
  text-align: center;
  background: #0b1020;
}

.svc-stat b {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.svc-stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

/* 연동 로고 스트립 */
.svc-logos {
  padding: 70px 0 0;
}

.svc-logos-head {
  margin-bottom: 26px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 1rem;
}

.svc-logos-head b {
  color: var(--ink);
}

.svc-logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.svc-logo-chip {
  display: grid;
  place-items: center;
  height: 64px;
  min-width: 106px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
}

.svc-logo-chip img {
  max-height: 30px;
  max-width: 94px;
  object-fit: contain;
}

/* 기능 쇼케이스 */
.svc-show {
  padding: 110px 0;
}

.svc-show-rows {
  display: grid;
  gap: 76px;
  margin-top: 44px;
}

.svc-show-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.svc-show-row.flip .svc-show-media {
  order: 2;
}

.svc-show-media {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.svc-show-media img {
  width: 100%;
  display: block;
}

.svc-show-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #fff;
}

.svc-show-copy h3 em {
  font-style: normal;
  color: var(--brand-2);
}

.svc-show-copy > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.svc-show-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.svc-show-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink-2);
}

.svc-show-copy li svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--brand-2);
}

/* ── 쇼케이스 CSS 목업 ── */
.svc-show-media.mock {
  background: linear-gradient(180deg, #0d1426, #0a0f1e);
}

.svc-mock {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  min-height: 320px;
  padding: 30px;
  background: radial-gradient(130% 130% at 50% 0%, rgba(57, 107, 255, 0.14), transparent 60%);
}

.mk-line {
  height: 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.mk-line.brand {
  background: rgba(116, 160, 255, 0.45);
}

.mk-line.w90 { width: 90%; }
.mk-line.w80 { width: 80%; }
.mk-line.w70 { width: 70%; }
.mk-line.w60 { width: 60%; }
.mk-line.w50 { width: 50%; }

/* 1) 리뷰 목업 */
.mk-review {
  justify-content: center;
}

.mk-rv-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-2);
}

.mk-ava {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}

.mk-ava.n { background: #19c37d; }
.mk-ava.g { background: #ea4335; }

.mk-rv-body {
  flex: 1;
  display: grid;
  gap: 7px;
}

.mk-stars {
  color: #ffc24b;
  font-size: 0.82rem;
  letter-spacing: 2px;
}

.mk-reply {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-left: 34px;
}

.mk-ai {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  background: linear-gradient(135deg, var(--brand), #4f7bff);
  box-shadow: 0 6px 16px rgba(57, 107, 255, 0.5);
}

.mk-bubble {
  flex: 1;
  display: grid;
  gap: 7px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(57, 107, 255, 0.14);
  border: 1px solid rgba(57, 107, 255, 0.3);
}

/* 2) 차트 목업 */
.mk-chart {
  justify-content: center;
}

.mk-chart-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}

.mk-chart-head i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 10px var(--brand-2);
}

.mk-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 210px;
  padding-top: 12px;
}

.mk-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--brand-2), rgba(57, 107, 255, 0.25));
}

.mk-bars span.peak {
  background: linear-gradient(180deg, #9cbcff, var(--brand));
  box-shadow: 0 0 24px rgba(57, 107, 255, 0.6);
}

.mk-axis {
  height: 1px;
  background: var(--line);
}

/* 3) 랭킹 목업 */
.mk-rank {
  gap: 13px;
  justify-content: center;
}

.mk-rk {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mk-rk-no {
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--surface-3);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.85rem;
}

.mk-rk-no.top {
  background: linear-gradient(135deg, var(--brand), #4f7bff);
  color: #fff;
  box-shadow: 0 6px 16px rgba(57, 107, 255, 0.5);
}

.mk-rk-name {
  flex: none;
  width: 78px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--ink-2);
  font-weight: 700;
  font-size: 0.9rem;
}

.mk-rk-track {
  flex: 1;
  height: 12px;
  border-radius: 7px;
  background: var(--surface-3);
  overflow: hidden;
}

.mk-rk-fill {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: 7px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

/* ── 8개 서비스 카드 ── */
.svc-deck {
  padding: 110px 0;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.svc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.svc-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(57, 107, 255, 0.14);
  border: 1px solid rgba(57, 107, 255, 0.25);
  color: var(--brand-2);
}

.svc-icon svg {
  width: 28px;
  height: 28px;
}

.svc-num {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.12);
}

.svc-card .svc-eyebrow {
  color: var(--brand-ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.svc-card h3 {
  margin: 8px 0 10px;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
}

.svc-card h3 em {
  font-style: normal;
  color: var(--brand-2);
}

.svc-card > p {
  margin: 0 0 20px;
}

.svc-feats {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.svc-feats li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-2);
}

.svc-feats li svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--brand-2);
}

/* ── 왜 매장비서 ── */
.svc-why {
  padding: 110px 0;
  background: var(--bg-2);
}

.svc-why-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  margin-top: 44px;
  align-items: stretch;
}

.svc-why-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-height: 360px;
}

.svc-why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-why-cards {
  display: grid;
  gap: 22px;
}

.svc-why-card {
  padding: 38px;
}

.svc-why-card .svc-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.svc-why-card .svc-icon svg {
  width: 32px;
  height: 32px;
}

.svc-why-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.svc-why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.svc-why-card strong {
  color: var(--brand-2);
}

/* ── 서비스 페이지 CTA ── */
.svc-cta {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  text-align: center;
}

.svc-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(760px 460px at 50% -10%, rgba(57, 107, 255, 0.3), transparent 60%),
    radial-gradient(600px 460px at 0% 110%, rgba(116, 160, 255, 0.12), transparent 55%);
}

.svc-cta h2 {
  margin-bottom: 16px;
  color: #fff;
}

.svc-cta > .container > p,
.svc-cta p {
  width: min(560px, 100%);
  margin: 0 auto 30px;
  color: var(--ink-2);
  font-size: 1.1rem;
}

.svc-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ============================================================
   법적 고지 페이지 (privacy.html / terms.html)
   ============================================================ */
.legal {
  padding: 150px 0 110px;
}

.legal .container {
  max-width: 920px;
}

.legal-head {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.legal-head h1 {
  margin: 6px 0 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.legal-updated {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-doc {
  padding: 40px clamp(22px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(16px);
}

.legal-h2 {
  margin: 40px 0 18px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.legal-h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-body {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.96rem;
  line-height: 1.95;
  word-break: keep-all;
}

.legal-body strong {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 600px) {
  .legal {
    padding: 108px 0 76px;
  }

  .legal-doc {
    padding: 24px 18px;
  }
}

/* ============================================================
   섹션 강화 — 인터랙션 & 시각 모티프
   ============================================================ */

/* 커서 추적 스포트라이트 */
[data-spot] {
  position: relative;
}

[data-spot]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%), rgba(116, 160, 255, 0.18), transparent 62%);
}

[data-spot]:hover::after {
  opacity: 1;
}

[data-spot] > * {
  position: relative;
  z-index: 1;
}

/* ── 가치 섹션 — 비대칭 베이지 + 허브 + 연결선 ── */
.value-grid.bento {
  position: relative;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.value-grid.bento .value-card {
  z-index: 1;
}

.value-card.vc-hub {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vc-badge {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 13px;
  border: 1px solid rgba(57, 107, 255, 0.3);
  border-radius: 999px;
  background: rgba(57, 107, 255, 0.12);
  color: var(--brand-2);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.vc-hub h3 {
  font-size: 1.85rem;
  color: #fff;
}

.vc-hub p {
  font-size: 1.05rem;
}

.vc-hub-glow {
  position: absolute;
  inset: auto -30% -45% -30%;
  height: 75%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 100%, rgba(57, 107, 255, 0.4), transparent 70%);
  filter: blur(34px);
}

/* 연결선 SVG */
.value-links {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.value-links .vl {
  fill: none;
  stroke: rgba(116, 160, 255, 0.65);
  stroke-width: 0.5;
  stroke-linecap: round;
  stroke-dasharray: 3 5;
  filter: drop-shadow(0 0 2px rgba(116, 160, 255, 0.7));
  animation: vlflow 1.3s linear infinite;
}

.value-links .vl-node {
  fill: #9cbcff;
  filter: drop-shadow(0 0 4px rgba(116, 160, 255, 0.9));
  animation: vlpulse 1.8s ease-in-out infinite;
}

@keyframes vlflow {
  to { stroke-dashoffset: -8; }
}

@keyframes vlpulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ── 서비스 기능 카드 — SVG 글로우 아이콘 + 악센트 ── */
.feature-card {
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--fc, var(--brand-2));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover::after {
  opacity: 0.9;
}

.feature-card .f-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: rgba(57, 107, 255, 0.12);
  border: 1px solid rgba(57, 107, 255, 0.25);
  color: var(--brand-2);
}

.feature-card .f-icon svg {
  width: 28px;
  height: 28px;
}

.fc-amber { --fc: #f0a94e; }
.fc-blue { --fc: var(--brand-2); }
.fc-green { --fc: #3ddc84; }
.fc-violet { --fc: #b98cff; }

.fc-amber .f-icon { background: rgba(224, 140, 42, 0.14); border-color: rgba(224, 140, 42, 0.32); color: #f0a94e; }
.fc-blue .f-icon { background: rgba(57, 107, 255, 0.14); border-color: rgba(57, 107, 255, 0.32); color: var(--brand-2); }
.fc-green .f-icon { background: rgba(22, 162, 73, 0.16); border-color: rgba(22, 162, 73, 0.34); color: #3ddc84; }
.fc-violet .f-icon { background: rgba(124, 58, 237, 0.18); border-color: rgba(124, 58, 237, 0.36); color: #b98cff; }

/* ── 회사소개 — 플로팅 글래스 배지 ── */
.about-visual {
  position: relative;
}

.about-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 13px 17px;
  border: 1px solid var(--line-2);
  border-radius: 15px;
  background: rgba(9, 13, 24, 0.62);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.about-badge strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.about-badge span {
  color: var(--ink-2);
  font-size: 0.8rem;
}

.about-badge.ab-1 {
  top: 24px;
  left: -24px;
  animation: floatY 5s ease-in-out infinite;
}

.about-badge.ab-2 {
  bottom: 28px;
  right: -20px;
  animation: floatY 6.5s ease-in-out infinite reverse;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Why — 플로팅 절감 오브 ── */
.svc-why-photo {
  position: relative;
}

.svc-why-orb {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 15px 19px;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background: rgba(9, 13, 24, 0.55);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  animation: floatY 5.5s ease-in-out infinite;
}

.svc-why-orb strong {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.svc-why-orb span {
  color: var(--ink-2);
  font-size: 0.82rem;
}

/* ============================================================
   반응형
   ============================================================ */
@media (max-width: 1024px) {
  .section,
  .contact {
    padding: 92px 0;
  }

  .about-grid,
  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .svc-grid,
  .svc-show-row,
  .svc-why-layout {
    grid-template-columns: 1fr;
  }

  .svc-show-row {
    gap: 30px;
  }

  .svc-show-row.flip .svc-show-media {
    order: 0;
  }

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

  .svc-why-photo {
    min-height: 240px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .nav {
    min-height: 70px;
  }

  .brand img {
    width: 132px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(8, 11, 22, 0.95);
    backdrop-filter: blur(22px) saturate(150%);
    box-shadow: var(--shadow);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-header.is-open .nav-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    margin-top: 4px;
    justify-content: center;
  }

  h2 {
    font-size: clamp(1.7rem, 7.2vw, 2.4rem);
  }

  .hero-inner {
    padding: 122px 0 70px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .hero-scroll {
    display: none;
  }

  .hero-orb {
    opacity: 0.4;
  }

  .hero-actions,
  .hero-stats,
  .partners-head,
  .footer-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero-stats span {
    width: 100%;
  }

  .section,
  .contact,
  .svc-deck,
  .svc-why,
  .svc-show,
  .svc-cta {
    padding: 76px 0;
  }

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

  .value-card {
    padding: 28px;
  }

  .partners-head {
    align-items: flex-start;
  }

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

  .partner-cell {
    height: 88px;
    padding: 18px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-nav,
  .footer-legal {
    justify-content: flex-start;
  }

  .svc-hero {
    padding: 138px 0 110px;
  }

  .svc-hero-media {
    aspect-ratio: 4 / 3;
    margin-top: 38px;
  }

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

  .svc-why-card {
    padding: 30px;
  }

  .svc-cta-btns .btn {
    width: 100%;
  }

  /* 가치 베이지 → 1열 스택, 연결선 숨김 */
  .value-grid.bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .value-card.vc-hub {
    grid-row: auto;
  }

  .value-links {
    display: none;
  }

  .vc-hub h3 {
    font-size: 1.5rem;
  }

  /* 소개 플로팅 배지 — 화면 안쪽으로 */
  .about-badge.ab-1 {
    top: 14px;
    left: 14px;
  }

  .about-badge.ab-2 {
    bottom: 16px;
    right: 14px;
  }
}

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

  .hero-burst {
    transform: translate(-50%, -50%) scale(1);
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
