:root {
  --bg: #061520;
  --bg-2: #03111b;
  --text: #eeeeee;
  --muted: rgba(255, 255, 255, 0.72);
  --blue: #107af2;
  --line: rgba(255, 255, 255, 0.16);
  --container: min(1440px, calc(100% - 120px));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

.main-page {
  overflow: clip;
  position: relative;
  width: 100%;
}

.section {
  position: relative;
  width: 100%;
}

.hero {
  background: #020c14;
  height: 970px;
}

.hero-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 1;
  position: absolute;
  transition: opacity 0.42s ease;
  width: 100%;
}

.hero-video.is-switching {
  opacity: 0.4;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(9, 25, 37, 0) 0%, rgba(0, 25, 44, 0.1) 65.7%, #061520 87.04%),
    linear-gradient(180deg, rgba(9, 25, 37, 0.21) 17.22%, rgba(9, 25, 37, 0.25) 38.99%, rgba(6, 21, 32, 0.83) 87.96%);
  inset: 0;
  position: absolute;
}

.topbar {
  align-items: center;
  background: transparent;
  backdrop-filter: blur(0);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 80px;
  justify-content: center;
  left: 50%;
  padding: 21px 240px;
  position: absolute;
  top: 0;
  transition: background-color 0.2s ease, backdrop-filter 0.2s ease;
  transform: translateX(-50%);
  width: 1920px;
  z-index: 10;
}

.topbar:hover,
.topbar:focus-within,
.topbar.is-hovered {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
}

.topbar-inner {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.topbar-logo {
  align-items: center;
  display: flex;
  gap: 0;
  height: 38px;
  margin-right: 0;
  padding: 0;
  position: relative;
  text-decoration: none;
  width: 244px;
}

.topbar-logo img {
  height: 38px;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.18s ease;
  width: 244px;
}

.topbar-logo .logo-default {
  opacity: 1;
}

.topbar-logo .logo-hover {
  opacity: 0;
}

.topbar:hover .topbar-logo .logo-default,
.topbar:focus-within .topbar-logo .logo-default,
.topbar.is-hovered .topbar-logo .logo-default {
  opacity: 0;
}

.topbar:hover .topbar-logo .logo-hover,
.topbar:focus-within .topbar-logo .logo-hover,
.topbar.is-hovered .topbar-logo .logo-hover {
  opacity: 1;
}

.topbar-nav {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 32px;
}

.gnb-item {
  position: relative;
}

.gnb-link {
  color: rgba(255, 255, 255, 0.74);
  align-items: center;
  border-radius: 50px;
  display: inline-flex;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  line-height: 20px;
  padding: 0 12px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gnb-link.is-focus {
  color: #fff;
}

.gnb-dropdown {
  left: 50%;
  min-width: 165px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 30;
}

.gnb-dropdown::before {
  content: "";
  height: 12px;
  left: 0;
  position: absolute;
  right: 0;
  top: -12px;
}

.gnb-item:hover .gnb-dropdown {
  opacity: 0.9;
  pointer-events: auto;
  transform: translateX(-50%) translateY(8px);
}

.gnb-dropdown a {
  align-items: center;
  background: #107af2;
  color: #fff;
  display: flex;
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  line-height: normal;
  min-height: 41px;
  padding: 12px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.gnb-dropdown a:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.gnb-dropdown a:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.gnb-dropdown a:hover {
  background: #0667d5;
  font-weight: 700;
}

.topbar:hover .gnb-link,
.topbar.is-hovered .gnb-link {
  color: #fff;
}

.gnb-item:hover .gnb-link {
  color: #107af2;
}

.lang-menu {
  position: relative;
}

.lang-btn {
  align-items: center;
  background: transparent;
  border: 1px solid #eaeaea;
  border-radius: 999px;
  color: #eaeaea;
  cursor: pointer;
  display: flex;
  gap: 6px;
  height: 36px;
  padding: 4px 6px;
}

.lang-btn img {
  height: 20px;
  width: 20px;
}

.lang-btn img:last-child {
  height: 24px;
  transition: transform 0.2s ease;
  width: 24px;
}

.lang-btn span {
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.lang-menu.is-open .lang-btn img:last-child {
  transform: rotate(180deg);
}

.lang-dropdown {
  box-shadow: 0 0 8.8px rgba(0, 0, 0, 0.2);
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  width: 89px;
  z-index: 40;
}

.lang-menu.is-open .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.lang-dropdown .lang-option {
  border: 0;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 36px;
  line-height: 20px;
  padding: 8px 0;
  text-align: center;
  width: 100%;
}

.lang-dropdown .lang-option:first-child {
  background: #0667d5;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.lang-dropdown .lang-option:last-child {
  background: #107af2;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.lang-dropdown .lang-option:hover,
.lang-dropdown .lang-option.is-active {
  filter: brightness(1.05);
  font-weight: 700;
}

.hero-inner {
  left: 50%;
  position: absolute;
  top: 335px;
  transform: translateX(-50%);
  width: var(--container);
  z-index: 4;
}

.hero-inner .hero-title {
  font-size: 64px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}

.hero-title .title-line {
  display: block;
}

.hero-title .title-line-1 {
  font-weight: 300;
}

.hero-title .title-line-2 {
  color: #f3f3f3;
  font-weight: 600;
}

.hero-title.is-english {
  font-family: "Poppins", sans-serif;
}

.hero-title.is-english .title-line-1 {
  font-weight: 300;
}

.hero-title.is-english .title-line-2 {
  font-weight: 600;
}

.hero-inner .hero-desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.5;
  margin: 20px 0 0;
  width: 1045px;
}

.hero-desc span {
  display: block;
}

.hero-inner .btn-pill {
  left: 0;
  margin-top: 0;
  position: absolute;
  top: 300px;
  transform: scale(0.9);
  transform-origin: left top;
}

.hero-inner .btn-pill span {
  font-size: 16px;
}

.btn-pill {
  align-items: center;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.12);
  border: 1.5px solid rgba(159, 159, 159, 0.85);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  gap: 14px;
  margin-top: 46px;
  padding: 11px 20px;
}

.btn-pill span {
  font-size: 17px;
  line-height: 1.5;
}

.btn-pill img {
  height: 32px;
  width: 32px;
}

.hero-cta-btn {
  background: rgba(0, 0, 0, 0.1);
  border-color: #9f9f9f;
  gap: 15px;
  padding: 12px 20px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-cta-btn .btn-icon {
  display: block;
  height: 32px;
  position: relative;
  width: 32px;
}

.hero-cta-btn .btn-icon img {
  left: 0;
  position: absolute;
  top: 0;
  transform: rotate(0deg);
  transform-origin: center;
  transition: opacity 0.56s cubic-bezier(0.22, 1, 0.36, 1), transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

.hero-cta-btn .btn-icon .icon-hover {
  opacity: 0;
}

.hero-cta-btn:hover,
.hero-cta-btn:focus-visible {
  background: rgba(0, 0, 0, 0.4);
  border-color: #2167ec;
}

.hero-cta-btn:hover .btn-icon .icon-default,
.hero-cta-btn:focus-visible .btn-icon .icon-default {
  opacity: 0;
}

.hero-cta-btn:hover .btn-icon .icon-hover,
.hero-cta-btn:focus-visible .btn-icon .icon-hover {
  opacity: 1;
  transform: rotate(-45deg);
}

.btn-blue {
  border-color: #2167ec;
}

.btn-dark {
  border-color: rgba(255, 255, 255, 0.14);
  margin-top: 0;
  padding: 9px 20px;
}

.btn-glass {
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #d0d0d0;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.hero-indicator {
  align-items: center;
  display: flex;
  gap: 41.333px;
  left: 50%;
  position: absolute;
  top: 840px;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-nav {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 6;
}

.hero-nav-btn {
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  width: 48px;
}

.hero-nav-btn img {
  height: 40px;
  opacity: 1;
  width: 40px;
}

.hero-nav-prev {
  left: 28px;
}

.hero-nav-prev img {
  transform: rotate(180deg);
}

.hero-nav-next {
  right: 28px;
}

.hero-nav-btn:hover {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-50%) scale(1.04);
}

.indicator-steps {
  align-items: center;
  display: flex;
  gap: 10px;
}

.indicator-step {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  height: 20px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 20px;
}

.indicator-step svg {
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s ease;
}

.indicator-step.is-active svg {
  opacity: 1;
}

.indicator-step .ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1.6;
}

.indicator-step .ring-fill {
  fill: none;
  stroke: #fff;
  stroke-dasharray: 44;
  stroke-dashoffset: 44;
  stroke-linecap: round;
  stroke-width: 1.8;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.step-core {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: block;
  height: 6px;
  width: 6px;
}

.indicator-step.is-active .step-core {
  background: rgba(255, 255, 255, 0.95);
}

.indicator-step-ghost {
  cursor: default;
  height: 6px;
  width: 6px;
}

.indicator-step-ghost .step-core {
  background: rgba(255, 255, 255, 0.35);
}

.indicator-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.6));
  height: 16px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 11.333px;
}

.indicator-toggle::before {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 70%);
  content: "";
  height: 24px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
}

.pause-bars {
  align-items: center;
  display: inline-flex;
  justify-content: space-between;
  position: relative;
  width: 11.333px;
  z-index: 1;
}

.pause-bars span {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1px;
  display: block;
  height: 16px;
  width: 3.333px;
}

.play-triangle {
  border-bottom: 8px solid transparent;
  border-left: 11px solid rgba(255, 255, 255, 0.95);
  border-top: 8px solid transparent;
  display: none;
  height: 0;
  position: relative;
  width: 0;
  z-index: 1;
}

.indicator-toggle.is-paused .pause-bars {
  display: none;
}

.indicator-toggle.is-paused .play-triangle {
  display: block;
}

.intro {
  align-items: center;
  background: radial-gradient(760px 620px at 50% 53%, rgba(11, 42, 102, 0.45), transparent 72%), #061520;
  display: flex;
  flex-direction: column;
  height: 1748px;
  justify-content: flex-start;
  padding-top: 74px;
}

.intro-core {
  align-items: center;
  display: flex;
  height: 830px;
  justify-content: center;
  position: relative;
  width: 1230px;
}

.intro-glow {
  inset: 0;
  opacity: 0.95;
  position: absolute;
}

.intro-ai {
  border-radius: 70px;
  box-shadow: inset 0 0 0 1px rgba(96, 158, 255, 0.3);
  height: 584px;
  object-fit: cover;
  width: 603px;
}

.intro .eyebrow {
  color: rgba(255, 255, 255, 0.32);
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  margin: 112px 0 0;
}

.intro h2 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin: 24px 0 0;
}

.intro-copy {
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.8;
  margin: 38px 0 0;
  text-align: center;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.65);
}

.intro-bottom-light {
  margin-top: 54px;
  width: 1187px;
}

.intro .btn-pill {
  margin-top: 58px;
}

.intro {
  background: #061520;
  display: block;
  height: auto;
  min-height: 100vh;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.intro-cine-wrap {
  height: 420vh;
  position: relative;
}

.intro-cine-sticky {
  background: radial-gradient(760px 620px at 50% 53%, rgba(11, 42, 102, 0.45), transparent 72%), #061520;
  height: 100vh;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 1;
}

.intro-cine-sticky::before {
  background-image: linear-gradient(rgba(16, 122, 242, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 122, 242, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  position: absolute;
}

.intro-cine-node-scene {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  position: absolute;
  will-change: transform, opacity;
  z-index: 2;
}

.intro-cine-net-group {
  height: 440px;
  position: relative;
  width: 640px;
}

.intro-cine-svg {
  display: block;
  height: 100%;
  inset: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.intro-cine-path {
  fill: none;
  opacity: 0;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  stroke-linecap: round;
  stroke-width: 1.6;
  transition: opacity 0.26s ease, stroke-dashoffset 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-cine-path.draw {
  opacity: 1;
  stroke-dashoffset: 0;
}

.intro-cine-path.path-mob {
  stroke: #0667d5;
}

.intro-cine-path.path-bld {
  stroke: #0667d5;
}

.intro-cine-path.path-sec {
  stroke: #0667d5;
}

.intro-cine-end {
  opacity: 0;
  stroke-width: 1.5;
  transition: opacity 0.3s ease;
}

.intro-cine-end.end-mob {
  fill: rgba(6, 103, 213, 0.12);
  stroke: #0667d5;
}

.intro-cine-end.end-bld {
  fill: rgba(6, 103, 213, 0.12);
  stroke: #0667d5;
}

.intro-cine-end.end-sec {
  fill: rgba(6, 103, 213, 0.12);
  stroke: #0667d5;
}

.intro-cine-ai {
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.62);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.intro-cine-ai-ring {
  border: 1px solid rgba(6, 103, 213, 0.24);
  border-radius: 50%;
  position: absolute;
}

.intro-cine-ai-ring.ring-1 {
  inset: -16px;
}

.intro-cine-ai-ring.ring-2 {
  inset: -36px;
}

.intro-cine-ai-ring.ring-3 {
  inset: -56px;
}

.intro-cine-ai-core {
  align-items: center;
  background: radial-gradient(circle at 38% 38%, rgba(6, 103, 213, 0.22) 0%, rgba(6, 103, 213, 0.06) 60%, transparent 100%);
  border: 1.5px solid rgba(6, 103, 213, 0.42);
  border-radius: 88px;
  box-shadow: 0 0 48px rgba(6, 103, 213, 0.28), inset 0 0 24px rgba(6, 103, 213, 0.12);
  display: flex;
  height: 372px;
  justify-content: center;
  overflow: hidden;
  width: 372px;
}

.intro-cine-ai-core img {
  height: 372px;
  object-fit: cover;
  width: 372px;
}

.intro-cine-card {
  backdrop-filter: blur(20px);
  background: rgba(10, 15, 26, 0.84);
  border: 1px solid rgba(6, 103, 213, 0.42);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 20px rgba(6, 103, 213, 0.16);
  min-width: 196px;
  opacity: 0;
  padding: 18px 20px;
  position: absolute;
  transition: opacity 0.35s ease;
  will-change: transform, opacity;
  z-index: 10;
}

.intro-cine-card .card-kicker {
  color: #0667d5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  margin: 0;
  text-transform: uppercase;
}

.intro-cine-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 8px 0 0;
}

.intro-cine-card p:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
  margin: 8px 0 0;
}

.intro-cine-card.card-mob {
  border-color: rgba(6, 103, 213, 0.42);
  left: -42px;
  top: 50%;
  transform: translate(0, -50%) translateX(66px) scale(0.82);
}

.intro-cine-card.card-mob .card-kicker {
  color: #0667d5;
}

.intro-cine-card.card-bld {
  border-color: rgba(6, 103, 213, 0.42);
  right: -48px;
  top: 3%;
  transform: translateY(-22px) scale(0.82);
}

.intro-cine-card.card-bld .card-kicker {
  color: #0667d5;
}

.intro-cine-card.card-sec {
  border-color: rgba(6, 103, 213, 0.42);
  bottom: 3%;
  right: -48px;
  transform: translateY(22px) scale(0.82);
}

.intro-cine-card.card-sec .card-kicker {
  color: #0667d5;
}

.intro-cine-split-scene {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

.intro-cine-split-scene p {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(36px, 5.2vw, 92px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  position: absolute;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.15);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  will-change: transform, opacity;
}

.intro-cine-split-scene .split-left {
  left: 50%;
  text-align: right;
  transform-origin: right center;
}

.intro-cine-split-scene .split-right {
  color: #0667d5;
  left: 50%;
  right: auto;
  text-align: left;
  transform-origin: left center;
}

.intro-cine-text-scene {
  align-items: center;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  text-align: center;
  transform: translateY(34px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 3;
}

.intro-cine-eyebrow {
  color: rgba(255, 255, 255, 0.32);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  margin: 0;
}

.intro-cine-text-scene h2 {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin: 32px 0 0;
}

.intro-cine-copy {
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.8;
  margin: 61px 0 0;
  text-shadow: 0 0 8.2px rgba(0, 0, 0, 0.65);
}

.intro-cine-bottom-glow {
  margin-top: 62px;
  opacity: 0.88;
  width: 1187px;
}

.intro-cine-btn {
  margin-top: 40px;
}

.business {
  --business-fade: 1;
  --business-lift: 0px;
  --business-scale: 1;
  --business-seq-y: 26px;
  --business-seq-ease: cubic-bezier(0.18, 0.88, 0.22, 1);
  --business-card-enter: 26px;
  --business-card-shift-x: 0px;
  background: #061520;
  height: 1080px;
  margin-top: 0;
  opacity: 1;
  overflow: hidden;
  position: relative;
  transform: none;
  transform-origin: center top;
  will-change: auto;
  z-index: 11;
}

.business:not(.business-seq-start) {
  --business-card-shift-x: 140px;
}

.business.business-seq-start {
  --business-card-shift-x: 0px;
}

.business:not(.business-seq-start) .business-bg-union,
.business:not(.business-seq-start) .business-tabs,
.business:not(.business-seq-start) .business-copy .tag,
.business:not(.business-seq-start) .business-copy h3,
.business:not(.business-seq-start) .business-copy p,
.business:not(.business-seq-start) .business-copy .arrow-nav,
.business:not(.business-seq-start) .business-card {
  opacity: 0;
}

.business:not(.business-seq-start) .business-bg-union {
  transform: translateY(var(--business-seq-y));
  transition: opacity 2.08s var(--business-seq-ease), transform 2.08s var(--business-seq-ease);
  transition-delay: 0.28s;
}

.business:not(.business-seq-start) .business-tabs {
  transform: translateX(-50%) translateY(var(--business-seq-y));
  transition: opacity 2.08s var(--business-seq-ease), transform 2.08s var(--business-seq-ease);
  transition-delay: 0.56s;
}

.business:not(.business-seq-start) .business-copy .tag,
.business:not(.business-seq-start) .business-copy h3,
.business:not(.business-seq-start) .business-copy p,
.business:not(.business-seq-start) .business-copy .arrow-nav {
  transform: translateY(var(--business-seq-y));
  transition: opacity 1.98s var(--business-seq-ease), transform 1.98s var(--business-seq-ease);
}

.business:not(.business-seq-start) .business-copy .tag {
  transition-delay: 0.9s;
}

.business:not(.business-seq-start) .business-copy h3 {
  transition-delay: 1.16s;
}

.business:not(.business-seq-start) .business-copy p {
  transition-delay: 1.42s;
}

.business:not(.business-seq-start) .business-copy .arrow-nav {
  transition-delay: 1.64s;
}

.business:not(.business-seq-start) .business-card {
  transition-delay: 1.88s;
}

.business:not(.business-seq-start) .business-card.slot-1 {
  transition-delay: 2.1s;
}

.business:not(.business-seq-start) .business-card.slot-2 {
  transition-delay: 2.32s;
}

.business.business-seq-start .business-bg-union,
.business.business-seq-start .business-copy .tag,
.business.business-seq-start .business-copy h3,
.business.business-seq-start .business-copy p,
.business.business-seq-start .business-copy .arrow-nav,
.business.business-seq-start .business-card {
  opacity: 1;
}

.business.business-seq-start .business-bg-union {
  transform: translateY(0);
}

.business.business-seq-start .business-tabs {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.business-bg-union {
  height: auto;
  left: 0;
  object-fit: contain;
  opacity: 0.28;
  pointer-events: none;
  position: absolute;
  top: -6px;
  width: 790px;
  z-index: 0;
}

.business-poly {
  display: none;
  height: 860px;
  left: -180px;
  opacity: 0.42;
  position: absolute;
  top: 320px;
  width: 740px;
}

.business-poly::before,
.business-poly::after {
  content: "";
  position: absolute;
}

.business-poly::before {
  border: 1px solid rgba(120, 167, 255, 0.22);
  height: 380px;
  left: -80px;
  top: 120px;
  transform: rotate(32deg);
  width: 420px;
}

.business-poly::after {
  border: 1px solid rgba(120, 167, 255, 0.22);
  height: 420px;
  left: 130px;
  top: 290px;
  transform: rotate(33deg);
  width: 360px;
}

.business-tabs {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-sizing: border-box;
  display: flex;
  left: 50%;
  padding-left: 569px;
  position: absolute;
  top: 148px;
  transform: translateX(-50%);
  width: var(--container);
  z-index: 2;
}

.business-tabs button {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  height: 72px;
  padding: 0 30px;
}

.business-tabs button:disabled {
  cursor: default;
  opacity: 1;
}

.business-tabs button.is-active {
  border-bottom: 2px solid var(--blue);
  color: #fff;
  font-weight: 600;
}

.business-content {
  align-items: flex-start;
  display: flex;
  gap: 155px;
  justify-content: flex-start;
  left: 50%;
  position: absolute;
  top: 304px;
  transform: translateX(-50%);
  width: var(--container);
  z-index: 2;
}

.business-copy {
  flex-shrink: 0;
  padding-top: 86px;
  width: 414px;
}

.business-copy .tag {
  color: var(--blue);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 1.25;
  margin: 0;
}

.business-copy h3 {
  font-family: "Poppins", sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.5;
  margin: 8px 0 0;
}

.business-copy p {
  color: #eee;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.6;
  margin: 30px 0 0;
}

.arrow-nav {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.arrow-nav button {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 48px;
  padding: 0;
  width: 48px;
}

.arrow-nav button img {
  height: 48px;
  width: 48px;
}

.business-nav-btn {
  align-items: center;
  background: #0667d5 !important;
  border: 0;
  border-radius: 113px;
  display: inline-flex;
  justify-content: center;
  padding: 6.127px 7.352px;
  transition: filter 0.2s ease;
}

.business-nav-btn:hover {
  filter: brightness(1.08);
}

.business-nav-btn img {
  height: 20px !important;
  width: 20px !important;
}

.business-nav-btn.is-prev img {
  transform: rotate(180deg);
}

.business-cards {
  flex-shrink: 0;
  height: 600px;
  position: relative;
  touch-action: pan-y;
  user-select: none;
  width: 1289px;
}

.business-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  cursor: pointer;
  height: 510px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transition: transform 0.62s cubic-bezier(0.22, 0.61, 0.36, 1), width 0.62s cubic-bezier(0.22, 0.61, 0.36, 1),
    height 0.62s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.36s ease, box-shadow 0.36s ease, border-radius 0.46s ease;
  width: 390px;
  will-change: transform, width, height;
}

.business-card.slot-0 {
  border: 2px solid rgba(0, 120, 255, 0.65);
  border-radius: 24px;
  box-shadow: 0 0 42px rgba(16, 122, 242, 0.74);
  height: 600px;
  transform: translate3d(calc(0px + var(--business-card-shift-x, 0px)), calc(0px + var(--business-card-enter, 0px)), 0);
  width: 430px;
  z-index: 3;
}

.business-card.slot-1 {
  height: 510px;
  transform: translate3d(calc(467px + var(--business-card-shift-x, 0px)), calc(45px + var(--business-card-enter, 0px)), 0);
  width: 390px;
  z-index: 2;
}

.business-card.slot-2 {
  height: 510px;
  transform: translate3d(calc(894px + var(--business-card-shift-x, 0px)), calc(45px + var(--business-card-enter, 0px)), 0);
  width: 390px;
  z-index: 1;
}

.business-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.card-overlay {
  background: rgba(0, 0, 0, 0.49);
  inset: 0;
  position: absolute;
  transition: background 0.44s ease;
  z-index: 1;
}

.business-card.is-active .card-overlay {
  background: linear-gradient(180deg, rgba(16, 57, 237, 0.1) 8%, rgba(16, 57, 237, 0.74) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.28) 100%);
}

.mobility-body {
  bottom: 40px;
  left: 36px;
  opacity: 0;
  position: absolute;
  transform: translateY(18px);
  transition: opacity 0.44s ease, transform 0.44s ease;
  width: 353px;
  z-index: 2;
}

.business:not(.business-seq-start) .mobility-body {
  opacity: 0;
  transform: translateY(26px);
}

.business.business-seq-playing .business-card.is-active .mobility-body {
  transition-delay: 1.2s;
}

.business.business-seq-start:not(.business-seq-playing) .business-card.is-active .mobility-body {
  transition-delay: 0s;
}

.business-card.is-active .mobility-body {
  opacity: 1;
  transform: translateY(0);
}

.business.business-seq-start .business-card {
  --business-card-enter: 0px;
}

.mobility-body h4 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin: 0;
}

.mobility-body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.6;
  margin: 14px 0 28px;
}

.mobility-body img {
  height: 32px;
  width: 32px;
}

.business-card-cta {
  align-items: center;
  backdrop-filter: none;
  background: transparent;
  border: 0;
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 17px;
  font-weight: 400;
  gap: 15px;
  line-height: 1.5;
  padding: 12px 20px;
}

.business-card-cta:hover {
  background: transparent;
  opacity: 0.9;
}

.business-card-cta span {
  display: block;
}

.business-card-cta img {
  display: block;
  height: 32px;
  width: 32px;
}

.contact-hero {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: flex-start;
  min-height: 980px;
  overflow: hidden;
  padding-bottom: 120px;
  padding-top: 365px;
  text-align: center;
}

.contact-hero-bg {
  background-image: linear-gradient(180deg, #061520 13%, rgba(6, 21, 32, 0.4) 49%, #061520 95%), url("../common/bg-contact-hero.png");
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: 0.92;
  position: absolute;
}

.contact-sub {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  margin: 0;
  position: relative;
  text-shadow: 0 0 13px #a9b9ff;
  z-index: 1;
}

.contact-title {
  font-family: "Poppins", sans-serif;
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin: 13px 0 0;
  position: relative;
  z-index: 1;
}

.contact-title span {
  display: block;
  line-height: 1.4;
}

.contact-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.6;
  margin: 52px auto 0;
  max-width: 1280px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.contact-copy-clean {
  display: none;
}

.contact-hero .contact-cta-btn {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.contact-hero .contact-cta-btn > span:first-child {
  font-weight: 300;
}

.contact-seq {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.contact-hero.reveal:not(.seq-start) .contact-seq {
  opacity: 0;
  transform: translate3d(0, -72px, 0);
}

.contact-hero.reveal:not(.seq-start) .contact-seq-up {
  transform: translate3d(0, 72px, 0);
}

.contact-hero.reveal.seq-start .contact-seq {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.contact-hero.reveal.seq-start .contact-seq-1 {
  transition-delay: 0s;
}

.contact-hero.reveal.seq-start .contact-seq-2 {
  transition-delay: 0.35s;
}

.contact-hero.reveal.seq-start .contact-seq-3 {
  transition-delay: 0.7s;
}

.contact-hero.reveal.seq-start .contact-seq-4 {
  transition-delay: 1.05s;
}

@media (prefers-reduced-motion: reduce) {
  .contact-seq {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.solution {
  background: #061520;
  min-height: 1088px;
  overflow: hidden;
  padding: 166px 0 120px;
}

.solution.reveal {
  margin-top: 0;
  opacity: 0.9;
  transform: translate3d(0, 200px, 0);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.85s ease;
  will-change: transform, opacity;
  z-index: 7;
}

.solution.reveal.in {
  margin-top: 0;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.solution-case-head {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  width: var(--container);
}

.solution-case-kicker {
  color: #0075ff;
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}

.solution-case-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.25;
  margin: 12px 0 0;
}

.solution-case-view-btn {
  border-color: rgba(255, 255, 255, 0.14);
  margin-top: 58px;
  padding: 10px 20px;
}

.solution-case-view-btn > span:first-child {
  font-weight: 600;
}

.solution-case-slider {
  margin-top: 88px;
}

.solution-case-window {
  border-radius: 20px;
  cursor: grab;
  margin: 0 0 0 calc((100% - var(--container)) / 2);
  overflow: hidden;
  transform-origin: left center;
  width: min(1680px, calc(100% - 120px));
  will-change: clip-path, opacity;
}

.solution-case-track {
  display: flex;
  gap: 49px;
  transition: transform 0.68s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.solution-case-card {
  border-radius: 20px;
  flex: 0 0 441px;
  height: 441px;
  overflow: hidden;
  position: relative;
}

.solution-case-card img {
  filter: saturate(1.02);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.solution-case-card-grad {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 43.6%, rgba(0, 0, 0, 0.66) 100%);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.solution-case-card-copy {
  bottom: 34px;
  left: 36px;
  position: absolute;
  right: 36px;
  z-index: 2;
}

.solution-case-card-copy h4 {
  color: #eee;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin: 0;
}

.solution-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 10px;
}

.solution-case-tags span {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  color: #bababa;
  display: inline-flex;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  padding: 4px 18px;
}

.solution-case-controls {
  display: flex;
  gap: 18px;
  margin: 42px 0 0 calc((100% - var(--container)) / 2);
  width: min(1680px, calc(100% - 120px));
}

.solution-case-nav {
  align-items: center;
  background: #0667d5;
  border: 0;
  border-radius: 113px;
  cursor: pointer;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  padding: 6px 7px;
  transition: filter 0.2s ease, opacity 0.2s ease;
  width: 48px;
}

.solution-case-nav img {
  height: 20px;
  width: 20px;
}

.solution-case-nav.is-prev img {
  transform: rotate(180deg);
}

.solution-case-nav:hover {
  filter: brightness(1.08);
}

.solution-case-nav:disabled {
  cursor: default;
  opacity: 0.46;
}

.solution-case-slider.is-dragging .solution-case-window {
  cursor: grabbing;
}

.solution-case-slider.is-dragging .solution-case-track {
  transition: none;
}

.solution-case-seq {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.solution.reveal:not(.solution-seq-start) .solution-case-seq {
  opacity: 0;
  transform: translateY(-44px);
}

.solution.reveal.solution-seq-start .solution-case-seq {
  opacity: 1;
  transform: translateY(0);
}

.solution.reveal.solution-seq-start .solution-case-seq-1 {
  transition-delay: 0s;
}

.solution.reveal.solution-seq-start .solution-case-seq-2 {
  transition-delay: 0.16s;
}

.solution.reveal.solution-seq-start .solution-case-seq-3 {
  transition-delay: 0.32s;
}

.solution.reveal.solution-seq-start .solution-case-seq-4 {
  transition-delay: 0.48s;
}

.solution.reveal:not(.solution-seq-start) .solution-case-window {
  clip-path: inset(0 100% 0 0 round 20px);
  opacity: 0.72;
}

.solution.reveal.solution-seq-start .solution-case-window {
  clip-path: inset(0 0 0 0 round 20px);
  opacity: 1;
  transition: clip-path 1.15s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
}

.solution.reveal:not(.solution-seq-start) .solution-case-card {
  opacity: 0;
  transform: translateX(-30px) scale(0.98);
}

.solution.reveal.solution-seq-start .solution-case-card {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.solution.reveal.solution-seq-start .solution-case-card:nth-child(1) {
  transition-delay: 0.62s;
}

.solution.reveal.solution-seq-start .solution-case-card:nth-child(2) {
  transition-delay: 0.72s;
}

.solution.reveal.solution-seq-start .solution-case-card:nth-child(3) {
  transition-delay: 0.82s;
}

.solution.reveal.solution-seq-start .solution-case-card:nth-child(4) {
  transition-delay: 0.92s;
}

.solution.reveal.solution-seq-start .solution-case-card:nth-child(5) {
  transition-delay: 1.02s;
}

.solution.reveal.solution-seq-start .solution-case-card:nth-child(6) {
  transition-delay: 1.12s;
}

.solution.reveal.solution-seq-start .solution-case-card:nth-child(7) {
  transition-delay: 1.22s;
}

@media (max-width: 1200px) {
  .solution {
    min-height: 0;
    margin-top: 0;
    padding: 120px 0 90px;
  }

  .solution.reveal,
  .solution.reveal.in {
    margin-top: 0;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .solution-case-head {
    width: var(--container);
  }

  .solution-case-kicker {
    font-size: 20px;
  }

  .solution-case-title {
    font-size: clamp(40px, 6vw, 56px);
  }

  .solution-case-view-btn {
    margin-top: 48px;
  }

  .solution-case-slider {
    margin-top: 68px;
  }

  .solution-case-window,
  .solution-case-controls {
    width: var(--container);
  }

  .solution-case-window {
    margin-left: auto;
  }

  .solution-case-controls {
    margin-left: auto;
  }

  .solution-case-track {
    gap: 24px;
  }

  .solution-case-card {
    flex-basis: min(390px, 72vw);
    height: min(390px, 72vw);
  }

  .solution-case-card-copy {
    bottom: 24px;
    left: 24px;
    right: 24px;
  }

  .solution-case-card-copy h4 {
    font-size: clamp(24px, 3.8vw, 30px);
  }
}

@media (max-width: 768px) {
  .solution {
    margin-top: 0;
    padding: 100px 0 74px;
  }

  .solution-case-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .solution-case-kicker {
    font-size: 18px;
  }

  .solution-case-title {
    font-size: clamp(34px, 10vw, 46px);
  }

  .solution-case-view-btn {
    margin-top: 0;
  }

  .solution-case-slider {
    margin-top: 44px;
  }

  .solution-case-window,
  .solution-case-controls {
    width: var(--container);
  }

  .solution-case-track {
    gap: 16px;
  }

  .solution-case-card {
    flex-basis: min(330px, 82vw);
    height: min(330px, 82vw);
  }

  .solution-case-card-copy h4 {
    font-size: clamp(22px, 6.4vw, 28px);
  }

  .solution-case-tags span {
    font-size: 13px;
    padding: 4px 14px;
  }

  .solution-case-controls {
    margin-top: 26px;
  }
}

.globalization {
  background: var(--bg);
  height: 1245px;
  overflow: hidden;
}

.world-map {
  inset: 202px 81px auto;
  height: 842px;
  position: absolute;
}

.world-map img {
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  width: 100%;
}

.global-copy {
  left: 57%;
  position: absolute;
  top: 403px;
  z-index: 3;
}

.global-copy h3 {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

.global-copy p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.5;
  margin: 18px 0 0;
}

.map-marker {
  align-items: center;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  left: 30.0%;
  position: absolute;
  top: 45.6%;
  transform: translate(-50%, -50%);
  width: 24px;
  z-index: 4;
  cursor: pointer;
}

.marker-core {
  background: #cfd9e1;
  border-radius: 50%;
  box-shadow: 0 0 0 11px rgba(97, 134, 179, 0.34);
  height: 14px;
  width: 14px;
}

.marker-ripple {
  border: 1px solid rgba(180, 204, 232, 0.34);
  border-radius: 50%;
  inset: -10px;
  opacity: 0.5;
  position: absolute;
  transform: scale(0.72);
  will-change: transform, opacity;
}

.marker-main .ripple-1,
.marker-main .ripple-2,
.marker-main .ripple-3 {
  animation: markerPulseWide 3.6s ease-out infinite;
  opacity: 0.5;
}

.marker-main .ripple-2 {
  animation-delay: 0.75s;
}

.marker-main .ripple-3 {
  animation-delay: 1.5s;
}

.marker-main:hover .marker-core {
  background: #1a85ff;
  box-shadow: 0 0 0 11px rgba(42, 126, 255, 0.34);
}

.marker-sub {
  height: 22px;
  left: 43.3%;
  top: 34.9%;
  width: 22px;
}

.marker-sub .marker-core {
  background: #dbe4eb;
  box-shadow: 0 0 0 10px rgba(119, 141, 168, 0.27);
  height: 13px;
  width: 13px;
}

.marker-sub .ripple-1 {
  animation: markerPulseSoft 3.8s ease-out infinite 0.2s;
}

.marker-sub .ripple-2 {
  animation: markerPulseSoft 3.8s ease-out infinite 1.1s;
}

@keyframes markerPulseWide {
  0% {
    opacity: 0.55;
    transform: scale(0.65);
  }

  75% {
    opacity: 0.08;
    transform: scale(2.2);
  }

  100% {
    opacity: 0;
    transform: scale(2.7);
  }
}

@keyframes markerPulseSoft {
  0% {
    opacity: 0.45;
    transform: scale(0.74);
  }

  75% {
    opacity: 0.06;
    transform: scale(1.95);
  }

  100% {
    opacity: 0;
    transform: scale(2.35);
  }
}

.global-rnd-card {
  align-items: flex-start;
  backdrop-filter: blur(10px);
  background: rgba(143, 153, 160, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 108px;
  min-width: 292px;
  padding: 24px 30px;
  position: absolute;
  left: 30.0%;
  top: 45.6%;
  transform: translate(calc(-100% - 30px), -50%) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: 5;
}

.global-rnd-card::after {
  border-bottom: 14px solid transparent;
  border-left: 17px solid rgba(143, 153, 160, 0.58);
  border-top: 14px solid transparent;
  content: "";
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
}

.marker-main:hover ~ .global-rnd-card,
.global-rnd-card:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(calc(-100% - 30px), -50%) scale(1);
}

.global-rnd-card h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
}

.global-rnd-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
  white-space: nowrap;
}

.global-hq-card {
  backdrop-filter: blur(10px);
  background: rgba(143, 153, 160, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  padding: 18px 24px;
  position: absolute;
  left: 43.3%;
  top: 34.9%;
  transform: translate(30px, -50%) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: 5;
  white-space: nowrap;
}

.global-hq-card::after {
  border-bottom: 12px solid transparent;
  border-right: 15px solid rgba(143, 153, 160, 0.58);
  border-top: 12px solid transparent;
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.marker-sub:hover ~ .global-hq-card,
.global-hq-card:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(30px, -50%) scale(1);
}

.global-hq-card h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

.partners {
  padding: 0;
}

.global-partners {
  bottom: 36px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 6;
}

.partners-desktop {
  width: 100%;
}

.partners-mobile {
  display: none;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.partners-slider {
  margin: 0 auto;
  overflow: hidden;
  width: min(1920px, 100%);
}

.partners-track {
  display: flex;
  transform: translate3d(0, 0, 0);
  width: max-content;
  will-change: transform;
}

.partners-group {
  align-items: center;
  display: flex;
  gap: 50px;
  padding: 0 17px;
}

.partners-group img {
  flex: 0 0 auto;
  height: auto;
  max-height: 50px;
  max-width: 230px;
  object-fit: contain;
  object-position: center;
  width: auto;
}

.contact-banner {
  --contact-progress: 0;
  --contact-inset-x: calc((1 - var(--contact-progress)) * clamp(24px, 8vw, 190px) * 1.2);
  --contact-inset-y: calc((1 - var(--contact-progress)) * clamp(130px, 22vh, 290px) * 1.2);
  --contact-radius: calc((1 - var(--contact-progress)) * 40px);
  background: #061520;
  display: flex;
  justify-content: center;
  min-height: 220vh;
  padding: 0;
  position: relative;
  width: 100%;
}

.contact-card {
  border-radius: 0;
  clip-path: inset(var(--contact-inset-y) var(--contact-inset-x) var(--contact-inset-y) var(--contact-inset-x) round var(--contact-radius));
  height: 100vh;
  overflow: hidden;
  position: sticky;
  top: 0;
  width: 100%;
  will-change: clip-path;
}

.contact-card > img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.contact-card-overlay {
  background: linear-gradient(180deg, rgba(4, 10, 24, 0.14) 2%, rgba(4, 10, 24, 0.72) 55%, rgba(4, 10, 24, 0.84) 100%);
  inset: 0;
  position: absolute;
}

.contact-card-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 38px;
  inset: 0;
  justify-content: center;
  padding: 0 24px;
  position: absolute;
  z-index: 2;
}

.contact-card h3 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin: 0;
  position: relative;
  text-align: center;
  width: min(980px, 90vw);
}

.contact-card h3 .light {
  font-weight: 300;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(18px, 1.22vw, 22px);
  letter-spacing: -0.01em;
  margin: 0;
  position: relative;
  text-align: center;
  width: min(980px, 90vw);
}

.contact-card .contact-cta-btn {
  margin-top: 0;
  padding: 13px 24px;
}

.contact-card .contact-cta-btn .btn-icon {
  height: 20px;
  width: 20px;
}

.contact-card .contact-cta-btn .btn-icon img {
  height: 20px;
  width: 20px;
}

.footer {
  background: #050a1f;
  padding: 70px clamp(24px, 16.5vw, 316px);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 76px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-heading {
  font-size: 36px;
  line-height: 1.49;
  letter-spacing: -0.9px;
  color: #fff;
}

.footer-heading p {
  margin: 0;
}

.footer-heading-bold {
  font-weight: 700;
}

.footer-heading-light {
  font-weight: 200;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contents {
  display: flex;
  flex-direction: column;
  gap: 66px;
  align-items: flex-end;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-logo {
  height: 37px;
  width: 200px;
  object-fit: contain;
}

.footer-links {
  align-items: center;
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
}

.footer-link-contact {
  color: #107af2 !important;
}

.footer-link-divider {
  background: rgba(255, 255, 255, 0.24);
  display: inline-block;
  height: 14px;
  width: 1px;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.footer-info {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}

.footer-info p {
  align-items: center;
  display: flex;
  gap: 49px;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.footer-info strong {
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  min-width: 50px;
  font-weight: 600;
}

.footer-info span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  word-break: keep-all;
}

.footer-info-img {
  height: 13px;
  vertical-align: middle;
}

.footer-info-tel {
  height: 11px;
}

.copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  margin: 0;
  white-space: nowrap;
}

.to-top {
  align-items: center;
  background: #0667d5;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(16, 122, 242, 0.5);
  cursor: pointer;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.to-top img {
  height: 14px;
  transform: rotate(-90deg);
  width: 14px;
}

.to-top-floating {
  aspect-ratio: 1 / 1;
  background: transparent;
  border-radius: 5px;
  box-shadow: none;
  bottom: 28px;
  height: 60px;
  overflow: hidden;
  padding: 0;
  position: fixed;
  right: 28px;
  width: 60px;
  z-index: 30;
}

.to-top-floating img {
  display: block;
  height: 100%;
  transform: none;
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.business.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.business.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1600px) {
  .hero-inner h1 {
    font-size: 54px;
  }

  .business-cards {
    transform: scale(0.9);
    transform-origin: top right;
  }

  .global-copy h3 {
    font-size: 50px;
  }
}

@media (max-width: 1200px) {
  :root {
    --container: calc(100% - 60px);
  }

  .topbar-nav {
    display: none;
  }

  .hero,
  .intro,
  .business,
  .contact-hero,
  .solution,
  .globalization {
    height: auto;
    min-height: 0;
  }

  .hero {
    padding: 110px 0 90px;
  }

  .hero-video,
  .hero-overlay {
    height: 100%;
  }

  .topbar,
  .hero-inner,
  .hero-indicator {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: var(--container);
  }

  .topbar {
    gap: 0;
    padding: 0;
  }

  .topbar-inner {
    width: 100%;
  }

  .hero-inner {
    margin: 160px auto 0;
  }

  .hero-inner h1 {
    font-size: clamp(38px, 7vw, 60px);
  }

  .hero-inner p {
    font-size: 18px;
  }

  .hero-indicator {
    justify-content: center;
    margin: 64px auto 0;
  }

  .intro {
    padding: 0;
  }

  .intro-cine-wrap {
    height: 240vh;
  }

  .intro-cine-net-group {
    transform: scale(0.86);
    transform-origin: center;
  }

  .intro-cine-eyebrow {
    font-size: 20px;
    font-weight: 300;
  }

  .intro-cine-text-scene h2 {
    font-size: clamp(36px, 5vw, 58px);
    margin-top: 22px;
    text-align: center;
  }

  .intro-cine-copy {
    font-size: 20px;
    margin-top: 40px;
  }

  .intro-cine-bottom-glow {
    margin-top: 48px;
    width: min(880px, 90vw);
  }

  .intro-cine-btn {
    margin-top: 46px;
  }

  .business {
    margin-top: 0;
    opacity: 1;
    padding: 110px 0;
    transform: none;
    z-index: auto;
  }

  .business.reveal,
  .business.reveal.in {
    transform: none;
  }

  .business:not(.business-seq-start) .business-bg-union,
  .business:not(.business-seq-start) .business-tabs,
  .business:not(.business-seq-start) .business-copy .tag,
  .business:not(.business-seq-start) .business-copy h3,
  .business:not(.business-seq-start) .business-copy p,
  .business:not(.business-seq-start) .business-copy .arrow-nav,
  .business:not(.business-seq-start) .business-card {
    opacity: 0;
  }

  .business:not(.business-seq-start) .business-bg-union,
  .business:not(.business-seq-start) .business-tabs,
  .business:not(.business-seq-start) .business-copy .tag,
  .business:not(.business-seq-start) .business-copy h3,
  .business:not(.business-seq-start) .business-copy p,
  .business:not(.business-seq-start) .business-copy .arrow-nav {
    transform: translateY(22px);
  }

  .business.business-seq-start .business-bg-union,
  .business.business-seq-start .business-tabs,
  .business.business-seq-start .business-copy .tag,
  .business.business-seq-start .business-copy h3,
  .business.business-seq-start .business-copy p,
  .business.business-seq-start .business-copy .arrow-nav,
  .business.business-seq-start .business-card {
    opacity: 1;
    transform: none;
  }

  .business-tabs,
  .business-content {
    left: auto;
    position: relative;
    top: auto;
    transform: none;
  }

  .business-tabs {
    margin: 0 auto;
    padding-left: 0;
  }

  .business-content {
    display: block;
    margin: 40px auto 0;
    width: var(--container);
  }

  .business-copy {
    padding-top: 0;
    width: 100%;
  }

  .business-copy h3 {
    font-size: clamp(44px, 7vw, 64px);
  }

  .business-cards {
    margin-top: 38px;
    display: flex;
    gap: 20px;
    height: auto;
    overflow-x: auto;
    padding-bottom: 8px;
    position: static;
    transform: none;
    width: 100%;
  }

  .business-card {
    flex: 0 0 auto;
    height: 500px !important;
    position: relative;
    transform: none !important;
    width: 340px !important;
  }

  .contact-hero {
    padding: 180px 30px 120px;
  }

  .contact-title {
    font-size: clamp(44px, 8vw, 72px);
  }

  .contact-copy {
    font-size: 20px;
  }

  .contact-hero .contact-cta-btn {
    margin-top: 52px;
  }

  .solution {
    padding: 120px 0 90px;
  }

  .solution-head,
  .solution .arrow-nav {
    width: var(--container);
  }

  .solution-head h3 {
    font-size: clamp(40px, 6vw, 56px);
  }

  .solution-track {
    width: 100%;
  }

  .solution-card {
    flex-basis: min(390px, 74vw);
    height: min(390px, 74vw);
  }

  .globalization {
    height: auto;
    min-height: 860px;
    padding: 120px 0 34px;
  }

  .world-map {
    height: auto;
    inset: 140px 20px auto;
  }

  .world-map img {
    width: 100%;
  }

  .global-copy {
    left: auto;
    margin: 0 auto;
    position: relative;
    top: auto;
    width: var(--container);
    z-index: 5;
  }

  .global-copy h3 {
    font-size: clamp(40px, 6.5vw, 56px);
  }

  .global-copy p {
    font-size: 20px;
  }

  .partners {
    padding: 0;
  }

  .global-partners {
    bottom: 28px;
    left: 0;
    position: absolute;
    width: 100%;
  }

  .partners-group {
    gap: 32px;
  }

  .partners-group img {
    max-height: 42px;
    max-width: 180px;
  }

  .contact-banner {
    --contact-inset-x: calc((1 - var(--contact-progress)) * clamp(18px, 5vw, 80px) * 1.2);
    --contact-inset-y: calc((1 - var(--contact-progress)) * clamp(90px, 16vh, 180px) * 1.2);
    min-height: 190vh;
  }

  .contact-card {
    height: 100vh;
  }

  .contact-card h3 {
    font-size: clamp(34px, 5.5vw, 48px);
    width: min(900px, 90vw);
  }

  .contact-card p {
    font-size: clamp(16px, 2.1vw, 19px);
    width: min(900px, 90vw);
  }

  .contact-card-content {
    gap: 34px;
    padding: 0 18px;
  }

  .footer {
    padding: 50px clamp(24px, 5vw, 60px);
  }

  .footer-inner {
    gap: 40px;
  }

  .footer-heading {
    font-size: 24px;
  }

  .footer-contents {
    gap: 40px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-info p {
    gap: 22px;
  }

  .copyright {
    margin-top: 6px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  :root {
    --container: calc(100% - 32px);
  }

  .lang-btn {
    display: none;
  }

  .hero {
    padding-top: 22px;
  }

  .main-page .hero {
    padding-top: 0;
  }

  .topbar-logo {
    height: 23px;
    width: 148px;
  }

  .topbar-logo img {
    height: 23px;
    left: 0;
    position: absolute;
    top: 0;
    width: 148px;
  }

  .hero-inner {
    margin-top: 80px;
  }

  .main-page .hero-inner {
    margin-top: 0;
    padding-top: 178px;
  }

  .hero-inner p br,
  .intro-copy br,
  .contact-copy br {
    display: none;
  }

  .hero-inner p {
    font-size: 16px;
    line-height: 1.6;
  }

  .main-page .hero-inner .hero-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .btn-pill {
    font-size: 15px;
    margin-top: 30px;
    padding: 9px 16px;
  }

  .btn-pill span {
    font-size: 15px;
  }

  .btn-pill img {
    height: 28px;
    width: 28px;
  }

  .main-page .hero-inner .hero-cta-btn {
    margin-top: 110px;
    padding: 9px 14px;
  }

  .main-page .hero-inner .hero-cta-btn > span:first-child {
    font-size: 14px;
  }

  .hero-indicator {
    margin-top: 48px;
  }

  .main-page .hero .hero-indicator {
    bottom: 36px;
    left: 50%;
    margin-top: 0;
    position: absolute;
    transform: translateX(-50%);
  }

  .intro {
    padding-top: 0;
  }

  .intro-cine-wrap {
    height: 200vh;
  }

  .intro-cine-net-group {
    transform: scale(0.62);
  }

  .intro-cine-card {
    box-sizing: border-box;
    display: block;
    max-width: min(172px, 44vw);
    min-width: 0;
    overflow-wrap: break-word;
    padding: 12px 14px;
    word-break: break-word;
  }

  .intro-cine-card h3 {
    font-size: 16px;
    line-height: 1.2;
  }

  .intro-cine-card p:last-child {
    font-size: 11px;
    line-height: 1.45;
  }

  /* 영어 등 긴 카피일 때 01·02 겹침 완화: 위치 분리 + 폭 제한 */
  .intro-cine-card.card-mob {
    left: 0;
    top: 28%;
    transform: translate(0, -50%) scale(0.7);
  }

  .intro-cine-card.card-bld {
    right: 0;
    top: 0;
    transform: translate(0, 0) scale(0.7);
  }

  .intro-cine-card.card-sec {
    bottom: 8%;
    right: 0;
    transform: translate(0, 0) scale(0.7);
  }

  .intro-cine-split-scene {
    box-sizing: border-box;
    display: block;
    inset: auto;
    left: clamp(26px, 6.2vw, 42px);
    pointer-events: none;
    right: clamp(26px, 6.2vw, 42px);
    top: 0;
    bottom: 0;
    width: auto;
  }

  .intro-cine-split-scene p {
    font-size: clamp(26px, 7.5vw, 40px);
  }

  .intro-cine-eyebrow {
    font-size: 20px;
    font-weight: 300;
  }

  .intro-cine-text-scene h2 {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.3;
    margin-top: 18px;
    width: min(92vw, 700px);
  }

  .intro-cine-copy {
    font-size: 17px;
    line-height: 1.7;
    margin-top: 28px;
  }

  .intro-cine-bottom-glow {
    margin-top: 34px;
  }

  .intro-cine-btn {
    margin-top: 30px;
  }

  .business-tabs {
    overflow-x: auto;
  }

  .business-tabs button {
    font-size: 17px;
    padding: 0 18px;
    white-space: nowrap;
  }

  .business-copy .tag {
    font-size: 17px;
  }

  .business-copy p {
    font-size: 18px;
  }

  .business-card {
    height: 430px !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    width: 320px !important;
  }

  /* 가로 슬라이드: 활성(slot-0) 카드가 항상 맨 앞(왼쪽)에 오도록 */
  .business-cards {
    scroll-snap-type: x mandatory;
  }

  .business-card.slot-0 {
    order: 0;
  }

  .business-card.slot-1 {
    order: 1;
  }

  .business-card.slot-2 {
    order: 2;
  }

  .mobility-body {
    bottom: 26px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .mobility-body h4 {
    font-size: 30px;
  }

  .mobility-body p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 18px;
  }

  .contact-hero {
    padding-top: 130px;
  }

  .contact-sub {
    font-size: 16px;
  }

  .contact-title {
    font-size: clamp(38px, 10vw, 54px);
    margin-top: 10px;
  }

  .contact-copy {
    font-size: 16px;
    margin-top: 34px;
    padding: 0 12px;
  }

  .contact-hero .contact-cta-btn {
    margin-top: 38px;
  }

  .solution-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .solution-head p {
    font-size: 18px;
  }

  .solution-card h4 {
    bottom: 58px;
    font-size: 28px;
    left: 20px;
  }

  .solution-card p {
    bottom: 20px;
    font-size: 15px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .globalization {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: visible;
    padding: 0 0 32px;
  }

  .world-map {
    flex: 0 0 auto;
    height: min(380px, 52vh);
    inset: auto;
    left: auto;
    margin: 0;
    overflow: visible;
    position: relative;
    top: auto;
    width: 100%;
  }

  .world-map img {
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    width: 100%;
  }

  /* cover 크롭 때문에 PC와 달라진 좌표 — 인도·한국 파란 점 위로 맞춤 */
  .world-map .map-marker.marker-main {
    left: 19.5%;
    top: 44%;
  }

  .world-map .map-marker.marker-sub {
    left: 35%;
    top: 31.5%;
  }

  .global-copy {
    box-sizing: border-box;
    left: auto;
    margin: 0 auto;
    max-width: 390px;
    padding: 28px 21px 0;
    position: relative;
    text-align: left;
    top: auto;
    width: 100%;
    z-index: 3;
  }

  .global-copy h3 {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
  }

  .global-copy p {
    font-size: 14px;
    letter-spacing: -0.14px;
    line-height: 1.5;
    margin: 18px 0 0;
  }

  .global-detail-btn {
    display: inline-flex;
    gap: 12px;
    margin-bottom: 0;
    margin-top: 24px;
    min-height: 36px;
    padding: 6px 14px;
  }

  .global-detail-btn > span:first-child {
    font-size: 12px;
  }

  .global-detail-btn .btn-icon {
    height: 22.6px;
    width: 22.6px;
  }

  .global-rnd-card h4 {
    font-size: 20px;
  }

  .global-rnd-card p {
    font-size: 12px;
  }

  /* 모바일: 마커와 동일 좌표 + 잘림 방지 max-width */
  .global-rnd-card {
    box-sizing: border-box;
    left: 19.5%;
    max-width: min(calc(39% - 24px), calc(100vw - 32px));
    min-height: 0;
    min-width: 0;
    overflow-wrap: break-word;
    padding: 14px 16px;
    top: 44%;
    transform: translate(-50%, 18px) scale(0.95);
    width: auto;
    word-break: break-word;
  }

  .global-rnd-card::after {
    border: none;
    border-bottom: 12px solid rgba(143, 153, 160, 0.58);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    left: 50%;
    right: auto;
    top: -12px;
    transform: translateX(-50%);
  }

  .marker-main:hover ~ .global-rnd-card,
  .global-rnd-card:hover {
    transform: translate(-50%, 18px) scale(1);
  }

  .global-rnd-card h4,
  .global-rnd-card p {
    overflow-wrap: break-word;
    white-space: normal;
    word-break: break-word;
  }

  .global-hq-card {
    box-sizing: border-box;
    left: 35%;
    max-width: min(calc(70% - 24px), calc(100vw - 32px));
    overflow-wrap: break-word;
    padding: 14px 16px;
    top: 31.5%;
    transform: translate(-50%, 18px) scale(0.95);
    white-space: normal;
    width: auto;
    word-break: break-word;
  }

  .global-hq-card::after {
    border: none;
    border-bottom: 10px solid rgba(143, 153, 160, 0.58);
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    left: 50%;
    right: auto;
    top: -10px;
    transform: translateX(-50%);
  }

  .marker-sub:hover ~ .global-hq-card,
  .global-hq-card:hover {
    transform: translate(-50%, 18px) scale(1);
  }

  .global-hq-card h4 {
    white-space: normal;
  }

  .partners {
    padding: 0;
  }

  .partners-desktop {
    display: none;
  }

  .partners-mobile {
    display: flex;
    gap: 16px;
  }

  .global-partners {
    bottom: auto;
    flex-shrink: 0;
    left: auto;
    margin-top: 52px;
    order: 3;
    padding: 0 12px 24px;
    position: relative;
    width: 100%;
  }

  .partners-group {
    gap: 24px;
    padding: 0 10px;
  }

  .partners-group img {
    max-height: 34px;
    max-width: 132px;
  }

  .contact-banner {
    --contact-inset-x: calc((1 - var(--contact-progress)) * clamp(12px, 3vw, 28px) * 1.2);
    --contact-inset-y: calc((1 - var(--contact-progress)) * clamp(56px, 10vh, 96px) * 1.2);
    min-height: 170vh;
  }

  .contact-card {
    height: 100vh;
  }

  .contact-card h3 {
    font-size: clamp(27px, 7.4vw, 40px);
    line-height: 1.35;
  }

  .contact-card p {
    font-size: 15px;
  }

  .contact-card-content {
    gap: 22px;
    padding: 0 14px;
  }

  .contact-card .contact-cta-btn {
    padding: 11px 20px;
  }

  .footer-links {
    gap: 14px;
  }

  .footer-info p {
    font-size: 14px;
    gap: 14px;
  }

  .footer-info strong {
    min-width: 56px;
  }

  .to-top-floating {
    bottom: 18px;
    right: 16px;
    height: 60px;
    width: 60px;
  }

  .topbar .lang-menu {
    display: none;
  }

  .topbar-inner .mobile-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .company-header-inner .mobile-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  /* Main index — Figma HEADER 2163:5298 (모바일 768px 이하만) */
  .main-page .hero {
    min-height: min(100svh, 760px);
    padding: 0 0 80px;
    position: relative;
  }

  .main-page .hero .topbar {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(0, 10, 18, 0.94);
    box-sizing: border-box;
    left: 0;
    max-width: none;
    padding: 15px 0;
    transform: none;
    width: 100%;
  }

  .main-page .hero .topbar:hover,
  .main-page .hero .topbar:focus-within,
  .main-page .hero .topbar.is-hovered {
    background: rgba(0, 10, 18, 0.94);
    backdrop-filter: blur(12px);
  }

  .main-page .hero .topbar-inner {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 390px;
    padding: 0 28px;
    width: 100%;
  }

  .main-page .topbar-logo {
    height: 25px;
    width: 156px;
  }

  .main-page .topbar-logo img {
    height: 25px;
    object-fit: contain;
    width: 156px;
  }

  .main-page .topbar:hover .topbar-logo .logo-default,
  .main-page .topbar:focus-within .topbar-logo .logo-default,
  .main-page .topbar.is-hovered .topbar-logo .logo-default {
    opacity: 1;
  }

  .main-page .topbar:hover .topbar-logo .logo-hover,
  .main-page .topbar:focus-within .topbar-logo .logo-hover,
  .main-page .topbar.is-hovered .topbar-logo .logo-hover {
    opacity: 0;
  }

  .main-page .hero-inner {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    max-width: 390px;
    padding: 178px 21px 0;
    text-align: left;
    width: 100%;
  }

  .main-page .hero-inner .hero-title,
  .main-page .hero-inner .hero-title .title-line {
    text-align: left;
  }

  .main-page .hero-inner .hero-title .title-line-1 {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.25;
  }

  .main-page .hero-inner .hero-title .title-line-2 {
    color: #f3f3f3;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
  }

  .main-page .hero-inner h1 {
    font-size: 32px;
    line-height: 1.25;
    margin: 0;
  }

  .main-page .hero-inner .hero-desc {
    font-size: 14px;
    letter-spacing: -0.14px;
    line-height: 1.5;
    margin-top: 25px;
    max-width: 320px;
    text-align: left;
    width: 100%;
  }

  .main-page .hero-inner .btn-pill,
  .main-page .hero-inner .hero-cta-btn {
    margin-top: 110px;
    position: static;
    transform: none;
  }

  .main-page .hero-inner .hero-cta-btn {
    gap: 10px;
    padding: 9px 14px;
  }

  .main-page .hero-inner .hero-cta-btn .btn-icon {
    height: 22.6px;
    width: 22.6px;
  }

  .main-page .hero-inner .hero-cta-btn > span:first-child {
    font-size: 14px;
  }

  .main-page .hero .hero-indicator {
    bottom: 36px;
    left: 50%;
    margin-top: 0;
    position: absolute;
    transform: translateX(-50%);
    width: auto;
  }
}

/* Figma 모바일 인트로 2163:5323 — 타이포·CTA (390 폭 기준) */
@media (max-width: 480px) {
  .main-page .topbar-logo {
    height: 25px;
    width: 156px;
  }

  .main-page .topbar-logo img {
    height: 25px;
    width: 156px;
  }

  .main-page .hero .mobile-nav-toggle {
    height: 25px;
    padding: 0;
    width: 25px;
  }

  .main-page .hero .mobile-nav-toggle-line {
    width: 18px;
  }

  .intro-cine-eyebrow {
    font-size: 14px;
    font-weight: 400;
  }

  .intro-cine-text-scene {
    box-sizing: border-box;
    padding: 0 20px;
  }

  .intro-cine-text-scene h2 {
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1.4;
    margin-top: 14px;
  }

  .intro-cine-copy {
    font-size: 12px;
    letter-spacing: -0.48px;
    line-height: 1.6;
    margin-top: 18px;
    max-width: 275px;
  }

  .intro-cine-bottom-glow {
    margin-top: 18px;
    width: min(227px, 72vw);
  }

  .intro-cine-btn {
    margin-top: 26px;
  }

  .intro-cine-btn.hero-cta-btn {
    gap: 12px;
    min-height: 36px;
    padding: 6px 14px;
  }

  .intro-cine-btn.hero-cta-btn > span:first-child {
    font-size: 12px;
  }

  .intro-cine-btn.hero-cta-btn .btn-icon {
    height: 22.6px;
    width: 22.6px;
  }

  .intro-cine-wrap {
    height: 180vh;
  }

  .intro-cine-split-scene {
    left: clamp(30px, 7.2vw, 46px);
    right: clamp(30px, 7.2vw, 46px);
  }

  .intro-cine-net-group {
    transform: scale(0.56);
  }

  .intro-cine-card {
    max-width: min(158px, 46vw);
    padding: 10px 12px;
  }

  .intro-cine-card h3 {
    font-size: 15px;
  }

  .intro-cine-card p:last-child {
    font-size: 10px;
  }

  .intro-cine-card.card-mob {
    top: 30%;
    transform: translate(0, -50%) scale(0.64);
  }

  .intro-cine-card.card-bld,
  .intro-cine-card.card-sec {
    transform: translate(0, 0) scale(0.64);
  }

  .main-page .hero-nav {
    display: none;
  }
}

/* ——— Mobile drawer (GNB) ——— */
.mobile-nav-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 6px;
  height: 44px;
  justify-content: center;
  padding: 0 4px;
  width: 44px;
}

.mobile-nav-toggle-line {
  background: #fff;
  border-radius: 1px;
  display: block;
  height: 2px;
  width: 22px;
}

.company-header .mobile-nav-toggle-line {
  background: #1a1a1a;
}

.mobile-nav-drawer {
  inset: 0;
  pointer-events: none;
  position: fixed;
  visibility: hidden;
  z-index: 3000;
}

.mobile-nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav-backdrop {
  background: rgba(0, 0, 0, 0.48);
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.28s ease;
}

.mobile-nav-drawer.is-open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-panel {
  background: #fff;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: min(380px, 88vw);
}

.mobile-nav-drawer.is-open .mobile-nav-panel {
  transform: translateX(0);
}

/* Figma 2163:7436 — 헤더 p-24, 언어 2163:7437, 닫기 52×52 */
.mobile-nav-panel-head {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  padding: 24px;
}

/* Figma 2163:7437 — 52×52, 선택: 흰 배경·#1039ed 전체 테두리·파란 글자 / 비선택: 흰 배경·검정 글·#ddd(인접 변 제외) */
.mobile-nav-lang {
  display: inline-flex;
  flex-shrink: 0;
}

.mobile-lang-seg {
  align-items: center;
  background: #fff;
  border: 0;
  box-sizing: border-box;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  height: 52px;
  justify-content: center;
  line-height: 1.5;
  margin: 0;
  min-width: 52px;
  overflow: hidden;
  padding: 12px 14px;
  transition: color 0.15s ease, border-color 0.15s ease;
  width: 52px;
}

.mobile-lang-seg.is-active {
  border: 1px solid #1039ed;
  color: #1039ed;
  position: relative;
  z-index: 1;
}

/* 비선택이 왼쪽(KR): 상·좌·하 #ddd, 우측은 활성(EN) 테두리와 맞닿음 */
.mobile-lang-seg:not(.is-active):first-child {
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: none;
  border-top: 1px solid #ddd;
}

/* 비선택이 오른쪽(EN): 상·우·하 #ddd, 좌측은 활성(KR) 테두리와 맞닿음 — Figma 2163:7440 */
.mobile-lang-seg:not(.is-active):last-child {
  border-bottom: 1px solid #ddd;
  border-left: none;
  border-right: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.mobile-lang-seg:focus-visible {
  outline: 2px solid #1039ed;
  outline-offset: 2px;
  z-index: 2;
}

.mobile-nav-close {
  align-items: center;
  background: transparent;
  border: 0;
  box-sizing: border-box;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  height: 52px;
  justify-content: center;
  padding: 0;
  width: 52px;
}

.mobile-nav-close-icon {
  display: block;
  height: 24px;
  width: 24px;
}

.mobile-nav-scroll {
  flex: 1;
  overflow: auto;
  padding: 8px 0 32px;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-accordion {
  border-bottom: 1px solid #ececec;
}

.mobile-nav-acc-trigger {
  align-items: center;
  background: #fff;
  border: 0;
  color: #111;
  cursor: pointer;
  display: flex;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: -0.02em;
  padding: 18px 20px;
  text-align: left;
  width: 100%;
}

.mobile-nav-accordion.is-open .mobile-nav-acc-trigger {
  color: #107af2;
}

.mobile-nav-acc-trigger::after {
  color: #9ca3af;
  content: "+";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.mobile-nav-accordion.is-open .mobile-nav-acc-trigger::after {
  color: #107af2;
  content: "−";
}

.mobile-nav-acc-panel {
  background: #f7f8fa;
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 4px 12px 14px 20px;
}

.mobile-nav-accordion.is-open .mobile-nav-acc-panel {
  display: flex;
}

.mobile-nav-acc-panel a {
  border-radius: 6px;
  color: #374151;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 12px 12px 8px;
  text-decoration: none;
}

.mobile-nav-acc-panel a:active,
.mobile-nav-acc-panel a:hover {
  background: #f3f4f6;
  color: #107af2;
}

.mobile-nav-single {
  border-bottom: 1px solid #ececec;
  color: #111;
  display: block;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 20px;
  text-decoration: none;
}

.mobile-nav-single:active,
.mobile-nav-single:hover {
  color: #107af2;
}

body.mobile-nav-open {
  overflow: hidden;
  touch-action: none;
}


