/*! Pure Global — wh.css v2.1.0 */
/* Pure Global Wireframe — Design System v2 */
:root {
  --color-primary: #3253FF;
  --color-primary-hover: #2443EA;
  --color-primary-deep: #2443EA;
  --color-secondary: #6D63FF;
  --color-accent: #6DA8FF;
  --color-primary-soft: #EEF1FF;
  --color-primary-glow: #6DA8FF;
  --color-black: #111827;
  --color-gray-900: #1F2937;
  --color-gray-800: #374151;
  --color-gray-700: #4B5563;
  --color-gray-600: #6B7280;
  --color-gray-500: #9CA3AF;
  --color-gray-400: #D1D5DB;
  --color-gray-300: #E5E7EB;
  --color-gray-200: #F3F4F6;
  --color-gray-100: #F8FAFC;
  --color-white: #FFFFFF;
  --color-success: #18C964;
  --font-kr: 'Pretendard', 'Noto Sans KR', sans-serif;
  --font-en: 'Inter', 'Pretendard', sans-serif;
  --container-max: 1440px;
  --container-padding: clamp(20px, 5vw, 64px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
  --shadow-card: 0 20px 60px rgba(50, 83, 255, 0.08);
  --shadow-card-hover: 0 30px 80px rgba(50, 83, 255, 0.12);
  --shadow-button: 0 12px 28px rgba(50, 83, 255, 0.24);
  --shadow-glow: 0 0 40px rgba(109, 99, 255, 0.15);
  --gradient-primary: linear-gradient(90deg, #6D63FF 0%, #3253FF 100%);
  --gradient-glow: linear-gradient(180deg, rgba(109, 99, 255, 0.2), rgba(50, 83, 255, 0));
  --gradient-soft-blue: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 241, 255, 0.65));
  --border-light: 1px solid rgba(50, 83, 255, 0.10);
  --border-card: 1px solid #E5E7EB;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 180ms;
  --duration-base: 280ms;
  --duration-slow: 600ms;
  --header-h: 80px;
  --section-xl: clamp(88px, 12vw, 140px);
  --section-lg: clamp(72px, 10vw, 112px);
  --section-md: clamp(48px, 6vw, 60px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto !important; overscroll-behavior: none; }
html.lenis.lenis-stopped { overflow: hidden; }
html.lenis.lenis-smooth iframe { pointer-events: none; }
body.wh-body {
  margin: 0;
  font-family: var(--font-kr);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray-700);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}
body.wh-body,
body.wh-body * {
  word-break: keep-all;
  overflow-wrap: break-word;
}
body.wh-body pre,
body.wh-body code {
  word-break: break-all;
  overflow-wrap: anywhere;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.wh-body :focus,
.wh-body :focus-visible,
.wh-body *:focus,
.wh-body *:focus-visible {
  outline: none !important;
  outline-offset: 0 !important;
}
.mt-s { margin-top: 12px; }
.mt-m { margin-top: 20px; }
.mt-l { margin-top: 32px; }
.mt-xl { margin-top: 48px; }

.wh-container {
  width: min(var(--container-max), 100% - var(--container-padding) * 2);
  margin-inline: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gray-600);
  flex-shrink: 0;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--eyebrow-glow-color, var(--color-primary));
  --eyebrow-glow-color: var(--color-primary);
  animation: wh-eyebrow-glow 3s ease-in-out infinite;
}
.eyebrow--cyan {
  color: var(--color-primary);
}
.eyebrow--cyan::before {
  --eyebrow-glow-color: var(--color-accent);
  background: var(--color-accent);
}
.eyebrow--violet {
  color: var(--color-secondary);
}
.eyebrow--violet::before {
  --eyebrow-glow-color: var(--color-secondary);
  background: var(--color-secondary);
}
.eyebrow--green {
  color: #0F9F4F;
}
.eyebrow--green::before {
  --eyebrow-glow-color: var(--color-success);
  background: var(--color-success);
}
@keyframes wh-eyebrow-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 4px 0.5px color-mix(in srgb, var(--eyebrow-glow-color) 45%, transparent);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 10px 2px color-mix(in srgb, var(--eyebrow-glow-color) 55%, transparent);
    opacity: 0.9;
  }
}
.display-xl {
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-black);
}
.display-lg {
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-black);
}
.heading-xl {
  font-size: clamp(30px, 3.5vw, 40px);
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-black);
}
.heading-lg {
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-black);
}
.heading-md {
  font-size: clamp(21px, 2vw, 24px);
  line-height: 1.35;
  font-weight: 700;
  color: var(--color-black);
}
.body-lg {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
  font-weight: 500;
  color: var(--color-gray-700);
}
.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-gray-500); }

/* Buttons */
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-fast),
    color var(--duration-fast);
}
.button-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-button);
}
.button-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.14);
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-out);
  pointer-events: none;
}
.button-primary:hover {
  transform: translateY(-1px);
}
.button-primary:hover::before {
  opacity: 1;
}
.button-primary svg { width: 18px; height: 18px; transition: transform var(--duration-fast) var(--ease-out); }
.button-primary:hover svg { transform: translateX(4px); }
.button-secondary {
  background: #fff;
  border: var(--border-card);
  color: var(--color-gray-900);
}
.button-secondary:hover { border-color: rgba(50, 83, 255, 0.28); color: var(--color-primary); }
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 44px;
  padding: 0 8px 0 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-gray-900);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(50, 83, 255, 0.14);
  box-shadow: 0 6px 20px rgba(50, 83, 255, 0.07);
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-fast),
    color var(--duration-fast),
    background var(--duration-fast),
    gap var(--duration-fast) var(--ease-out);
}
.text-button:hover {
  color: var(--color-primary);
  gap: 14px;
  border-color: rgba(50, 83, 255, 0.28);
  background: #fff;
  box-shadow: 0 10px 28px rgba(50, 83, 255, 0.11);
  transform: translateY(-1px);
}
.text-button__label {
  line-height: 1;
  white-space: nowrap;
}
.text-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 6px 14px rgba(50, 83, 255, 0.22);
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}
.text-button__icon svg {
  width: 15px;
  height: 15px;
  display: block;
}
.text-button:hover .text-button__icon {
  transform: translateX(2px);
  box-shadow: 0 8px 18px rgba(50, 83, 255, 0.3);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border-radius: var(--radius-full);
  background: var(--color-primary-soft);
  border: 1px solid rgba(50, 83, 255, 0.12);
  color: var(--color-gray-800);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}
.badge:hover { border-color: rgba(50, 83, 255, 0.28); color: var(--color-primary); }

/* Header */
.wh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(50, 83, 255, 0.08);
  transition: box-shadow var(--duration-base) var(--ease-out), background var(--duration-base);
}
.wh-header.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 32px rgba(50, 83, 255, 0.06);
}
.wh-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 24px;
}
.wh-brand { justify-self: start; }
.wh-brand img { height: 32px; width: auto; }
.wh-nav {
  display: flex;
  gap: 36px;
  justify-self: center;
}
.wh-nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray-700);
  text-decoration: none;
  transition: color var(--duration-fast);
}
.wh-nav__link:hover,
.wh-nav__link.active { color: var(--color-primary); }
.wh-nav__dropdown {
  position: relative;
}
.wh-nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  padding: 8px 4px;
  margin: -8px -4px;
}
.wh-nav__dropdown-trigger::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--duration-fast) var(--ease-out);
}
.wh-nav__dropdown.is-open .wh-nav__dropdown-trigger::after {
  transform: rotate(-135deg) translateY(1px);
}
.wh-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 280px;
  padding: 12px;
  border-radius: var(--radius-md);
  border: var(--border-card);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(50, 83, 255, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition:
    opacity var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    visibility var(--duration-fast);
  pointer-events: none;
  z-index: 120;
}
.wh-nav__dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}
.wh-nav__dropdown.is-open .wh-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
@media (hover: hover) and (pointer: fine) {
  .wh-nav__dropdown:hover .wh-nav__dropdown-menu,
  .wh-nav__dropdown:focus-within .wh-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }
}
.wh-nav__dropdown-item {
  display: block;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-gray-700);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--duration-fast), color var(--duration-fast);
}
.wh-nav__dropdown-item:hover,
.wh-nav__dropdown-item.active {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
.wh-header__actions { display: flex; align-items: center; gap: 12px; justify-self: end; }
.wh-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-md);
  border: var(--border-card);
  background: #fff;
}
.wh-lang button {
  min-width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gray-700);
  background: transparent;
  box-shadow: none;
}
.wh-lang button.active { color: var(--color-primary); background: transparent; box-shadow: none; }
.wh-lang button + button::before {
  content: '/';
  margin-right: 6px;
  color: var(--color-gray-300);
  pointer-events: none;
}
.wh-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.wh-dot--success { background: var(--color-success); box-shadow: 0 0 8px rgba(24,201,100,0.5); }
.wh-header__cta { height: 42px; padding: 0 20px; font-size: 14px; }
.wh-menu-toggle { display: none; width: 44px; height: 44px; color: var(--color-gray-900); }
.wh-menu-toggle svg { width: 24px; height: 24px; }

.wh-mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  padding: 24px var(--container-padding);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
}
.wh-mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.wh-mobile-menu[hidden] { display: flex; }
.wh-mobile-menu a:not(.button-primary) {
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gray-900);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gray-100);
}
.wh-mobile-menu__group {
  border-bottom: 1px solid var(--color-gray-100);
}
.wh-mobile-menu__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gray-900);
  text-align: left;
}
.wh-mobile-menu__toggle::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--duration-fast) var(--ease-out);
}
.wh-mobile-menu__group.is-open .wh-mobile-menu__toggle::after {
  transform: rotate(-135deg);
}
.wh-mobile-menu__sub {
  display: none;
  flex-direction: column;
  gap: 0;
  padding-bottom: 8px;
}
.wh-mobile-menu__group.is-open .wh-mobile-menu__sub {
  display: flex;
}
.wh-mobile-menu__sub a {
  padding: 10px 0 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray-600);
  border-bottom: none;
}
.wh-mobile-menu .button-primary { width: 100%; margin-top: 16px; }
.wh-lang--stack { align-self: flex-start; margin-bottom: 8px; }

/* Sections */
.wh-section { padding-block: var(--section-lg); }
.wh-section--soft { background: var(--gradient-soft-blue); }
.wh-section--gray { background: var(--color-gray-100); }
.wh-section-head { margin-bottom: 48px; }

/* Hero */
.wh-hero {
  position: relative;
  --hero-pad-y: clamp(56px, 6vw, 72px);
  --hero-container-w: min(var(--container-max), 100% - var(--container-padding) * 2);
  padding-top: var(--hero-pad-y);
  padding-bottom: var(--hero-pad-y);
  background: var(--color-white);
  overflow: hidden;
}
.wh-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.wh-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.wh-hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: clamp(460px, 52vw, 620px);
}
.wh-hero__copy {
  position: relative;
  z-index: 1;
  max-width: min(560px, 54%);
  pointer-events: auto;
  overflow: visible;
}
.wh-hero .display-xl {
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.1;
}
.wh-hero .body-lg {
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.65;
}
.wh-hero__actions .button-primary,
.wh-hero__actions .button-secondary {
  height: 42px;
  padding: 0 18px;
  font-size: 14px;
}
.wh-hero-title,
.wh-split-title { perspective: 900px; opacity: 0; }
.wh-hero-title { width: 100%; }
.wh-hero-title.is-ready,
.wh-split-title.is-ready { opacity: 1; transition: opacity .35s ease; }
.wh-hero-title__line,
.wh-split-title__line {
  display: block;
  overflow-x: visible;
  overflow-y: hidden;
  transform-style: preserve-3d;
  padding-bottom: 0.14em;
}
.wh-hero-title .split-line,
.wh-split-title .split-line {
  flex-wrap: nowrap;
  white-space: nowrap;
}
.wh-hero-title__line + .wh-hero-title__line,
.wh-split-title__line + .wh-split-title__line { margin-top: 0.06em; }
.lang-en .wh-hero-title__line--stack-en {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.04em;
}
.lang-kr .split-line--en-sub {
  display: none !important;
}
.split-line { display: inline-flex; flex-wrap: wrap; }
.split-mask {
  display: inline-block;
  overflow: hidden;
  line-height: 1.05;
  padding-bottom: 0.12em;
  vertical-align: top;
}
.split-char {
  display: inline-block;
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}
.split-line--primary {
  display: inline-flex;
  flex-wrap: wrap;
}
.split-line--primary .split-char {
  background-image: var(--gradient-primary);
  background-size: var(--primary-gradient-w, 100%) 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.split-line--primary:not(:has(.split-char)) {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.wh-page-hero__title { opacity: 0; }
.wh-page-hero__title.is-ready { opacity: 1; }
.wh-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.wh-hero__pills { display: flex; flex-wrap: wrap; gap: 10px; }
.wh-hero__visual {
  position: absolute;
  top: var(--hero-pad-y);
  bottom: var(--hero-pad-y);
  right: calc((100% - var(--hero-container-w)) / 2);
  width: min(94%, 1120px);
  height: fit-content;
  margin-block: auto;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  background: transparent;
}
.wh-hero__visual,
.wh-page-hero__media {
  contain: paint;
}

/* Scroll parallax — framed media (frame fixed, image drifts) */
.wh-has-scroll-parallax {
  overflow: hidden;
  background: var(--color-gray-200);
}
.wh-has-scroll-parallax > img,
.wh-framed-media.wh-has-scroll-parallax img,
.wh-media-box.wh-has-scroll-parallax img,
.wh-map-card.wh-has-scroll-parallax img,
.wh-expertise__media.wh-has-scroll-parallax img {
  position: relative;
  display: block;
  width: 100%;
  height: 170%;
  min-height: 170%;
  top: -35%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.wh-expertise__media.wh-has-scroll-parallax img {
  height: 130%;
  min-height: 130%;
  top: -15%;
}
.wh-framed-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--border-card);
  background: var(--color-gray-200);
  display: block;
  width: 100%;
}
.wh-framed-media > img,
.wh-framed-media__link > img {
  aspect-ratio: auto;
}
.wh-framed-media.wh-has-scroll-parallax .wh-framed-media__link,
.wh-media-box.wh-has-scroll-parallax .wh-framed-media__link,
.wh-expertise__media.wh-has-scroll-parallax .wh-framed-media__link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.wh-framed-media__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
}
.wh-framed-media__link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(17, 24, 39, 0);
  transition: background var(--duration-fast) var(--ease-out);
  pointer-events: none;
}
.wh-framed-media__link:hover::after {
  background: rgba(17, 24, 39, 0.14);
}
.wh-media-box > .wh-framed-media__link,
.wh-map-card > .wh-framed-media__link,
.wh-expertise__media > .wh-framed-media__link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: zoom-in;
}
.wh-thumb-grid .wh-framed-media {
  aspect-ratio: 4 / 3;
}
.wh-expertise__media.wh-has-scroll-parallax > img,
.wh-expertise__media.wh-has-scroll-parallax img {
  aspect-ratio: auto;
}
.wh-map-card.wh-has-scroll-parallax > img,
.wh-media-box.wh-has-scroll-parallax > img {
  aspect-ratio: auto;
}
.wh-hero__video {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  background: transparent;
  outline: none;
}

/* Ticker */
.wh-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  border-block: 1px solid rgba(50, 83, 255, 0.08);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.wh-ticker__track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0 24px;
  width: min(var(--container-max), 100% - var(--container-padding) * 2);
  margin-inline: auto;
  padding: 14px var(--container-padding);
}
.wh-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  white-space: nowrap;
}
.wh-ticker__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.wh-ticker__item b {
  color: var(--color-gray-900);
  font-weight: 700;
}
.wh-ticker__item--status b {
  color: var(--color-primary);
}
.wh-ticker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 8px rgba(24, 201, 100, 0.45);
  flex-shrink: 0;
}
.wh-ticker__sep {
  color: var(--color-gray-400);
  font-family: var(--font-en);
  font-size: 12px;
  flex-shrink: 0;
}
@keyframes wh-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(3px, -7px, 0) rotate(1.2deg);
  }
  50% {
    transform: translate3d(-2px, -12px, 0) rotate(0deg);
  }
  75% {
    transform: translate3d(-4px, -6px, 0) rotate(-1deg);
  }
}

/* Trust bar */
.wh-trust-bar { padding-block: var(--section-md); }
.wh-trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-xl);
  border: var(--border-card);
  background:
    radial-gradient(520px 220px at 0% 0%, rgba(109, 168, 255, 0.12), transparent 60%),
    radial-gradient(480px 200px at 100% 100%, rgba(109, 99, 255, 0.1), transparent 55%),
    #fff;
  box-shadow: var(--shadow-card);
}
.wh-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.wh-stat__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: none;
}
.wh-stat__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wh-stat__num {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-black);
}
.wh-stat__label {
  font-size: 14px;
  color: var(--color-gray-500);
  margin-top: 2px;
}

/* Business section */
.wh-business {
  display: flex;
  flex-direction: row;
  gap: clamp(32px, 5vw, 48px);
}
.wh-business__intro {
  position: static;
  max-width: 640px;
}
.wh-business__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}
.wh-biz-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: clamp(240px, 26vw, 280px);
  padding: 24px;
  padding-bottom: 72px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: var(--border-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base);
}
.wh-biz-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.wh-biz-card__body {
  max-width: none;
  width: 100%;
  padding-right: clamp(116px, 13vw, 148px);
}
.wh-biz-card__no {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.08em;
}
.wh-biz-card__visual {
  position: absolute;
  top: 12px;
  right: 12px;
  width: clamp(100px, 11vw, 128px);
  height: clamp(100px, 11vw, 128px);
  object-fit: contain;
  opacity: 0.95;
  animation: wh-float 5s ease-in-out infinite;
  will-change: transform;
}
.wh-biz-card:nth-child(1) .wh-biz-card__visual { animation-delay: 0s; }
.wh-biz-card:nth-child(2) .wh-biz-card__visual { animation-delay: -1.6s; }
.wh-biz-card:nth-child(3) .wh-biz-card__visual { animation-delay: -3.2s; }
.wh-biz-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-button);
  text-decoration: none;
  transition: transform var(--duration-fast);
}
.wh-biz-card__arrow svg { width: 18px; height: 18px; }
.wh-biz-card__arrow:hover { transform: translateX(3px); }

/* Global impact panel */
.wh-impact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(700px 320px at 100% 0%, rgba(109, 99, 255, 0.18), transparent 55%),
    linear-gradient(135deg, #FFFFFF 0%, var(--color-primary-soft) 100%);
  border: var(--border-light);
  box-shadow: var(--shadow-card);
}
.wh-impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wh-impact-stats div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wh-impact-stats strong {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wh-impact-stats strong span {
  display: inline-block;
}
.wh-impact-stats div > span {
  font-size: 13px;
  color: var(--color-gray-500);
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}
.wh-impact-stats div:nth-child(2) strong {
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.wh-impact-stats div:nth-child(2) > span {
  color: var(--color-secondary);
  font-weight: 600;
}
.wh-map-card {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: clamp(240px, 38vw, 320px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: var(--border-light);
  background: var(--color-gray-900);
}
.wh-map-card video,
.wh-map-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}
.wh-map-card.wh-has-scroll-parallax > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  min-height: 0;
  transform: none;
}

/* Expertise */
.wh-expertise {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.85fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
.wh-expertise__copy {
  position: static;
  align-self: start;
  z-index: 2;
  max-width: none;
}
.wh-expertise__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: var(--border-card);
  background: var(--color-gray-200);
  aspect-ratio: 3 / 4;
}
.wh-expertise__media img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: center; }
.wh-expertise__thumbs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 8px;
}
.wh-expertise__thumbs .wh-framed-media {
  border-radius: var(--radius-lg);
}
.wh-expertise__thumbs > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: var(--border-card);
}
.wh-expertise__aside {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
}
.wh-list-item {
  padding-block: 20px;
  border-top: 1px solid var(--color-gray-100);
}

/* CTA banner */
.wh-cta {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 56px);
  background-color: var(--color-gray-100);
  background-image: var(--wh-cta-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: var(--border-light);
  overflow: hidden;
}
.wh-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.58) 0%,
    rgba(255, 255, 255, 0.42) 48%,
    rgba(238, 241, 255, 0.5) 100%
  );
  pointer-events: none;
}
.wh-cta__grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.wh-cta__grid .eyebrow {
  padding: 8px 14px 8px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 18px rgba(50, 83, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.wh-cta__grid .eyebrow--cyan {
  color: var(--color-primary);
}
.wh-cta__grid .eyebrow--violet {
  color: var(--color-secondary);
}
.wh-cta__grid .eyebrow--green {
  color: #0B8A45;
}
.wh-cta__title-line {
  display: inline-block;
}
.wh-cta__accent {
  display: inline-block;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(
    100deg,
    #6D63FF 0%,
    #3253FF 28%,
    #6DA8FF 52%,
    #3253FF 76%,
    #6D63FF 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: wh-cta-accent-shimmer 5s ease-in-out infinite;
  filter: drop-shadow(0 2px 14px rgba(50, 83, 255, 0.22));
}
@keyframes wh-cta-accent-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
@media (prefers-reduced-motion: reduce) {
  .wh-cta__accent { animation: none; }
}

/* Footer */
.wh-footer {
  padding-block: 64px 32px;
  background: var(--color-gray-100);
  border-top: 1px solid rgba(50, 83, 255, 0.08);
}
.wh-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-gray-300);
}
.wh-footer__slogan {
  max-width: 36ch;
  color: var(--color-gray-500);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.wh-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.wh-footer__top a {
  display: block;
  color: var(--color-gray-700);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
}
.wh-footer__top a:hover { color: var(--color-primary); }
.wh-footer__sublink {
  padding-left: 12px !important;
  font-size: 13px !important;
  color: var(--color-gray-500) !important;
}
.wh-footer__sublink:hover { color: var(--color-primary) !important; }
.wh-footer__email { color: var(--color-primary); text-decoration: none; font-size: 14px; }
.wh-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
}
.wh-footer__legal {
  font-size: 12px;
  color: var(--color-gray-500);
  max-width: 70ch;
  margin: 0;
}
.wh-footer__secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--color-gray-500);
  white-space: nowrap;
}
.wh-footer__label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-gray-500);
  margin-bottom: 16px;
}
.wh-footer__meta { font-size: 14px; color: var(--color-gray-500); margin: 0 0 8px; line-height: 1.6; }

/* Services page */
.wh-page-hero {
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 72px));
  padding-bottom: clamp(32px, 5vw, 56px);
  background: var(--gradient-soft-blue);
  text-align: center;
}
.wh-page-hero__title-wrap {
  position: relative;
  display: block;
  min-height: clamp(160px, 28vw, 240px);
  margin-inline: auto;
  max-width: 18ch;
}
.wh-page-services .wh-page-hero {
  --hero-pad-y: clamp(56px, 6vw, 72px);
  padding-top: var(--hero-pad-y);
  padding-bottom: var(--hero-pad-y);
  background-color: #fff;
  background-image: url('/assets/images/svc-hero-bg.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.wh-page-services .wh-page-hero__title-wrap {
  font-size: clamp(40px, 7.2vw, 92px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  width: fit-content;
  max-width: min(100%, 920px);
  margin-inline: auto;
  text-align: left;
}
.wh-page-services .wh-page-hero__part {
  line-height: 1.05;
  white-space: nowrap;
  color: var(--color-black);
}
.wh-page-services .wh-page-hero__part--first {
  position: relative;
  z-index: 1;
  display: block;
  padding-right: clamp(120px, 28vw, 300px);
}
.wh-page-services .wh-page-hero__part--last {
  position: relative;
  z-index: 3;
  display: block;
  margin-top: clamp(28px, 6vw, 88px);
  margin-left: clamp(96px, 24vw, 320px);
  text-align: left;
}
.lang-en .wh-page-services .wh-page-hero__part--first {
  padding-right: clamp(100px, 22vw, 260px);
}
.lang-en .wh-page-services .wh-page-hero__part--last {
  margin-left: clamp(108px, 26vw, 320px);
  margin-top: clamp(24px, 5.5vw, 80px);
  white-space: normal !important;
}
.lang-kr .wh-page-hero__en-br,
.lang-kr .wh-page-hero__en-world {
  display: none !important;
}
.lang-en .wh-page-hero__kr-tail {
  display: none !important;
}
.lang-en .wh-page-services .wh-page-hero__en-br {
  display: block;
  line-height: 0.08em;
}
.wh-page-services .wh-page-hero__gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wh-page-services .wh-page-hero .body-lg {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
}
.wh-page-services .heading-xl,
.wh-page-services .wh-split-title {
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.wh-page-services .heading-md {
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.04;
  font-weight: 700;
}
.wh-page-services .wh-cta .heading-xl,
.wh-cta .heading-xl {
  font-size: clamp(30px, 3.5vw, 40px);
  line-height: 1.24;
  letter-spacing: -0.02em;
}
.wh-page-services .wh-feature__title {
  font-size: 19px;
  line-height: 1.3;
}
.wh-page-services .wh-svc-card .text-muted,
.wh-page-services .wh-feature .text-muted,
.wh-page-services .wh-feature__desc {
  font-size: 15.5px;
  line-height: 1.6;
}
.wh-page-services .wh-media-stat b {
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.03em;
}
.wh-page-services .wh-stats-row .wh-stat__num {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wh-page-services .wh-stats-row .wh-stat__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-en);
}
.wh-page-hero__part {
  display: block;
  position: relative;
}
.wh-page-hero__part--first { z-index: 1; }
.wh-page-hero__part--last {
  z-index: 3;
  margin-top: clamp(28px, 6vw, 88px);
  margin-left: clamp(96px, 24vw, 320px);
  text-align: left;
}
.wh-page-hero__media {
  position: absolute;
  z-index: 2;
  left: clamp(40px, 14vw, 132px);
  top: clamp(4px, 2vw, 20px);
  width: clamp(148px, 24vw, 300px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.wh-page-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}
.wh-page-hero .body-lg { max-width: 56ch; margin-inline: auto; }
.wh-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.wh-jump__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-gray-300);
  background: rgba(255, 255, 255, 0.35);
  color: var(--color-gray-900);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    color var(--duration-base) var(--ease-out);
}
.wh-jump__pill:hover {
  border-color: rgba(50, 83, 255, 0.22);
  background: rgba(255, 255, 255, 0.72);
}
.wh-jump__pill.is-active,
.wh-jump__pill[aria-current="location"] {
  background: var(--color-white);
  border-color: transparent;
  color: var(--color-primary);
  font-weight: 600;
  box-shadow:
    0 4px 18px rgba(50, 83, 255, 0.14),
    0 10px 36px rgba(109, 168, 255, 0.12);
}
.wh-jump__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.wh-jump__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.wh-jump__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.wh-jump__label {
  display: inline-flex;
  align-items: center;
}
.wh-jump__pill.is-active .wh-jump__label,
.wh-jump__pill[aria-current="location"] .wh-jump__label {
  color: var(--color-primary);
}
.wh-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wh-svc-grid--quad {
  grid-template-columns: repeat(2, 1fr);
}
.wh-svc-grid--duo {
  grid-template-columns: repeat(2, 1fr);
}
.wh-svc-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.wh-svc-card--link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.wh-svc-detail {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

/* ===========================================================
   Marketing — premium bento grid with watermark digits
   =========================================================== */
.wh-section--mkt {
  position: relative;
  overflow: hidden;
}
.wh-section--mkt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 8% 0%, rgba(109, 168, 255, 0.14), transparent 58%),
    radial-gradient(ellipse 55% 45% at 95% 100%, rgba(109, 99, 255, 0.1), transparent 52%);
  pointer-events: none;
}
.wh-section--mkt .wh-container {
  position: relative;
  z-index: 1;
}
.wh-mkt-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.wh-mkt-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: clamp(260px, 30vw, 300px);
  padding: clamp(28px, 3.4vw, 38px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 50px rgba(50, 83, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out);
}
.wh-mkt-tile::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--mkt-accent, var(--gradient-primary));
  z-index: 2;
}
.wh-mkt-tile::after {
  content: '';
  position: absolute;
  top: -45%;
  right: -18%;
  width: 60%;
  height: 90%;
  background: radial-gradient(circle, var(--mkt-glow, rgba(50, 83, 255, 0.16)) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.wh-mkt-tile:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 26px 64px rgba(50, 83, 255, 0.14);
  border-color: rgba(50, 83, 255, 0.18);
}
.wh-mkt-tile__digit {
  position: absolute;
  top: clamp(-10px, -1vw, -6px);
  right: clamp(-8px, -0.6vw, -4px);
  font-family: var(--font-en);
  font-size: clamp(96px, 13vw, 168px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--mkt-stroke, rgba(50, 83, 255, 0.18));
  text-stroke: 1.5px var(--mkt-stroke, rgba(50, 83, 255, 0.18));
  pointer-events: none;
  z-index: 1;
  user-select: none;
}
.wh-mkt-tile__head {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.wh-mkt-tile__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--mkt-accent, var(--gradient-primary));
  color: #fff;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 8px 20px var(--mkt-glow, rgba(50, 83, 255, 0.22));
  flex-shrink: 0;
}
.wh-mkt-tile__badge-num {
  display: block;
  line-height: 1;
}
.wh-mkt-tile__tag {
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mkt-tag-color, var(--color-primary));
  background: var(--mkt-tag-bg, rgba(50, 83, 255, 0.08));
  border: 1px solid var(--mkt-tag-border, rgba(50, 83, 255, 0.16));
}
.wh-mkt-tile__title {
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}
.wh-mkt-tile__body {
  margin: 0;
  font-size: clamp(14.5px, 1.35vw, 16px);
  line-height: 1.68;
  position: relative;
  z-index: 2;
  flex: 1;
}
.wh-mkt-tile--strategy {
  --mkt-accent: linear-gradient(135deg, #6DA8FF 0%, #3253FF 100%);
  --mkt-glow: rgba(109, 168, 255, 0.22);
  --mkt-stroke: rgba(50, 83, 255, 0.16);
  --mkt-tag-color: #2443EA;
  --mkt-tag-bg: rgba(50, 83, 255, 0.08);
  --mkt-tag-border: rgba(50, 83, 255, 0.18);
}
.wh-mkt-tile--agency {
  --mkt-accent: linear-gradient(135deg, #A78BFA 0%, #7C3AED 100%);
  --mkt-glow: rgba(124, 58, 237, 0.22);
  --mkt-stroke: rgba(124, 58, 237, 0.18);
  --mkt-tag-color: #6D28D9;
  --mkt-tag-bg: rgba(124, 58, 237, 0.08);
  --mkt-tag-border: rgba(124, 58, 237, 0.2);
}
.wh-mkt-tile--performance {
  --mkt-accent: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
  --mkt-glow: rgba(14, 165, 233, 0.22);
  --mkt-stroke: rgba(14, 165, 233, 0.18);
  --mkt-tag-color: #0284C7;
  --mkt-tag-bg: rgba(14, 165, 233, 0.08);
  --mkt-tag-border: rgba(14, 165, 233, 0.2);
}
.wh-mkt-tile--viral {
  --mkt-accent: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  --mkt-glow: rgba(16, 185, 129, 0.22);
  --mkt-stroke: rgba(16, 185, 129, 0.18);
  --mkt-tag-color: #059669;
  --mkt-tag-bg: rgba(16, 185, 129, 0.08);
  --mkt-tag-border: rgba(16, 185, 129, 0.2);
}

/* ===========================================================
   Cinematic — light filmstrip process flow (4 steps)
   =========================================================== */
.wh-section--cine {
  position: relative;
  overflow: hidden;
}
.wh-section--cine::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 12%, rgba(109, 99, 255, 0.09), transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 92%, rgba(109, 168, 255, 0.08), transparent 58%);
  pointer-events: none;
}
.wh-section--cine .wh-container {
  position: relative;
  z-index: 1;
}
.wh-cine-flow {
  --cine-gap: clamp(16px, 1.8vw, 24px);
  list-style: none;
  margin: 0;
  padding: clamp(36px, 4vw, 48px) 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--cine-gap);
  position: relative;
}
.wh-cine-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.wh-cine-step__rail {
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  width: calc(var(--cine-gap) - 16px);
  height: 2px;
  background-image: linear-gradient(90deg, rgba(50, 83, 255, 0.5) 0 5px, transparent 5px 11px);
  background-size: 11px 2px;
  background-repeat: repeat-x;
  pointer-events: none;
}
.wh-cine-step__rail::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid rgba(50, 83, 255, 0.6);
  border-top: 2px solid rgba(50, 83, 255, 0.6);
  transform: translateY(-50%) rotate(45deg);
}
.wh-cine-step__head {
  position: absolute;
  top: clamp(-30px, -2.8vw, -22px);
  left: clamp(20px, 2vw, 26px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.wh-cine-step__orb {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cine-accent, var(--gradient-primary));
  color: #fff;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow:
    0 0 0 6px #fff,
    0 8px 22px var(--cine-glow, rgba(50, 83, 255, 0.28));
  flex-shrink: 0;
}
.wh-cine-step__num {
  display: block;
  line-height: 1;
}
.wh-cine-step__tag {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cine-tag-color, var(--color-primary));
  background: #fff;
  border: 1px solid var(--cine-tag-border, rgba(50, 83, 255, 0.16));
  box-shadow: 0 4px 14px rgba(50, 83, 255, 0.06);
}
.wh-cine-step__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: clamp(220px, 22vw, 240px);
  padding: clamp(28px, 2.6vw, 32px) clamp(22px, 2vw, 26px) clamp(22px, 2vw, 26px);
  border-radius: var(--radius-lg);
  background: #fff;
  border: var(--border-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out);
}
.wh-cine-step__card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--cine-accent, var(--gradient-primary));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.wh-cine-step__card::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -25%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, var(--cine-glow, rgba(50, 83, 255, 0.1)) 0%, transparent 65%);
  pointer-events: none;
}
.wh-cine-step:hover .wh-cine-step__card {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(50, 83, 255, 0.16);
}
.wh-cine-step__title {
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.wh-cine-step__body {
  margin: 0;
  font-size: clamp(14px, 1.3vw, 15.5px);
  line-height: 1.7;
  color: var(--color-gray-500);
  position: relative;
  z-index: 1;
  flex: 1;
}
.wh-cine-step--data {
  --cine-accent: linear-gradient(135deg, #6DA8FF 0%, #3253FF 100%);
  --cine-glow: rgba(50, 83, 255, 0.12);
  --cine-tag-color: #2443EA;
  --cine-tag-border: rgba(50, 83, 255, 0.2);
}
.wh-cine-step--creative {
  --cine-accent: linear-gradient(135deg, #A78BFA 0%, #6D63FF 100%);
  --cine-glow: rgba(109, 99, 255, 0.14);
  --cine-tag-color: #6D63FF;
  --cine-tag-border: rgba(109, 99, 255, 0.22);
}
.wh-cine-step--distribution {
  --cine-accent: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
  --cine-glow: rgba(14, 165, 233, 0.14);
  --cine-tag-color: #0284C7;
  --cine-tag-border: rgba(14, 165, 233, 0.22);
}
.wh-cine-step--report {
  --cine-accent: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  --cine-glow: rgba(16, 185, 129, 0.14);
  --cine-tag-color: #059669;
  --cine-tag-border: rgba(16, 185, 129, 0.22);
}

.wh-svc-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: var(--border-card);
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base);
}
.wh-svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.wh-svc-card__icon {
  width: 64px;
  height: 64px;
  padding: 10px;
  border-radius: var(--radius-md);
  background: var(--color-primary-soft);
  border: 1px solid var(--color-gray-200);
  box-sizing: border-box;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wh-svc-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wh-spec {
  list-style: none;
  margin: 20px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--color-gray-100);
}
.wh-spec li {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 6px 0;
  font-family: var(--font-en);
}
.wh-spec span { color: var(--color-gray-500); }
.wh-spec b { color: var(--color-gray-900); font-weight: 600; }
.wh-media-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}
.wh-media-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: var(--border-card);
  box-shadow: var(--shadow-card);
  min-height: 280px;
  background: var(--color-gray-100);
}
.wh-media-box:has(> img),
.wh-media-box.wh-has-scroll-parallax {
  background: var(--color-gray-200);
  aspect-ratio: 22 / 9;
  min-height: clamp(240px, 38vw, 420px);
}
.wh-media-box video,
.wh-media-box:not(.wh-has-scroll-parallax) > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  display: block;
}
.wh-media-box__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}
.wh-media-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wh-media-stat {
  flex: 1;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: var(--border-card);
}
.wh-media-stat span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-gray-500);
  font-family: var(--font-en);
}
.wh-media-stat b {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
}
.wh-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.wh-split-section__copy {
  position: static;
  align-self: start;
  z-index: 2;
}
.wh-split-section__media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wh-feature-list { display: flex; flex-direction: column; gap: 24px; }
.wh-feature {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 8px;
  align-items: center;
}
.wh-feature__dot {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(109, 168, 255, 0.22);
  flex-shrink: 0;
}
.wh-feature__title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  align-self: center;
}
.wh-feature__desc {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
}
.wh-section--soft .wh-feature__dot {
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(109, 168, 255, 0.22), 0 0 10px rgba(109, 168, 255, 0.35);
}
.wh-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.wh-thumb-grid img:not(.wh-framed-media img) {
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: var(--border-card);
  background: var(--color-gray-200);
}

/* brivyy — landscape campaign frames */
.wh-page-services-brivyy .wh-framed-media,
.wh-page-services-business .wh-framed-media {
  aspect-ratio: 4 / 3;
}
.wh-page-services-brivyy .wh-framed-media > img,
.wh-page-services-business .wh-framed-media > img,
.wh-page-services-brivyy .wh-framed-media__link > img,
.wh-page-services-business .wh-framed-media__link > img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.wh-page-services-brivyy .wh-media-box:has(> img),
.wh-page-services-brivyy .wh-media-box.wh-has-scroll-parallax,
.wh-page-services-business .wh-media-box:has(> img),
.wh-page-services-business .wh-media-box.wh-has-scroll-parallax {
  /* aspect-ratio: 4 / 3; */
  min-height: 0;
}
.wh-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  padding-block: 40px;
  border-block: 1px solid var(--color-gray-100);
}

/* Portfolio */
.wh-pf-proof {
  position: relative;
  overflow: hidden;
  background: var(--gradient-soft-blue);
}
.wh-pf-proof__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 32%);
  align-items: end;
  gap: clamp(16px, 4vw, 40px);
}
.wh-pf-proof__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 56ch;
  padding-bottom: 2px;
}
.wh-pf-proof__visual {
  align-self: end;
  justify-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  max-width: clamp(200px, 28vw, 340px);
  pointer-events: none;
  line-height: 0;
}
.wh-pf-proof__visual img {
  width: 100%;
  height: auto;
  max-height: clamp(220px, 32vw, 380px);
  object-fit: contain;
  object-position: right bottom;
}
.wh-pf-hero {
  position: relative;
  overflow: hidden;
  --wh-pf-hero-pad-b: clamp(32px, 5vw, 48px);
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 72px));
  padding-bottom: var(--wh-pf-hero-pad-b);
  background: var(--gradient-soft-blue);
}
.wh-pf-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 34%);
  align-items: end;
  gap: clamp(16px, 4vw, 40px);
}
.wh-pf-hero__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 56ch;
  padding-bottom: 2px;
}
.wh-pf-hero__visual {
  align-self: end;
  justify-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  max-width: clamp(220px, 30vw, 380px);
  margin-bottom: calc(var(--wh-pf-hero-pad-b) * -1);
  pointer-events: none;
  line-height: 0;
}
.wh-pf-hero__visual img {
  width: 100%;
  height: auto;
  max-height: clamp(280px, 38vw, 460px);
  object-fit: contain;
  object-position: right bottom;
}
.wh-featured-head { margin-bottom: clamp(24px, 4vw, 32px); }
.wh-featured-swiper {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
}
.wh-featured-swiper.is-ready { visibility: visible; }
.wh-featured-swiper__viewport {
  position: relative;
  padding: 0 clamp(48px, 5vw, 56px);
  overflow: hidden;
}
.wh-featured-swiper__viewport .swiper-wrapper { align-items: stretch; }
.wh-featured-swiper__viewport .swiper-slide {
  height: auto;
  display: flex;
}
.wh-featured-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  border-radius: var(--radius-lg);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base);
}
.wh-featured-card:hover { transform: translateY(-4px); }
.wh-featured-card:hover img { box-shadow: var(--shadow-card-hover); }
.wh-featured-card img {
  width: 100%;
  aspect-ratio: 220 / 314;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: var(--border-card);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--duration-base) var(--ease-out);
}
.wh-featured-card__title {
  display: block;
  margin-top: 12px;
  padding-inline: 2px;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-gray-900);
  flex: 1;
}
.wh-featured-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: var(--border-card);
  box-shadow: var(--shadow-card);
  color: var(--color-gray-900);
  z-index: 3;
  display: grid;
  place-items: center;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast), transform var(--duration-fast);
}
.wh-featured-nav:hover {
  border-color: rgba(50, 83, 255, 0.22);
  box-shadow: var(--shadow-card-hover);
}
.wh-featured-nav:disabled,
.wh-featured-nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.wh-featured-nav svg { width: 18px; height: 18px; }
.wh-featured-nav--prev { left: 0; }
.wh-featured-nav--next { right: 0; }
.wh-featured-swiper > .swiper-pagination {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  margin-top: clamp(20px, 3vw, 28px);
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: none !important;
  line-height: 1;
}
.wh-featured-swiper > .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  opacity: 0.28;
  background: var(--color-primary);
  transition: opacity var(--duration-fast), transform var(--duration-fast);
}
.wh-featured-swiper > .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
  background: var(--color-primary);
}

.wh-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.wh-cat-head__code {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-gray-500);
}
.wh-subcat { max-width: 64ch; margin-top: 32px; }
.wh-poster-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
  gap: 20px 16px;
  margin-top: 24px;
}
.wh-poster__frame {
  position: relative;
  aspect-ratio: 115 / 165;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--border-card);
  box-shadow: 0 8px 24px rgba(50, 83, 255, 0.06);
  background: var(--color-gray-900);
  isolation: isolate;
}
.wh-poster__frame > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.wh-poster__cat {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.92);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-primary);
}
.wh-poster__title {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gray-900);
  line-height: 1.4;
}
.wh-partner-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.wh-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: var(--border-card);
  transition: box-shadow var(--duration-base);
}
.wh-partner:hover { box-shadow: var(--shadow-card); }
.wh-partner img { max-height: 48px; width: auto; object-fit: contain; }
.wh-partner--wide { grid-column: span 2; }

/* Featured modal */
.wh-modal[hidden] { display: none !important; }
body.wh-modal-open { overflow: hidden; }
.wh-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 28px);
}
.wh-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  backdrop-filter: blur(8px);
}
.wh-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(88vh, 640px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 64px -24px rgba(17, 24, 39, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}
.wh-modal.is-open .wh-modal__backdrop {
  animation: wh-modal-backdrop-in 320ms var(--ease-out) both;
}
.wh-modal.is-open .wh-modal__dialog {
  animation: wh-modal-dialog-in 520ms var(--ease-out) both;
}
@keyframes wh-modal-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes wh-modal-dialog-in {
  from {
    opacity: 0;
    transform: scale(0.97) translateY(14px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.wh-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-gray-200);
  background: #fff;
  color: var(--color-gray-900);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color var(--duration-fast), background var(--duration-fast), transform var(--duration-fast);
}
.wh-modal__close svg { width: 18px; height: 18px; }
.wh-modal__close:hover {
  border-color: rgba(50, 83, 255, 0.28);
  background: var(--color-gray-50);
  transform: scale(1.04);
}
.wh-modal__layout {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) minmax(0, 3fr);
  flex: 1 1 auto;
  min-height: 0;
  height: min(88vh, 640px);
  max-height: min(88vh, 640px);
  align-items: stretch;
}
.wh-modal.is-open .wh-modal__aside {
  animation: wh-modal-aside-in 560ms var(--ease-out) 90ms both;
}
.wh-modal.is-open .wh-modal__media {
  animation: wh-modal-media-in 560ms var(--ease-out) 170ms both;
}
@keyframes wh-modal-aside-in {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes wh-modal-media-in {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.wh-modal.is-closing .wh-modal__swiper {
  animation: wh-modal-swiper-out 300ms var(--ease-out) both;
}
.wh-modal.is-closing .wh-modal__media {
  animation: wh-modal-media-out 340ms var(--ease-out) both;
}
.wh-modal.is-closing .wh-modal__aside {
  animation: wh-modal-aside-out 340ms var(--ease-out) 30ms both;
}
.wh-modal.is-closing .wh-modal__dialog {
  animation: wh-modal-dialog-out 400ms var(--ease-out) 60ms both;
}
.wh-modal.is-closing .wh-modal__backdrop {
  animation: wh-modal-backdrop-out 300ms var(--ease-out) 100ms both;
}
@keyframes wh-modal-swiper-out {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.98);
  }
}
@keyframes wh-modal-backdrop-out {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes wh-modal-dialog-out {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  to {
    opacity: 0;
    transform: scale(0.97) translateY(14px);
  }
}
@keyframes wh-modal-aside-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-28px);
  }
}
@keyframes wh-modal-media-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(28px);
  }
}
.wh-modal__aside {
  padding: 52px 28px 28px;
  border-right: 1px solid var(--color-gray-100);
  background: linear-gradient(180deg, var(--color-gray-50) 0%, #fff 100%);
  overflow-y: auto;
  min-height: 0;
}
.wh-modal__media {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  min-width: 0;
  padding: clamp(40px, 5vw, 52px) clamp(16px, 3vw, 28px) clamp(20px, 3vw, 28px);
  background: #f5f5f5;
  border-left: 1px solid var(--color-gray-100);
  overflow: hidden;
}
.wh-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-violet, #7C3AED);
  font-family: var(--font-en);
}
.wh-modal__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px color-mix(in srgb, currentColor 45%, transparent);
}
.wh-modal__eyebrow--primary { color: var(--color-primary); }
.wh-modal__media-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(12px, 2vw, 18px);
  flex-shrink: 0;
  text-align: center;
  width: 100%;
}
.wh-modal__hint-bar {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-gray-300);
  background: var(--color-gray-50);
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
}
.wh-modal__hint-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-gray-700);
  white-space: nowrap;
}
.wh-modal__hint-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-primary);
}
.wh-modal__hint-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-gray-300);
  flex-shrink: 0;
}
.wh-modal__thumb-wrap {
  width: clamp(120px, 28vw, 150px);
  margin: 16px auto 0;
}
.wh-modal__thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 220 / 314;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: var(--border-card);
  box-shadow: var(--shadow-card);
}
.wh-modal__title {
  margin-top: 18px;
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--color-gray-900);
  text-align: center;
}
.wh-modal__desc {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-gray-500);
}
.wh-modal__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(50, 83, 255, 0.18);
  background: linear-gradient(180deg, rgba(50, 83, 255, 0.06) 0%, #fff 100%);
  color: var(--color-gray-900);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: border-color var(--duration-fast), background var(--duration-fast), transform var(--duration-fast);
}
.wh-modal__link[hidden] { display: none !important; }
.wh-modal__link svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-primary); }
.wh-modal__link:hover {
  border-color: rgba(50, 83, 255, 0.35);
  background: rgba(50, 83, 255, 0.08);
  transform: translateY(-1px);
}
.wh-modal__gallery {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.wh-modal__swiper {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0 clamp(44px, 5vw, 52px) 40px;
  box-sizing: border-box;
  overflow: hidden;
}
.wh-modal.is-open .wh-modal__swiper {
  animation: wh-modal-swiper-in 520ms var(--ease-out) 240ms both;
}
@keyframes wh-modal-swiper-in {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.wh-modal__swiper.swiper,
.wh-modal__swiper .swiper-wrapper {
  height: 100%;
}
.wh-modal__swiper .swiper-wrapper { align-items: center; }
.wh-modal__swiper .swiper-slide {
  width: auto;
  max-width: calc(100% - 4px);
  height: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wh-modal__slide-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  line-height: 0;
  cursor: zoom-in;
  transition: opacity var(--duration-fast), transform var(--duration-fast);
}
.wh-modal__slide-link:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}
.wh-modal__slide-link img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-200);
  background: #fff;
  box-shadow: 0 16px 40px -20px rgba(17, 24, 39, 0.22);
}
.wh-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-gray-200);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-gray-900);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: border-color var(--duration-fast), background var(--duration-fast), transform var(--duration-fast);
}
.wh-modal__nav svg { width: 16px; height: 16px; }
.wh-modal__nav:hover {
  border-color: rgba(50, 83, 255, 0.28);
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}
.wh-modal__nav--prev { left: 4px; }
.wh-modal__nav--next { right: 4px; }
.wh-modal__nav.swiper-button-disabled { opacity: 0.35; pointer-events: none; }
.wh-modal__swiper .swiper-pagination { bottom: 4px !important; }
.wh-modal__swiper .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: var(--color-gray-400);
  opacity: 1;
  transition: transform var(--duration-fast), background var(--duration-fast);
}
.wh-modal__swiper .swiper-pagination-bullet-active {
  background: var(--color-primary);
  transform: scale(1.35);
}
.fancybox__container { --fancybox-bg: rgba(17, 24, 39, 0.92); z-index: 500 !important; }
.fancybox__caption { font-family: inherit; font-size: 13px; color: rgba(255, 255, 255, 0.9); }

/* Reveal animation */
.reveal { opacity: 1; transform: none; }
.js-anim .reveal { will-change: transform, opacity; }
.js-anim .reveal.in { will-change: auto; }
.js-anim .wh-business__intro.reveal { will-change: opacity; }
@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal { opacity: 1; transform: none; will-change: auto; }
  .wh-hero__video { animation: none; }
  .wh-biz-card__visual { animation: none; }
  .wh-hero-title, .wh-page-hero__title, .wh-split-title { opacity: 1; }
  .wh-featured-swiper { opacity: 1; visibility: visible; transform: none; }
  .eyebrow::before { animation: none; box-shadow: 0 0 6px 1px color-mix(in srgb, var(--eyebrow-glow-color) 50%, transparent); }
  .wh-modal__backdrop,
  .wh-modal__dialog,
  .wh-modal__aside,
  .wh-modal__media,
  .wh-modal__swiper {
    animation: none !important;
  }
}

/* Responsive */
@media (min-width: 1025px) {
  .wh-hero__visual {
    transform: translateX(17%);
  }
  .wh-expertise__copy {
    position: sticky;
    max-width: 360px;
  }
  .wh-split-section__copy {
    position: sticky;
  }
}
@media (max-width: 1024px) {
  .wh-header__inner { grid-template-columns: 1fr auto; }
  .wh-nav { display: none; }
  .wh-menu-toggle { display: grid; place-items: center; }
  .wh-mobile-menu {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 32px;
  }
  .wh-hero {
    display: flex;
    flex-direction: column;
  }
  .wh-hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 28px;
    order: 1;
  }
  .wh-hero__copy {
    max-width: none;
    width: 100%;
  }
  .wh-hero-title .split-line,
  .wh-split-title .split-line {
    white-space: normal;
    flex-wrap: wrap;
  }
  .wh-hero__visual {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    width: min(100%, 520px);
    margin-inline: auto;
    height: auto;
    margin-block: 0;
    order: 2;
    pointer-events: auto;
    transform: none;
  }
  .wh-pf-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 28%);
    gap: clamp(12px, 3vw, 24px);
  }
  .wh-pf-hero__copy { max-width: 50ch; }
  .wh-pf-hero__visual {
    max-width: clamp(170px, 24vw, 280px);
  }
  .wh-pf-hero__visual img {
    max-height: clamp(220px, 32vw, 360px);
  }
  .wh-hero__bg { inset: 0; }
  .wh-hero__grid,
  .wh-impact-panel,
  .wh-expertise,
  .wh-split-section,
  .wh-media-split {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    overflow: visible;
  }
  .wh-modal__layout {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    max-height: min(92vh, 820px);
    overflow: hidden;
  }
  @keyframes wh-modal-aside-in {
    from {
      opacity: 0;
      transform: translateY(-18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes wh-modal-media-in {
    from {
      opacity: 0;
      transform: translateY(22px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes wh-modal-aside-out {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-18px);
    }
  }
  @keyframes wh-modal-media-out {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(22px);
    }
  }
  .wh-modal__aside {
    border-right: 0;
    border-bottom: 1px solid var(--color-gray-100);
    padding: 44px 16px 16px;
    flex-shrink: 0;
    overflow-y: auto;
    max-height: 42vh;
  }
  .wh-modal__thumb-wrap {
    width: clamp(120px, 34vw, 168px);
    margin-top: 12px;
  }
  .wh-modal__title { margin-top: 12px; font-size: 17px; }
  .wh-modal__desc {
    font-size: 12px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .wh-modal__link { margin-top: 12px; padding: 8px 14px; }
  .wh-modal__media {
    padding: 14px 12px 12px;
    border-left: 0;
    border-top: 1px solid var(--color-gray-100);
    justify-content: flex-start;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
  }
  .wh-modal__media-head {
    margin-bottom: 10px;
    gap: 8px;
  }
  .wh-modal__hint-bar {
    padding: 6px 10px;
    gap: 6px 8px;
  }
  .wh-modal__hint-item { font-size: 11px; }
  .wh-modal__gallery {
    flex: 1 1 auto;
    min-height: clamp(200px, 36vh, 380px);
    height: auto;
    max-height: none;
  }
  .wh-modal__swiper {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0 8px 32px;
    box-sizing: border-box;
  }
  .wh-modal__swiper .swiper-slide {
    width: auto;
    max-width: calc(100vw - 56px);
  }
  .wh-modal__slide-link {
    width: auto;
    max-width: 100%;
  }
  .wh-modal__slide-link img {
    width: auto;
    height: auto;
    max-width: calc(100vw - 64px);
    max-height: 100%;
    object-fit: contain;
  }
  .wh-modal__nav { display: none; }
  .wh-expertise__copy,
  .wh-split-section__copy {
    position: static !important;
    top: auto !important;
    transform: none !important;
    max-width: none;
  }
  .wh-has-scroll-parallax > img,
  .wh-framed-media.wh-has-scroll-parallax img,
  .wh-media-box.wh-has-scroll-parallax img,
  .wh-expertise__media.wh-has-scroll-parallax img {
    position: static;
    height: 100% !important;
    min-height: 0 !important;
    top: 0 !important;
    transform: none !important;
    will-change: auto;
  }
  .wh-expertise__media,
  .wh-expertise__media img {
    aspect-ratio: auto;
  }
  .wh-expertise__media img {
    height: auto;
    object-fit: cover;
  }
  .wh-business {
    flex-direction: column;
    gap: clamp(24px, 5vw, 32px);
  }
  .wh-business__cards { grid-template-columns: 1fr; }
  .wh-svc-grid { grid-template-columns: 1fr; }
  .wh-svc-grid--quad { grid-template-columns: 1fr; }
  .wh-svc-grid--duo { grid-template-columns: 1fr; }
  .wh-mkt-bento { grid-template-columns: 1fr; }
  .wh-mkt-tile { min-height: 0; }
  .wh-cine-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(36px, 5vw, 44px) clamp(20px, 2.4vw, 24px);
    padding-top: clamp(40px, 5vw, 48px);
  }
  .wh-cine-step:nth-child(2n) .wh-cine-step__rail { display: none; }
  .wh-expertise__thumbs { grid-template-columns: 1fr; }
  .wh-trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .wh-impact-stats { grid-template-columns: repeat(3, 1fr); }
  .wh-impact-panel { padding: clamp(24px, 4vw, 36px); }
  .wh-map-card {
    aspect-ratio: 16 / 10;
    min-height: clamp(200px, 52vw, 280px);
    width: 100%;
  }
  .wh-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root {
    --section-lg: clamp(48px, 10vw, 72px);
    --section-md: clamp(40px, 8vw, 56px);
    --container-padding: clamp(16px, 4vw, 24px);
  }
  .wh-header__cta,
  .wh-header .wh-lang { display: none; }
  .wh-section { padding-block: var(--section-lg); }
  .wh-section-head { margin-bottom: 32px; }
  .display-xl { font-size: clamp(30px, 8vw, 40px); line-height: 1.14; }
  .display-lg { font-size: clamp(28px, 7vw, 36px); }
  .heading-xl { font-size: clamp(24px, 6vw, 32px); line-height: 1.2; }
  .heading-lg { font-size: clamp(22px, 5.5vw, 28px); }
  .body-lg { font-size: 15px; line-height: 1.65; }
  .wh-hero {
    --hero-pad-y: clamp(36px, 8vw, 52px);
    padding-bottom: calc(var(--hero-pad-y) + 48px);
  }
  .wh-hero .display-xl { font-size: clamp(28px, 7.5vw, 38px); }
  .wh-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .wh-hero__actions .button-primary,
  .wh-hero__actions .button-secondary {
    width: 100%;
  }
  .wh-hero__pills { gap: 8px; }
  .wh-pf-hero {
    --wh-pf-hero-pad-b: clamp(24px, 5vw, 36px);
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: var(--wh-pf-hero-pad-b);
  }
  .wh-pf-hero__inner {
    grid-template-columns: 1fr;
    position: relative;
    min-height: clamp(210px, 50vw, 320px);
  }
  .wh-pf-hero__copy {
    max-width: min(100%, calc(100% - clamp(104px, 29vw, 176px)));
  }
  .wh-pf-hero__copy .body-lg {
    font-size: 15px;
    line-height: 1.65;
  }
  .wh-pf-hero__visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(124px, 31vw, 208px);
    max-width: none;
    margin-bottom: 0;
  }
  .wh-pf-hero__visual img {
    max-height: clamp(176px, 38vw, 288px);
  }
  .wh-pf-proof__inner {
    grid-template-columns: 1fr;
    position: relative;
    min-height: clamp(190px, 48vw, 300px);
  }
  .wh-pf-proof__copy {
    max-width: min(100%, calc(100% - clamp(104px, 29vw, 176px)));
  }
  .wh-pf-proof__visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(124px, 31vw, 208px);
    max-width: none;
  }
  .wh-pf-proof__visual img {
    max-height: clamp(168px, 36vw, 272px);
  }
  .wh-page-hero {
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: clamp(28px, 6vw, 40px);
  }
  .wh-page-services .wh-page-hero {
    padding-top: clamp(36px, 8vw, 52px);
    padding-bottom: clamp(36px, 8vw, 52px);
  }
  .wh-page-services .wh-page-hero__title-wrap {
    font-size: clamp(32px, 9vw, 48px);
    text-align: left;
    margin-inline: auto;
    width: fit-content;
    max-width: min(100%, 100%);
    display: block;
  }
  .wh-page-services .wh-page-hero__part,
  .wh-page-hero__part {
    white-space: normal;
    text-align: left;
    width: auto;
  }
  .wh-page-services .wh-page-hero__part--first,
  .wh-page-hero__part--first {
    padding-right: clamp(72px, 22vw, 120px);
  }
  .wh-page-services .wh-page-hero__part--last,
  .wh-page-hero__part--last {
    margin-left: clamp(48px, 18vw, 100px);
    margin-top: clamp(16px, 5vw, 32px);
    text-align: left;
    white-space: nowrap;
  }
  .lang-en .wh-page-services .wh-page-hero__part--first {
    padding-right: clamp(64px, 20vw, 108px);
  }
  .lang-en .wh-page-services .wh-page-hero__part--last {
    margin-left: clamp(52px, 19vw, 104px);
    margin-top: clamp(14px, 4.5vw, 28px);
    white-space: normal !important;
  }
  .wh-page-services .wh-page-hero__media,
  .wh-page-hero__media {
    position: absolute;
    left: clamp(20px, 9vw, 52px);
    top: clamp(0px, 4vw, 16px);
    width: clamp(84px, 25vw, 136px);
    margin: 0;
    transform: none;
  }
  .wh-page-services .heading-xl,
  .wh-page-services .wh-split-title {
    font-size: clamp(24px, 6.5vw, 34px);
  }
  .wh-page-services .wh-page-hero .body-lg,
  .wh-page-hero .body-lg {
    font-size: 15px;
    max-width: none;
  }
  .wh-jump {
    justify-content: flex-start;
    gap: 8px;
  }
  .wh-jump__pill {
    white-space: normal;
    font-size: 13px;
    padding: 10px 16px;
    min-height: 42px;
  }
  .wh-cta {
    padding: clamp(24px, 5vw, 32px);
    border-radius: var(--radius-lg);
  }
  .wh-cta__grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .wh-cta__grid .button-primary {
    width: 100%;
    justify-content: center;
  }
  .wh-cta .heading-xl {
    font-size: clamp(22px, 5.5vw, 28px);
    line-height: 1.28;
  }
  .wh-stats-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(6px, 2vw, 12px);
    padding-block: clamp(20px, 5vw, 28px);
    align-items: start;
  }
  .wh-page-services .wh-stats-row .wh-stat__num {
    font-size: clamp(20px, 6.2vw, 32px);
    letter-spacing: -0.03em;
  }
  .wh-page-services .wh-stats-row .wh-stat__label {
    font-size: clamp(9px, 2.5vw, 11px);
    letter-spacing: 0.05em;
    margin-top: 4px;
    line-height: 1.35;
    word-break: keep-all;
  }
  .lang-kr .wh-page-services .wh-stats-row .wh-stat__label {
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--font-kr);
    font-size: clamp(10px, 2.7vw, 12px);
  }
  .wh-impact-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(8px, 2.5vw, 14px);
  }
  .wh-impact-stats div {
    gap: 4px;
    align-items: center;
    text-align: center;
  }
  .wh-impact-stats strong {
    font-size: clamp(22px, 6.5vw, 32px);
  }
  .wh-impact-stats div > span {
    font-size: 10px;
    letter-spacing: 0.02em;
    line-height: 1.3;
  }
  .wh-trust-bar__inner {
    grid-template-columns: 1fr;
    padding: clamp(20px, 4vw, 28px);
    gap: 20px;
  }
  .wh-stat { justify-content: flex-start; }
  .wh-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .wh-footer__cols { grid-template-columns: 1fr 1fr; }
  .wh-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .wh-footer__secure { white-space: normal; }
  .wh-footer__legal { max-width: none; }
  .wh-featured-nav { display: none; }
  .wh-featured-swiper__viewport {
    padding-inline: 0;
  }
  .wh-featured-swiper > .swiper-pagination {
    margin-top: 18px;
  }
  .wh-biz-card {
    min-height: 0;
    padding: 20px;
    padding-bottom: 64px;
  }
  .wh-biz-card__body { padding-right: clamp(84px, 22vw, 108px); }
  .wh-biz-card__visual {
    width: clamp(76px, 20vw, 96px);
    height: clamp(76px, 20vw, 96px);
    top: 10px;
    right: 10px;
  }
  .wh-biz-card__arrow { right: 20px; bottom: 20px; }
  .wh-svc-card { padding: 20px; }
  .wh-media-box:has(> img) {
    min-height: clamp(200px, 56vw, 280px);
    aspect-ratio: 4 / 3;
  }
  .wh-thumb-grid { gap: 8px; }
  .wh-split-section { gap: 28px; }
  .wh-cat-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .wh-poster-wall {
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 16px 10px;
  }
  .wh-partner-wall {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }
  .wh-partner--wide { grid-column: span 1; }
  .wh-modal { padding: 12px; }
  .wh-modal__dialog { max-height: min(92vh, 820px); }
  .wh-modal__aside { max-height: 38vh; }
  .wh-modal__gallery {
    min-height: clamp(180px, 34vh, 320px);
  }
  .wh-ticker__track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .wh-ticker__track::-webkit-scrollbar { display: none; }
  .wh-ticker__item { flex-shrink: 0; }
}
@media (max-width: 640px) {
  .wh-page-services .wh-page-hero__title-wrap,
  .wh-page-hero__title-wrap {
    font-size: clamp(28px, 8.5vw, 36px);
  }
  .wh-page-services .wh-page-hero__part--first,
  .wh-page-hero__part--first {
    padding-right: clamp(60px, 19vw, 96px);
  }
  .wh-page-services .wh-page-hero__part--last,
  .wh-page-hero__part--last {
    margin-left: clamp(36px, 17vw, 82px);
    margin-top: clamp(12px, 5vw, 26px);
  }
  .lang-en .wh-page-services .wh-page-hero__part--last {
    margin-left: clamp(40px, 16vw, 84px);
    margin-top: clamp(10px, 4vw, 22px);
    white-space: normal !important;
  }
  .wh-page-services .wh-page-hero__media,
  .wh-page-hero__media {
    left: clamp(12px, 7vw, 32px);
    width: clamp(72px, 22vw, 108px);
  }
  .wh-jump {
    flex-direction: column;
    align-items: stretch;
  }
  .wh-jump__pill { width: 100%; }
  .wh-expertise__thumbs { gap: 8px; }
  .wh-hero__visual { width: 100%; max-width: 400px; }
  .wh-pf-hero {
    --wh-pf-hero-pad-b: clamp(20px, 4vw, 28px);
  }
  .wh-pf-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    gap: clamp(4px, 1.5vw, 12px);
  }
  .wh-pf-hero__copy {
    max-width: none;
    order: 1;
  }
  .wh-pf-hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    order: 2;
    align-self: flex-end;
    width: min(64%, 232px);
    margin-bottom: calc(var(--wh-pf-hero-pad-b) * -1);
  }
  .wh-pf-hero__visual img {
    max-height: clamp(152px, 46vw, 248px);
  }
  .wh-cine-flow {
    grid-template-columns: 1fr;
    gap: clamp(36px, 8vw, 44px);
    padding-top: clamp(36px, 8vw, 44px);
  }
  .wh-cine-step__rail { display: none; }
}
@media (max-width: 480px) {
  .wh-footer__cols { grid-template-columns: 1fr; }
  .wh-hero__pills .badge {
    font-size: 12px;
    padding: 6px 10px;
  }
  .wh-impact-panel { padding: 20px; }
  .wh-impact-stats {
    gap: 6px;
  }
  .wh-impact-stats strong {
    font-size: clamp(18px, 5.8vw, 26px);
  }
  .wh-impact-stats div > span {
    font-size: 9px;
  }
  .wh-modal__aside { max-height: 36vh; }
  .wh-modal__gallery {
    min-height: clamp(160px, 32vh, 280px);
  }
  .wh-modal__swiper {
    padding-bottom: 28px;
  }
  .wh-modal__swiper .swiper-pagination { bottom: 0 !important; }
  .wh-modal__thumb-wrap {
    width: clamp(128px, 38vw, 180px);
  }
  .wh-map-card {
    min-height: clamp(180px, 56vw, 260px);
  }
  .wh-pf-hero {
    --wh-pf-hero-pad-b: clamp(16px, 4vw, 24px);
    padding-top: calc(var(--header-h) + 24px);
  }
  .wh-pf-hero__copy .display-lg {
    font-size: clamp(26px, 7.5vw, 32px);
    line-height: 1.16;
  }
  .wh-pf-hero__copy .body-lg {
    font-size: 14px;
    line-height: 1.62;
    margin-top: 14px;
  }
  .wh-pf-hero__visual {
    width: min(70%, 196px);
  }
  .wh-pf-hero__visual img {
    max-height: clamp(132px, 42vw, 210px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .wh-hero__video { animation: none; }
}
