/* ══════════════════════════════════════════
   ELUO VOICE 2026 — Scoped Styles
   모든 스타일이 .voice-page 하위로 스코프됨
   글로벌 CSS에 영향 없음
   ══════════════════════════════════════════ */

/* ── Font Face (ELUOFACE, AlanSans, Pretendard, DM Serif Display) ── */
@font-face {
  font-family: 'AlanSans';
  src: url('../font/AlanSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'AlanSans';
  src: url('../font/AlanSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'AlanSans';
  src: url('../font/AlanSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'AlanSans';
  src: url('../font/AlanSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'ELUOFACE';
  src: url('../font/ELUOFACE-Light.otf') format('opentype');
  font-weight: 300;
  font-display: block;
}

@font-face {
  font-family: 'ELUOFACE';
  src: url('../font/ELUOFACE-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'ELUOFACE';
  src: url('../font/ELUOFACE-Medium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'ELUOFACE';
  src: url('../font/ELUOFACE-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css');

/* ── CSS Variables (scoped) ── */
.voice-page {
  /* Colors */
  --vp-color-black: #000;
  --vp-color-text-muted: #666;
  --vp-color-text-light: #888;
  --vp-color-accent: #ffff01;
  --vp-color-navy: #000080;
  --vp-color-bg: #ffffff;
  --vp-color-border: #f0f0f0;

  /* Typography */
  --vp-font-display: 'ELUOFACE', 'DM Serif Display', 'Georgia', serif;
  --vp-font-body: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Noto Sans KR', sans-serif;

  --vp-text-section-title: clamp(28px, 2.5vw, 52px);
  --vp-text-body: clamp(14px, 1.1vw, 22px);
  --vp-text-cta: clamp(16px, 1.4vw, 24px);

  /* Hero */
  --vp-hero-font-size: clamp(80px, 8.3vw, 180px);
  --vp-hero-line-height: 0.75;
  --vp-hero-left-padding: clamp(80px, 11vw, 200px);

  /* Sections */
  --vp-title-body-gap: clamp(40px, 5vh, 110px);

  /* Layout */
  --vp-container-width: min(90vw, 1800px);
  --vp-container-offset: calc((100vw - var(--vp-container-width)) / 2);
  --vp-left-panel-width: calc(var(--vp-container-width) / 2);
  --vp-right-padding-left: max(32px, 3.9vw);
  --vp-right-padding-right: max(40px, 5.5vw);

  /* Transitions */
  --vp-ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset (scoped) ── */
.voice-page *,
.voice-page *::before,
.voice-page *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.voice-page {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: var(--vp-font-body);
  color: var(--vp-color-black);
  background: var(--vp-color-bg);
  min-height: 100vh;
  overflow-x: clip;
  position: relative;
  scrollbar-gutter: stable;
}

@media (max-width: 1023px) {
  .voice-page {
    scrollbar-gutter: auto;
    scrollbar-width: none;
    touch-action: pan-y;
    overscroll-behavior-x: none;
  }
  .voice-page::-webkit-scrollbar {
    display: none;
  }
}

.voice-page a {
  color: inherit;
  text-decoration: none;
}

.voice-page ul,
.voice-page ol {
  list-style: none;
}

.voice-page button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

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

/* ══════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════ */

/* Bottom gradient */
.voice-page .vp-bottom-gradient {
  display: none;
}

/* Two-column layout */
.voice-page .vp-left-panel {
  position: fixed;
  top: 0;
  left: var(--vp-container-offset);
  width: var(--vp-left-panel-width);
  height: 100vh;
  z-index: 10;
}

.voice-page .vp-right-panel {
  margin-left: calc(var(--vp-container-offset) + var(--vp-left-panel-width));
  width: calc(100vw - var(--vp-container-offset) - var(--vp-left-panel-width));
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  opacity: 0;
  scrollbar-width: none;
}

.voice-page .vp-right-panel.is-ready {
  opacity: 1;
}

.voice-page .vp-right-panel::-webkit-scrollbar {
  display: none;
}

/* Sections */
.voice-page .vp-section {
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: var(--vp-content-start-y, 16vh) calc(var(--vp-container-offset) + var(--vp-right-padding-right)) clamp(40px, 4vh, 80px) var(--vp-right-padding-left);
}

@media (max-width: 1023px) {
  .voice-page .vp-left-panel {
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 70vh;
    max-height: 75vh;
    max-height: 80svh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
  }

  .voice-page .vp-right-panel {
    margin-left: 0;
    width: 100%;
    height: auto;
    overflow-y: visible;
    scroll-snap-type: none;
    opacity: 1;
    transition: none;
  }

  .voice-page .vp-section {
    min-height: 80vh;
    scroll-snap-align: start;
    align-items: center;
    padding: clamp(88px, 12vh, 140px) clamp(24px, 5vw, 56px) clamp(24px, 3vh, 48px);
  }

  .voice-page .vp-section .vp-content {
    max-width: 560px;
    width: 100%;
  }

  .voice-page .vp-section:last-child {
    min-height: 100vh;
    padding-bottom: clamp(100px, 16vh, 200px);
  }

  .voice-page .vp-bottom-gradient {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
    z-index: 5;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@media (max-width: 767px) {
  .voice-page .vp-left-panel {
    min-height: 60vh;
    max-height: 72vh;
    max-height: 78svh;
  }

  .voice-page .vp-section {
    padding: clamp(80px, 11vh, 120px) 20px clamp(20px, 3vh, 40px);
  }

  .voice-page .vp-section .vp-content {
    max-width: none;
  }

  .voice-page .vp-section:last-child {
    min-height: 100vh;
    padding-bottom: clamp(80px, 14vh, 180px);
  }
}

/* ══════════════════════════════════════════
   HEADER (GNB)
   ══════════════════════════════════════════ */
.voice-page .vp-header {
  position: fixed;
  top: 22px;
  left: 22px;
  z-index: 100;
  width: calc(100% - 44px);
  height: 40px;
}

.voice-page .vp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(0%);
}

.voice-page.navigation-active .vp-header-nav {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.voice-page .vp-header-nav.hidden-by-nav {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.voice-page .vp-header-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.voice-page .vp-header-nav.is-hidden {
  transform: translateY(-104px);
  opacity: 0;
}

/* Logo */
.voice-page .vp-header-nav-logo {
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 1;
}

.voice-page .vp-header-nav-logo a {
  display: block;
}

.voice-page .vp-header-nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Nav Menu (desktop only) */
.voice-page .vp-header-nav-menu {
  display: none;
  align-items: center;
  gap: 11.4583vw;
  margin-right: 11.4583vw;
}

.voice-page .vp-header-nav-menu .vp-nav-menu-item {
  color: #000;
  font-family: 'AlanSans', sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  text-decoration: none;
}

.voice-page .vp-header-nav-menu .vp-nav-menu-item:last-child {
  min-width: 61px;
  font-size: 26px;
}

.voice-page .vp-header-nav-menu .vp-nav-menu-item.active {
  font-weight: 600;
}

/* Navigation Toggle (hamburger) */
.voice-page .vp-navigation-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 24px;
  height: auto;
  background: transparent;
  border: none;
  overflow: hidden;
  cursor: pointer;
  z-index: 200;
  padding: 0;
}

.voice-page .vp-navigation-toggle > span,
.voice-page .vp-navigation-toggle::before,
.voice-page .vp-navigation-toggle::after {
  content: '';
  display: block;
  width: 100%;
  border-top: 3px solid #000;
  height: 0;
  transition: all 0.7s;
}

.voice-page .vp-navigation-toggle > span {
  margin: 6px 0;
  text-indent: -999px;
  white-space: nowrap;
}

.voice-page .vp-navigation-toggle.actived > span,
.voice-page .vp-navigation-toggle.actived::before,
.voice-page .vp-navigation-toggle.actived::after {
  border-color: #1e1f23;
}

.voice-page .vp-navigation-toggle.actived::before {
  transform: translateY(9px) rotate(-315deg);
}

.voice-page .vp-navigation-toggle.actived > span {
  opacity: 0;
}

.voice-page .vp-navigation-toggle.actived::after {
  transform: translateY(-9px) rotate(315deg);
}

/* Navigation Drawer (fullscreen) */
.voice-page .vp-navigation {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 190;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.7s ease-in-out;
}

.voice-page .vp-navigation.actived {
  display: flex;
  left: 0;
  transition: all 0.7s ease-in-out;
}

.voice-page .vp-navigation-inner {
  padding-left: 32px;
  padding-top: 10vw;
}

/* Language Switcher */
.voice-page .vp-navigation .vp-language {
  position: absolute;
  top: 22px;
  left: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.voice-page .vp-navigation .vp-language li {
  display: inline-block;
  font-size: 0;
}

.voice-page .vp-navigation .vp-language li:first-child::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 14.5px;
  margin: 0 22px;
  background-color: #bfbfbf;
  vertical-align: middle;
}

.voice-page .vp-navigation .vp-language li a {
  font-weight: 700;
  font-size: 16px;
  color: #bfbfbf;
  text-decoration: none;
}

.voice-page .vp-navigation .vp-language li.on a {
  color: #1e1f23;
}

/* Navigation Main (ELUO/FOLIO/ELIX) */
.voice-page .vp-navigation-main {
  display: flex;
  align-items: center;
  gap: 40px;
  color: #1e1f23;
  font-family: 'AlanSans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12vw;
  list-style: none;
  padding: 0;
}

.voice-page .vp-navigation-main a {
  color: inherit;
  text-decoration: none;
}

/* Navigation Menu (sub menu) */
.voice-page .vp-navigation-menu {
  display: flex;
  flex-direction: column;
  gap: 26px;
  line-height: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.voice-page .vp-navigation-menu a {
  color: hsl(228, 8%, 13%);
  font-size: 32px;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.voice-page .vp-navigation-menu:hover a {
  color: #e0e0e0;
}

.voice-page .vp-navigation-menu a:hover {
  color: #000;
}

/* fadeInUp staggered animation */
.voice-page .vp-navigation.actived .vp-navigation-menu li {
  animation-name: vpFadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.5s;
}

.voice-page .vp-navigation.actived .vp-navigation-menu li:nth-child(2) { animation-delay: 0.6s; }
.voice-page .vp-navigation.actived .vp-navigation-menu li:nth-child(3) { animation-delay: 0.7s; }
.voice-page .vp-navigation.actived .vp-navigation-menu li:nth-child(4) { animation-delay: 0.8s; }

@keyframes vpFadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/* Navigation Links (downloads/SNS) */
.voice-page .vp-navigation-links {
  display: flex;
  flex-direction: column;
  margin-top: 12vw;
  gap: 26px;
}

.voice-page .vp-navigation-links a {
  color: #1e1f23;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  text-decoration: none;
}

.voice-page .vp-navigation-links a:nth-child(1),
.voice-page .vp-navigation-links a:nth-child(2),
.voice-page .vp-navigation-links a:nth-child(3) {
  display: flex;
  align-items: center;
  gap: 8px;
}

.voice-page .vp-navigation-links a:nth-child(1)::after,
.voice-page .vp-navigation-links a:nth-child(2)::after,
.voice-page .vp-navigation-links a:nth-child(3)::after {
  content: '';
  width: 15px;
  height: 13.5px;
  display: inline-block;
  background: url(/ko/images/voice/icon-download.svg) no-repeat center center/contain;
}

/* Drawer open: prevent scroll */
.voice-page.navigation-active {
  overflow: hidden;
}

.voice-page.navigation-active .vp-sticky-title,
.voice-page.navigation-active .vp-hero__cta.is-sticky {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.voice-page .vp-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(14px, 1.8vh, 24px);
  height: 100%;
  padding: 0 clamp(40px, 4.4vw, 100px) clamp(80px, 10vh, 160px) var(--vp-hero-left-padding);
}

.voice-page .vp-hero__title {
  font-family: var(--vp-font-display);
  font-size: clamp(80px, 8.3vw, var(--vp-hero-font-size));
  font-weight: 300;
  line-height: var(--vp-hero-line-height);
  letter-spacing: -1px;
  color: var(--vp-color-black);
  width: clamp(240px, 25vw, 500px);
}

.voice-page .vp-hero__title-line {
  display: block;
}

.voice-page .vp-hero__date {
  font-family: var(--vp-font-body);
  font-size: clamp(16px, 1.3vw, 24px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0;
  color: var(--vp-color-black);
  margin: clamp(16px, 2vh, 32px) 0 0 0;
  text-indent: 0.6em;
}

/* CTA Button */
.voice-page .vp-hero__cta {
  margin-top: clamp(20px, 3vh, 56px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(160px, 12vw, 220px);
  height: clamp(52px, 4.2vw, 72px);
  background: var(--vp-color-accent);
  border-radius: 9999px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

@media (hover: hover) {
  .voice-page .vp-hero__cta-bg {
    position: absolute;
    top: 0;
    left: -15px;
    width: 15px;
    height: 100%;
    background: var(--vp-color-navy);
    transition: all 0.3s ease;
    z-index: 1;
  }

  .voice-page .vp-hero__cta:hover .vp-hero__cta-bg {
    left: 0;
    width: 100%;
    border-radius: 9999px;
  }
}

.voice-page .vp-hero__cta-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  font-family: var(--vp-font-body);
  font-size: var(--vp-text-cta);
  font-weight: 500;
  letter-spacing: -0.6px;
  color: var(--vp-color-navy);
  transition: color 0.3s ease;
}

@media (hover: hover) {
  .voice-page .vp-hero__cta:hover .vp-hero__cta-content {
    color: var(--vp-color-accent);
  }
}

.voice-page .vp-hero__cta-icon {
  width: 20px;
  height: 20px;
  display: block;
  color: var(--vp-color-navy);
  transition: color 0.3s ease;
}

.voice-page .vp-hero__cta:focus-visible {
  outline: 2px solid var(--vp-color-navy);
  outline-offset: 4px;
}

@media (hover: hover) {
  .voice-page .vp-hero__cta:hover .vp-hero__cta-icon {
    color: var(--vp-color-accent);
  }
}

/* ══════════════════════════════════════════
   HERO RESPONSIVE - Tablet
   ══════════════════════════════════════════ */
@media (max-width: 1023px) {
  .voice-page .vp-hero {
    padding: clamp(80px, 12vh, 140px) 40px clamp(48px, 8vh, 100px);
    align-items: center;
    text-align: center;
    justify-content: center;
    flex: 1;
    height: auto;
  }

  .voice-page .vp-hero__title {
    font-size: clamp(64px, 12vw, 96px);
    width: auto;
  }

  .voice-page .vp-hero__date {
    text-indent: 0;
  }

  .voice-page .vp-hero__cta {
    position: relative;
    z-index: 200;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .voice-page .vp-hero__cta.is-fading {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
  }

  .voice-page .vp-hero__cta.is-returning {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .voice-page .vp-hero__cta.is-sticky {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .voice-page .vp-left-panel {
    align-items: center;
  }

  .voice-page .vp-hero {
    max-width: 560px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .voice-page .vp-hero {
    padding: clamp(64px, 10vh, 120px) 20px clamp(36px, 5vh, 72px);
    gap: clamp(24px, 4vh, 56px);
    align-items: center;
    text-align: center;
  }

  .voice-page .vp-hero__title {
    font-size: clamp(64px, 18vw, 84px);
    width: auto;
  }

  .voice-page .vp-hero__cta {
    width: 160px;
    height: 52px;
  }

  .voice-page .vp-hero__cta.is-sticky {
    bottom: 20px;
  }

  .voice-page .vp-hero__cta.is-returning {
    bottom: 20px;
  }

  .voice-page .vp-hero__cta-content {
    font-size: 16px;
  }

  .voice-page .vp-hero__cta-icon {
    width: 16px;
    height: 16px;
  }
}

/* ══════════════════════════════════════════
   STICKY TITLE (Mobile/Tablet)
   ══════════════════════════════════════════ */
.voice-page .vp-sticky-title {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--vp-font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--vp-color-black);
  z-index: 150;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.voice-page .vp-sticky-title.is-visible {
  transform: translateY(0);
}

.voice-page .vp-sticky-title__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--vp-color-border);
}

.voice-page .vp-sticky-title__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--vp-color-black);
  transition: width 0.15s ease-out;
}

@media (max-width: 1023px) {
  .voice-page .vp-sticky-title {
    display: flex;
  }

  .voice-page .vp-hero__title {
    will-change: transform, opacity;
  }
}

/* ══════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════ */
.voice-page .vp-section .vp-content {
  display: flex;
  flex-direction: column;
  gap: var(--vp-title-body-gap);
  align-items: flex-start;
  width: 100%;
  max-width: clamp(480px, 36vw, 720px);
}

.voice-page .vp-section__title {
  font-family: var(--vp-font-body);
  font-size: var(--vp-text-section-title);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.36px;
  color: var(--vp-color-black);
  word-break: keep-all;
  overflow-wrap: break-word;
  width: 100%;
}

.voice-page .vp-section__body {
  font-family: var(--vp-font-body);
  font-size: var(--vp-text-body);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.54px;
  color: var(--vp-color-black);
  word-break: keep-all;
  overflow-wrap: break-word;
  width: 100%;
}

.voice-page .vp-section__body p {
  margin: 0;
}

.voice-page .vp-section__paragraph-group {
  margin-bottom: 1.5em;
}

.voice-page .vp-section__paragraph-group:last-child {
  margin-bottom: 0;
}

.voice-page .vp-section__email-address {
  letter-spacing: 0;
}

.voice-page .vp-section__email-address a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--vp-color-border);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.voice-page .vp-section__email-address a:hover {
  border-color: var(--vp-color-black);
}

.voice-page .vp-section__body strong {
  font-weight: 600;
}

/* Numbered Steps (Section 2) */
.voice-page .vp-section__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vh, 28px);
}

.voice-page .vp-section__steps li {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 22px);
  line-height: 1.6;
}

.voice-page .vp-section__steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: clamp(28px, 2.2vw, 40px);
  height: clamp(28px, 2.2vw, 40px);
  background: var(--vp-color-accent);
  color: var(--vp-color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(12px, 1vw, 17px);
}

.voice-page .vp-section__steps-text {
  min-width: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.voice-page .vp-section__steps-note {
  color: var(--vp-color-text-light);
  font-size: 0.9em;
}

.voice-page .vp-section__steps + .vp-section__paragraph-group {
  margin-top: 40px;
}

/* Activity List (Section 3) */
.voice-page .vp-activity-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  justify-items: center;
  max-width: 80%;
}

.voice-page .vp-activity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.voice-page .vp-activity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 3.3vw, 64px);
  height: clamp(40px, 3.3vw, 64px);
  background: var(--vp-color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.voice-page .vp-activity-icon svg {
  width: clamp(18px, 1.5vw, 30px);
  height: clamp(18px, 1.5vw, 30px);
  color: var(--vp-color-navy);
}

.voice-page .vp-activity-text {
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 400;
  color: var(--vp-color-text-muted);
  letter-spacing: -0.3px;
  line-height: 1.3;
  text-align: center;
}

/* Scroll Progress Indicator */
.voice-page .vp-scroll-progress {
  position: fixed;
  left: calc(var(--vp-container-offset) + var(--vp-left-panel-width) - clamp(40px, 3vw, 80px));
  top: var(--vp-content-center-y, 50%);
  transform: translate(-50%, -50%);
  width: 3px;
  height: clamp(100px, 15vh, 200px);
  background: var(--vp-color-border);
  border-radius: 2px;
  z-index: 100;
  cursor: pointer;
}

.voice-page .vp-scroll-progress:hover {
  width: 5px;
  margin-left: -1px;
}

.voice-page .vp-scroll-progress__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: var(--vp-color-black);
  border-radius: 2px;
  transition: top 0.4s var(--vp-ease-out);
  pointer-events: none;
}

@media (max-width: 1023px) {
  .voice-page .vp-section .vp-content {
    gap: clamp(28px, 4vh, 56px);
  }

  .voice-page .vp-section__title {
    font-size: clamp(24px, 3.6vw, 34px);
  }

  .voice-page .vp-section__body {
    font-size: 16px;
  }

  .voice-page .vp-scroll-progress {
    display: none;
  }

  .voice-page .vp-activity-list {
    gap: 20px;
  }

  .voice-page .vp-activity-icon {
    width: 44px;
    height: 44px;
  }

  .voice-page .vp-activity-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 767px) {
  .voice-page .vp-section .vp-content {
    gap: clamp(20px, 3.5vh, 44px);
  }

  .voice-page .vp-section__title {
    font-size: clamp(20px, 5.5vw, 28px);
    line-height: 1.35;
  }

  .voice-page .vp-section__body {
    font-size: 16px;
    line-height: 1.75;
  }

  .voice-page .vp-section__steps {
    gap: 16px;
  }

  .voice-page .vp-section__steps li {
    gap: 12px;
    align-items: flex-start;
  }

  .voice-page .vp-section__steps li::before {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .voice-page .vp-activity-list {
    gap: 20px 24px;
  }

  .voice-page .vp-activity-item {
    gap: 8px;
  }

  .voice-page .vp-activity-icon {
    width: 40px;
    height: 40px;
  }

  .voice-page .vp-activity-icon svg {
    width: 20px;
    height: 20px;
  }

  .voice-page .vp-activity-text {
    font-size: 13px;
  }
}

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
.voice-page .vp-section__title {
  opacity: 0.15;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.voice-page .vp-section.is-visible .vp-section__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.voice-page .vp-section__body > * {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.voice-page .vp-section.is-visible .vp-section__body > * {
  opacity: 1;
  transform: translateY(0);
}

.voice-page .vp-section.is-visible .vp-section__body > *:nth-child(1) { transition-delay: 0.2s; }
.voice-page .vp-section.is-visible .vp-section__body > *:nth-child(2) { transition-delay: 0.32s; }
.voice-page .vp-section.is-visible .vp-section__body > *:nth-child(3) { transition-delay: 0.44s; }
.voice-page .vp-section.is-visible .vp-section__body > *:nth-child(4) { transition-delay: 0.56s; }
.voice-page .vp-section.is-visible .vp-section__body > *:nth-child(5) { transition-delay: 0.68s; }
.voice-page .vp-section.is-visible .vp-section__body > *:nth-child(6) { transition-delay: 0.80s; }
.voice-page .vp-section.is-visible .vp-section__body > *:nth-child(7) { transition-delay: 0.92s; }

@media (min-width: 1024px) {
  .voice-page .vp-right-panel {
    transition: opacity 0.2s ease;
  }
  .voice-page .vp-right-panel.is-wrap-transitioning {
    opacity: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .voice-page .vp-section__title,
  .voice-page .vp-section__body > *,
  .voice-page .vp-section .vp-content {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .voice-page .vp-right-panel.is-wrap-transitioning {
    transition: none;
  }
}

/* ══════════════════════════════════════════
   NAV RESPONSIVE - Desktop (1024px+)
   ══════════════════════════════════════════ */
@media screen and (min-width: 1024px) {
  .voice-page .vp-header {
    top: 48px;
    left: 48px;
    z-index: 100;
    width: calc(100% - 96px);
    height: 56px;
  }

  .voice-page .vp-header-nav-logo {
    width: 56px;
    height: 56px;
  }

  .voice-page .vp-header-nav-menu {
    display: flex;
  }

  .voice-page .vp-navigation-toggle {
    top: 64px;
    right: 48px;
    width: 33px;
    padding: 0;
  }

  .voice-page .vp-navigation-toggle > span {
    margin: 8px 0;
  }

  .voice-page .vp-navigation-toggle > span,
  .voice-page .vp-navigation-toggle::before,
  .voice-page .vp-navigation-toggle::after {
    border-top-width: 4px;
  }

  .voice-page .vp-navigation-toggle.actived::before {
    transform: translateY(12px) rotate(-315deg);
  }

  .voice-page .vp-navigation-toggle.actived::after {
    transform: translateY(-12px) rotate(315deg);
  }

  .voice-page .vp-navigation-inner {
    padding-left: 202px;
    padding-top: 0;
  }

  .voice-page .vp-navigation .vp-language {
    top: 68px;
    left: auto;
    right: 198px;
  }

  .voice-page .vp-navigation .vp-language li a {
    font-size: 20px;
  }

  .voice-page .vp-navigation-main {
    position: absolute;
    top: 68px;
    left: 202px;
    gap: 120px;
    height: 22px;
    font-size: 22px;
    letter-spacing: 0.66px;
  }

  .voice-page .vp-navigation-menu {
    width: fit-content;
    gap: 36px;
    margin-top: 90px;
  }

  .voice-page .vp-navigation-menu a {
    font-size: 46px;
    font-weight: 800;
  }

  .voice-page .vp-navigation-links {
    flex-direction: row;
    margin-top: 120px;
    gap: 40px;
  }

  .voice-page .vp-navigation-links a {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.3px;
  }

  .voice-page .vp-navigation-links a:nth-child(1)::after,
  .voice-page .vp-navigation-links a:nth-child(2)::after,
  .voice-page .vp-navigation-links a:nth-child(3)::after {
    width: 16.5px;
    height: 14.848px;
  }
}

@media screen and (max-width: 767px) {
  .voice-page .vp-hidden-mobile {
    display: none !important;
  }
}
