:root {
  --black: #05070a;
  --ink: #111827;
  --white: #ffffff;
  --blue: #1f5eff;
  --cyan: #4fffc0;
  --purple: #7367cf;
  --gray-50: #f8fafc;
  --gray-100: #eef2f7;
  --gray-200: #e1e7f0;
  --gray-500: #788396;
  --gray-700: #3d4658;
  --max: 1180px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family:
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.45;
  word-break: keep-all;
  overflow-x: clip;
}

body {
  overflow-y: visible !important;
  overflow-x: clip !important;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
li {
  list-style: none;
}
button {
  font-family: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}
img,
video {
  max-width: 100%;
  display: block;
}
.container {
  width: min(100% - 64px, var(--max));
  margin: 0 auto;
}
.only_mo {
  display: none;
}
.blue {
  color: var(--blue);
}
.cyan {
  color: #58f4ff;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  z-index: 1000;
  transition:
    background 0.32s var(--ease),
    box-shadow 0.32s var(--ease),
    height 0.32s var(--ease);
  color: var(--white);
}
.site-header.is-scrolled,
.site-header.is-open {
  height: 76px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(100% - 64px, 1380px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.04em;
  transition: 0.3s var(--ease);
}
.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  background: var(--black);
  color: var(--white);
}
.brand-text strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.brand-text span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.62;
}
.gnb {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 18px;
  font-weight: 800;
}
.gnb a {
  position: relative;
  padding: 12px 0;
  opacity: 0.88;
}
.gnb a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s var(--ease);
}
.gnb a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-apply {
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 900;
  transition: 0.28s var(--ease);
  backdrop-filter: blur(10px);
}
.site-header.is-scrolled .header-apply,
.site-header.is-open .header-apply {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.header-apply:hover {
  transform: translateY(-3px);
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: var(--white) !important;
}
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: inherit;
  font-size: 20px;
}
.site-header.is-scrolled .menu-btn,
.site-header.is-open .menu-btn {
  border-color: rgba(0, 0, 0, 0.16);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
  padding: 18px 32px 28px;
  color: var(--black);
}
.mobile-nav.is-open {
  display: block;
}
.mobile-nav a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 17px;
  font-weight: 900;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.28s var(--ease);
  white-space: nowrap;
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--blue);
  transform: translateY(-4px);
  color: var(--white);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--blue);
  transform: translateY(-4px);
}
.btn-line {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.btn-line:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--black);
  transform: translateY(-4px);
}

/* Hero */
.home-page .hero {
  position: relative;
  min-height: 100svh;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}
.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.99;
  transform: scale(1.04);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.35) 54%,
      rgba(0, 0, 0, 0.12) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.62) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0.38;
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 80svh;
  display: flex;
  align-items: flex-end;
  padding: 240px 0 76px;
}
.hero-content {
  width: min(1120px, 100%);
}
.hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-sub::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58f4ff;
  box-shadow: 0 0 22px #58f4ff;
}
.hero-title {
  font-size: clamp(44px, 8.2vw, 88px);
  line-height: 1.06;
  letter-spacing: -0.078em;
  font-weight: 700;
  max-width: 1060px;
}
.hero-title span {
  color: var(--cyan);
}
.hero-desc {
  margin-top: 34px;
  max-width: 710px;
  font-size: clamp(18px, 1.7vw, 20px);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.04em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 46px;
}
.hero-kpis {
  position: relative;
  z-index: 2;
  width: min(100% - 64px, 1180px);
  margin: -124px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-bottom: 36px;
}
.hero-kpi {
  min-height: 108px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(20, 28, 46, 0.78);
  color: var(--white);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-kpi small {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.hero-kpi strong {
  font-size: clamp(20px, 2.3vw, 20px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  font-weight: 500;
  margin-top: 10px;
}
.scroll-text {
  position: absolute;
  left: 48px;
  bottom: 42px;
  z-index: 3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
  writing-mode: vertical-rl;
}

/* Sections */
.section {
  padding: 150px 0;
}
.section-light {
  background: var(--gray-50);
}
.section-dark {
  position: relative;
  background-color: #000;
  color: var(--white);
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/public/assets/img/sec01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5; /* 이미지 투명도 50% */
  z-index: 0;
}

.section-dark > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 34px;
  color: var(--black);
}
.section-dark .eyebrow,
.history .eyebrow {
  color: var(--white);
}
.big-title {
  font-size: clamp(48px, 5.4vw, 50px);
  line-height: 1.16;
  letter-spacing: -0.08em;
  font-weight: 700;
}
.section-desc {
  margin-top: 34px;
  max-width: 560px;
  font-size: clamp(18px, 1.35vw, 16px);
  line-height: 1.65;
  color: var(--gray-700);
  letter-spacing: -0.035em;
}
.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Intro */
.intro {
  background: var(--white);
}
.intro-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}
.intro-sticky {
  position: sticky;
  top: 115px;
  align-self: start;
}
.intro-copy {
  font-size: clamp(38px, 4.9vw, 60px);
  line-height: 1.23;
  letter-spacing: -0.078em;
  font-weight: 800;
}
.intro-copy em {
  font-style: normal;
  color: var(--blue);
}
.content-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.message-box {
  padding: 42px;
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 0;
}
.message-label {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.message-title {
  margin: 0 0 24px;
  font-size: clamp(28px, 3vw, 30px);
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -0.055em;
  color: #111;
}
.message-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.46;
  font-weight: 520;
  color: #333;
  letter-spacing: -0.035em;
}
.point-box {
  height: 330px;
  background: #111;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.visual-card {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(135deg, #07111f, #122c68 46%, #02a68f);
  overflow: hidden;
}
.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.35;
}
.visual-card::after {
  content: "PoC";
  position: absolute;
  right: 34px;
  bottom: -28px;
  font-size: 150px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.18);
}
.visual-card .visual-text {
  position: absolute;
  left: 36px;
  bottom: 34px;
  z-index: 2;
  color: #fff;
}
.visual-card .visual-text small {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #58f4ff;
}
.visual-card .visual-text strong {
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -0.06em;
}
.flat-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.flat-card {
  min-height: 260px;
  padding: 34px;
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 0;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.flat-card:hover {
  transform: translateY(-6px);
  border-color: #111;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}
.num {
  margin-bottom: 34px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--blue);
}
.flat-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #111;
}
.flat-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 520;
  color: #555;
  letter-spacing: -0.03em;
}

/* Support Stacking */
.main_business {
  position: relative;
  background: var(--white);
}
.main_business .scrollWrap {
  position: relative;
  width: 100%;
}
.main_business .tabWrap {
  width: min(100% - 64px, 1400px);
  margin: 0 auto 60px;
  padding: 20px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.main_business .tabWrap h3.title {
  font-size: 60px;
  font-weight: 850;
  letter-spacing: 0.05em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: -20px;
}
.main_business .tabWrap p {
  max-width: 610px;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: -0.03em;
}

.main_business .cards {
  max-width: 1400px;
  width: calc(100% - 64px);
  margin: 0 auto;
  height: 600px;
  position: relative;
  padding-bottom: 0;
}
.main_business .card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  will-change: transform;
  box-shadow: 0 30px 90px rgba(5, 7, 10, 0.18);
}
.main_business .card02,
.main_business .card03 {
  margin-top: 0;
  transform: none;
}

.main_business .bi_bnr {
  width: 100%;
  height: 100%;
  padding: 80px 80px 80px 90px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
}
/* ★ 추가: gradient 배경 (기존 undefined 클래스) */
.main_business .gradient-1 {
  background: linear-gradient(135deg, #0b1627 0%, #143a8f 55%, #1f5eff 100%);
}
.main_business .gradient-2 {
  background: linear-gradient(135deg, #161033 0%, #3a2c86 55%, #7367cf 100%);
}
.main_business .gradient-3 {
  background: linear-gradient(135deg, #05120f 0%, #0c4f44 55%, #02a68f 100%);
}
.main_business .bi_bnr::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.24) 62%,
    rgba(0, 0, 0, 0.06)
  );
  z-index: 1;
}
.main_business .bi_bnr::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  z-index: 1;
  opacity: 0.38;
}
.main_business .bi_desc {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 600px;
  flex: 1;
}
.main_business .bi_desc small {
  display: block;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: #58f4ff;
  text-transform: uppercase;
}
.main_business .bi_desc strong {
  display: block;
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 800;
  letter-spacing: -0.066em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.main_business .bi_desc p {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  opacity: 0.86;
  margin-bottom: 40px;
}
.main_business .bi_img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  max-width: 500px;
}
.main_business .bi_img img {
  border-radius: 20px;
  display: block;
}
.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.card-list span {
  display: inline-flex;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

@media (max-width: 1024px) {
  .main_business .cards {
    height: 500px;
    width: calc(100% - 32px);
  }
  .main_business .bi_bnr {
    padding: 60px 44px;
  }
}
@media (max-width: 768px) {
  .main_business .tabWrap {
    width: calc(100% - 32px);
    display: block;
    padding: 60px 0 0;
  }
  .main_business .tabWrap p {
    margin-top: 18px;
  }
  .main_business .cards {
    height: auto;
    display: grid;
    gap: 16px;
    width: calc(100% - 32px);
  }
  .main_business .card {
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    min-height: 430px;
    transform: none !important;
  }
  .main_business .bi_bnr {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 34px 26px;
  }
  .main_business .bi_desc strong {
    font-size: 34px;
  }
  .main_business .bi_desc p {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

/* Process Business Items */
.business {
  background: var(--white);
  overflow: hidden;
  padding: 150px 0 50px;
}
.business-top {
  padding-bottom: 96px;
}
.business-title {
  font-size: clamp(48px, 5.4vw, 64px);
  line-height: 1.18;
  letter-spacing: -0.075em;
  font-weight: 800;
  max-width: 880px;
}
.business-title span {
  color: var(--blue);
}
.business-progress {
  position: fixed;
  top: 50%;
  right: 42px;
  z-index: 20;
  transform: translateY(-50%);
  display: grid;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.business-progress.is-active {
  opacity: 1;
}
.progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cfcfcf;
  transition: 0.28s;
}
.progress-dot.is-active {
  height: 38px;
  background: var(--black);
}
.business-item {
  padding: 78px 0;
  display: flex;
  align-items: center;
}
.business-row {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(56px, 7vw, 140px);
  align-items: center;
}
.business-row.reverse {
  grid-template-columns: 0.96fr 1.04fr;
}
.business-row.reverse .business-img-wrap {
  order: 2;
}
.business-row.reverse .business-content {
  order: 1;
}
.business-img-wrap {
  height: min(58vw, 470px);
  min-height: 470px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  transition: transform 0.25s ease-out;
}
.business-img-wrap .fake-img {
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform: scale(1.1);
  transition: transform 1.4s var(--ease);
}
.business-img-wrap .fake-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.42;
}
.business-img-wrap .fake-img::after {
  content: attr(data-label);
  position: absolute;
  left: 36px;
  bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.business-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.4s var(--ease);
}
.business-item.is-active .business-img-wrap img {
  transform: scale(1);
}
.business-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.5));
  pointer-events: none;
}
.business-img-wrap::after {
  content: attr(data-label);
  position: absolute;
  left: 36px;
  bottom: 32px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.business-item.is-active .fake-img {
  transform: scale(1);
}
.business-content {
  padding-top: 20px;
}
.business-no {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 44px;
  overflow: hidden;
}
.business-no::after {
  content: "";
  width: 84px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.9s var(--ease) 0.2s;
}
.business-item.is-active .business-no::after {
  transform: scaleX(1);
}
.business-content h3 {
  font-size: clamp(42px, 4.6vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.075em;
  font-weight: 800;
  margin-bottom: 26px;
}
.business-content h4 {
  font-size: clamp(21px, 1.55vw, 30px);
  line-height: 1.38;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 34px;
}
.business-content p {
  font-size: 18px;
  line-height: 1.72;
  color: var(--gray-700);
  letter-spacing: -0.03em;
  opacity: 0.86;
}
.business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.business-tags span {
  padding: 8px 16px;
  background: var(--purple);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
}

/* Pin Story */
.pin-story {
  position: relative;
  height: 170vh;
  background: var(--black);
  color: var(--white);
}
.pin-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.pin-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pin-media-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 0.8s ease,
    transform 1.1s var(--ease);
  background: var(--bg);
}
.pin-media-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.95;
}
.pin-media-item.is-active {
  opacity: 1;
  transform: scale(1.02);
}
.pin-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.18));
}
.pin-content {
  position: relative;
  z-index: 3;
  width: min(100% - 64px, var(--max));
  margin: 0 auto;
  height: 100vh;
  display: flex;
  align-items: center;
}
.pin-text-item {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-42%);
  max-width: 940px;
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease,
    filter 0.75s ease,
    visibility 0.75s ease;
}
.pin-text-item.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
  filter: blur(0);
}
.pin-text-item h2 {
  font-size: clamp(48px, 6.6vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.085em;
  font-weight: 700;
  max-width: 1100px;
}
.pin-text-item p {
  margin-top: 34px;
  max-width: 620px;
  font-size: clamp(18px, 1.4vw, 23px);
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.035em;
}
.pin-counter {
  position: absolute;
  right: 64px;
  bottom: 54px;
  z-index: 4;
  display: flex;
  gap: 16px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.pin-counter::before {
  content: "";
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

/* Pin Story 우측 이미지 */
.pin-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(38vw, 435px);
  aspect-ratio: 5 / 5;
  border-radius: 24px;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}
.pin-visual-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.8s ease,
    transform 1.1s var(--ease);
}
.pin-visual-item.is-active {
  opacity: 1;
  transform: scale(1);
}
.pin-story .pin-text-item,
.pin-story .pin-text-item h2 {
  max-width: 615px;
}

/* Schedule / Tables */
.schedule {
  background: var(--gray-50);
}
.timeline-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.timeline-card {
  min-height: 260px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: 0.28s var(--ease);
}
.timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(5, 7, 10, 0.08);
  border-color: var(--gray-200);
}
.timeline-card b {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.12em;
}
.timeline-card h3 {
  font-size: 28px;
  line-height: 1.24;
  letter-spacing: -0.055em;
  font-weight: 900;
  margin-bottom: 14px;
  min-height: 64px;
}
.timeline-card p {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: -0.03em;
}
.info-table-wrap {
  margin-top: 44px;
  overflow: auto;
  border: 1px solid var(--gray-200);
  background: #fff;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.info-table th,
.info-table td {
  padding: 22px;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.65;
}
.info-table th {
  width: 160px;
  background: #f5f7fb;
  color: var(--blue);
  font-weight: 950;
}
.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}
.region-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.region-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0;
}
.region-card strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}
.region-card p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
}
.region-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.apply-action-grid .timeline-card {
  position: relative;
  overflow: hidden;
}
.apply-main-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
}
.apply-download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 18px 18px;
  border-radius: 999px;
  background: #333;
  color: #fff;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.03em;
  transition: 0.28s ease;
  margin-top: 15px;
}
.apply-download-btn:hover {
  transform: translateY(-4px);
  background: #1f5eff;
  color: #fff;
}
.apply-download-btn em {
  margin-left: auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
}
.google-card {
  background:
    linear-gradient(135deg, rgba(76, 98, 155, 0.96), rgba(0, 183, 255, 0.9)),
    #1f5eff;
  color: #fff;
  border-color: transparent;
}
.google-card b,
.google-card h3,
.google-card p {
  color: #fff;
}
.google-card p {
  opacity: 0.86;
}
.google-btn {
  background: #fff;
  color: #1f5eff;
}
.google-btn:hover {
  background: #0f1923;
  color: #fff;
}
.google-btn em {
  background: rgba(31, 94, 255, 0.12);
}
@media (max-width: 768px) {
  .apply-download-btn {
    padding: 15px 16px;
    font-size: 14px;
  }
  .apply-download-btn em {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

/* Notice FAQ */
.notice {
  background: #151515;
  color: var(--white);
}
.notice .section-desc {
  color: rgba(255, 255, 255, 0.68);
}
.accordion {
  margin-top: 64px;
  display: grid;
  gap: 12px;
}
.acc-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 30px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}
.acc-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  transition: 0.25s;
}
.acc-item.is-open .acc-icon {
  background: var(--blue);
  transform: rotate(45deg);
}
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.acc-panel-inner {
  padding: 0 30px 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: -0.03em;
}
.acc-panel-inner ul {
  display: grid;
  gap: 8px;
  padding-left: 0;
}
.acc-panel-inner li {
  position: relative;
  padding-left: 16px;
}
.acc-panel-inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #58f4ff;
}

/* Contact */
.contact {
  background: var(--white);
}
.contact-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  padding: 80px;
  border-radius: 32px;
  background: linear-gradient(135deg, #05070a 0%, #0f1f47 52%, #1f5eff 132%);
  color: var(--white);
  box-shadow: 0 40px 100px rgba(5, 7, 10, 0.3);
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(circle at 80% 18%, #000, transparent 75%);
  mask-image: radial-gradient(circle at 80% 18%, #000, transparent 75%);
}
.contact-box::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(79, 255, 192, 0.32),
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}
.contact-main {
  position: relative;
  z-index: 1;
}
.contact-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #58f4ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-box h2 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: var(--white);
}
.contact-box h2 span {
  color: #58f4ff;
}
.contact-box p {
  margin-top: 24px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  letter-spacing: -0.03em;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}
.contact-info {
  position: relative;
  z-index: 1;
  padding: 36px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}
.contact-info dl {
  display: grid;
}
.contact-info dl > div {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-info dl > div:first-child {
  padding-top: 0;
}
.contact-info dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.contact-info dt {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #58f4ff;
}
.contact-info dd {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}
.floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  gap: 10px;
}
.floating a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}
.floating .top {
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

/* Reveal */
.reveal,
.reveal-left,
.reveal-right,
.mask-reveal,
.flat-card,
.timeline-card,
.region-card {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.reveal {
  transform: translateY(44px);
}
.reveal-left {
  transform: translateX(-44px);
}
.reveal-right {
  transform: translateX(44px);
}
.mask-reveal {
  /* clip-path: inset(0 100% 0 0); */
  opacity: 1;
  transition: clip-path 0.95s var(--ease);
}
.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
.mask-reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

.footer {
  padding: 56px 0;
  background: var(--white);
  color: var(--black);
  border-top: 1px solid var(--gray-200);
}

.footer-grid {
  
  
  
}

.footer h2 {
  font-size: 28px;
  letter-spacing: -0.055em;
  text-align: center;
}

.footer p,
.footer a {
  color: var(--gray-700);
  font-size: 14px;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 15px;
}

.footer-menu {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--gray-500);
  font-size: 13px;
}

.summary {
  padding: 60px 0;
  background: #fff;
}

.summary-title {
  margin-bottom: 28px;
  text-align: center;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #111;
}

.summary-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.summary-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-logo-item img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
}

/* Floating Action Button (FAB) */
.floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating a {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

.floating a:hover {
  transform: translateY(-4px);
}

.floating .top {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}

.main_business .scrollWrap {
  position: relative;
}
.main_business .cards {
  height: auto;
  position: relative;
  display: block;
  padding-bottom: 8vh;
}
.main_business .card {
  position: sticky;
  inset: auto;
  width: 100%;
  height: 600px;
  will-change: transform;
  transform-origin: center top;
}
.main_business .card01 {
  top: 96px;
  z-index: 1;
}
.main_business .card02 {
  top: 116px;
  z-index: 2;
}
.main_business .card03 {
  top: 136px;
  z-index: 3;
}
.main_business .card + .card {
  margin-top: 0px;
}

.main_business .bi_bnr {
  padding: 60px;
  gap: 56px;
}
.main_business .bi_desc {
  max-width: none;
}
.main_business .bi_desc strong {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 14px;
}
.main_business .bi_lead {
  font-size: clamp(16px, 1.2vw, 19px) !important;
  line-height: 1.5;
  font-weight: 600;
  opacity: 0.92;
  margin-bottom: 24px !important;
}
.main_business .bi_meta {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
.main_business .bi_meta > div {
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.main_business .bi_meta dt {
  flex-shrink: 0;
  width: 78px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #58f4ff;
}
.main_business .bi_meta dd {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
  opacity: 0.9;
}
.main_business .bi_support-title {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #58f4ff;
}
.main_business .bi_support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}
.main_business .bi_support-list li {
  position: relative;
  padding-left: 26px;
  color: #fff;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.main_business .bi_support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 14px;
  height: 8px;
  border-left: 2px solid #58f4ff;
  border-bottom: 2px solid #58f4ff;
  transform: rotate(-45deg);
}
/* 이미지: 카드 우측 풀하이트 패널 */
.main_business .bi_img {
  width: min(40%, 420px);
  height: 100%;
  align-self: stretch;
  max-width: 420px;
}
.main_business .bi_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Flow / Timeline === */
.flow .big-title span {
  color: #58f4ff;
}
.flow-track {
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.flow-track + .flow-track {
  margin-top: 24px;
}
.flow-track-head {
  position: relative;
  overflow: hidden;
  padding: 26px 36px;
}
.flow-track-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}
.flow-track-head.head-1 {
  background: linear-gradient(135deg, #0b1627 0%, #143a8f 55%, #1f5eff 100%);
}
.flow-track-head.head-2 {
  background: linear-gradient(135deg, #161033 0%, #3a2c86 55%, #7367cf 100%);
}
.flow-track-head small {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #58f4ff;
}
.flow-track-head strong {
  position: relative;
  z-index: 1;
  font-size: clamp(20px, 2.2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.04em;
}
.flow-steps {
  display: flex;
  align-items: stretch;
  gap: 34px;
  padding: 20px;
}
.flow-step {
  flex: 1;
  position: relative;
  padding: 10px 28px 10px 28px;
  /* border: 1px solid rgba(255, 255, 255, 0.12); */
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.5); 
}
.flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -34px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 34px;
  font-weight: 600;
  color: #58f4ff;
}
.flow-step.is-final {
  background: rgba(0, 102, 255, 0.5);
  border-color: transparent;
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flow-phase {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.flow-when {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #58f4ff;
}
.flow-step.is-final .flow-when {
  color: rgba(255, 255, 255, 1);
}
.flow-where {
  padding: 3px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.flow-step-title {
  margin-bottom: 14px;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.flow-step.is-final .flow-step-title {
  margin-bottom: 0;
  color: var(--white);
}
.flow-list {
  display: grid;
  gap: 4px;
}
.flow-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}
.flow-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #58f4ff;
  font-weight: 700;
}

/* === 평가 유의사항 === */
.eval-note {
  padding: 78px 0 120px;
  background: var(--white);
}
.eval-note-box {
  position: relative;
  padding: 40px 44px;
  border: 1px solid var(--gray-200);
  border-left: 5px solid var(--blue);
  border-radius: 14px;
  background: var(--gray-50);
}
.eval-note-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eval-note-badge {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.eval-note-head h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.eval-note-list {
  display: grid;
  gap: 16px;
}
.eval-note-list li {
  position: relative;
  padding-left: 26px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--gray-700);
  letter-spacing: -0.02em;
}
.eval-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.eval-note-list strong {
  color: var(--ink);
  font-weight: 800;
}
.eval-note-sub {
  display: block;
  margin-top: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(31, 94, 255, 0.07);
  color: var(--blue);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  line-height: 1.55;
}

.section-sm {
  padding: 72px 0;
}

.download-box {
  position: relative;
  overflow: hidden;
  padding: 60px;
  border-radius: 28px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url(/public/assets/img/download_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.download-top {
  
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 34px;
}

.download-box .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.download-top h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.15;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.download-subtitle {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.03em;
}

.download-top p {
  color: var(--white);
}

.download-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.download-btns .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.download-box .btn-black {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.agency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.agency {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.agency {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  justify-content: space-between;
}

.agency p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.agency a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #1f5eff;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
}

/* === 접수 안내 (editorial spec-list) === */
.apply-info {
  padding: 0 0 110px;
  background: var(--white);
}
.apply-info-head {
  margin-bottom: 14px;
}
.apply-info-head .eyebrow {
  margin-bottom: 14px;
}
.apply-info-head h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.05em;
}
.ai-list {
  border-top: 2px solid var(--ink);
}
.ai-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 34px 8px;
  border-bottom: 1px solid var(--gray-200);
  transition:
    padding-left 0.3s var(--ease),
    background 0.3s var(--ease);
}
.ai-row:hover {
  padding-left: 20px;
  background: var(--gray-50);
}
.ai-row-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.ai-index {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--blue);
}
.ai-label {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.ai-row-body {
  align-self: center;
}
.ai-value {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: -0.03em;
}
.ai-value strong {
  color: var(--blue);
  font-weight: 800;
}
.ai-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.ai-chips span {
  padding: 7px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.ai-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  counter-reset: step;
}
.ai-steps li {
  position: relative;
  padding: 10px 16px 10px 42px;
  border-radius: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  color: var(--ink);
  counter-increment: step;
}
.ai-steps li::before {
  content: counter(step);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.ai-req {
  display: inline-block;
  margin-right: 8px;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

/* === FAQ (light accordion) === */
.faq {
  background: var(--gray-50);
}
.faq .accordion {
  margin-top: 56px;
}
.faq .acc-item {
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 14px;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.faq .acc-item.is-open {
  border-color: var(--blue);
  box-shadow: 0 18px 44px rgba(31, 94, 255, 0.1);
}
.faq .acc-btn {
  color: var(--ink);
  padding: 26px 28px;
  font-size: clamp(17px, 1.5vw, 20px);
}
.faq .acc-icon {
  position: relative;
  font-size: 0;
  background: rgba(31, 94, 255, 0.1);
  color: var(--blue);
}
.faq .acc-icon::before,
.faq .acc-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  border-radius: 2px;
  transition: opacity 0.25s var(--ease);
}
.faq .acc-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq .acc-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq .acc-item.is-open .acc-icon {
  transform: none;
  background: var(--blue);
  color: #fff;
}
.faq .acc-item.is-open .acc-icon::after {
  opacity: 0;
}
.faq .acc-panel-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray-700);
}
.faq .acc-q-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.faq .acc-q {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.faq .acc-a {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.summary {
  padding: 60px 0;
  background: #fff;
}

.summary-title {
  margin-bottom: 28px;
  text-align: center;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #111;
}

.summary-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.summary-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-logo-item img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
}

.summary-logo-item {
    height: 145px;
    border: 1px solid #dcdcdc;
    border-radius: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 18px;
    box-sizing: border-box;
}

.summary-logo-item img {
    max-width: 50%;
    max-height: 54px;
    width: auto;
    height: 64px;
    display: block;
    object-fit: contain;
}

.summary-logo-item p {
  font-size: 18px;
  font-weight: 500;
  color: #555;
}

@media (max-width: 420px) {
  .faq .acc-btn {
    padding: 22px;
  }
}
@media (max-width: 768px) {
  .apply-info {
    padding: 0 0 64px;
  }
  .ai-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 4px;
  }
  .ai-row:hover {
    padding-left: 4px;
    background: transparent;
  }
  .ai-steps {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .eval-note {
    padding: 0 0 72px;
  }
  .eval-note-box {
    padding: 28px 24px;
  }
}
@media (max-width: 900px) {
  .flow-steps {
    flex-direction: column;
    gap: 38px;
    padding: 24px;
  }
  .flow-step:not(:last-child)::after {
    content: "↓";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -30px;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .main_business .card {
    height: auto;
    min-height: 560px;
  }
  .main_business .bi_img {
    width: 100%;
    max-width: 100%;
    height: auto;
    align-self: auto;
  }
  .main_business .bi_img img {
    height: auto;
  }
  .main_business .bi_support-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .gnb {
    display: none;
  }
  .menu-btn {
    display: grid;
    place-items: center;
  }
  .header-inner {
    width: min(100% - 40px, 1380px);
  }
  .intro-layout {
    grid-template-columns: 1fr;
  }
  .intro-sticky {
    position: static;
  }
  .business-row,
  .business-row.reverse {
    grid-template-columns: 1fr;
  }
  .business-row.reverse .business-img-wrap {
    order: 1;
  }
  .business-row.reverse .business-content {
    order: 2;
  }
  .business-progress {
    display: none;
  }
  .region-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .section {
    padding: 96px 0;
  }
  .main_business {
    padding: 0 0 60px;
  }
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-kpis {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -80px;
  }
  .contact-box {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 38px;
  }
  .contact-box h2,
  .contact-box p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .contact-actions {
    justify-content: flex-start;
  }

  .pin-story .pin-text-item,
  .pin-story .pin-text-item h2 {
    max-width: 46vw;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-info {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }
}

@media (max-width: 1000px) {
  .main_business .bi_img {
    max-width: 50vw;
  }
}
@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--max));
  }
  .only-pc {
    display: none;
  }
  .only_mo {
    display: block;
  }
  .site-header {
    height: 74px;
  }
  .site-header.is-scrolled,
  .site-header.is-open {
    height: 70px;
  }
  .mobile-nav {
    top: 70px;
  }
  .brand-text span {
    display: none;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .header-apply {
    display: none;
  }
  .hero-inner {
    align-items: center;
    padding: 110px 0 150px;
  }
  .hero-title {
    font-size: 46px;
  }
  .hero-desc {
    font-size: 17px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
    height: 54px;
  }
  .hero-kpis {
    grid-template-columns: 1fr;
    margin-top: -130px;
    width: min(100% - 32px, 1380px);
  }
  .scroll-text {
    display: none;
  }
  .eyebrow {
    margin-bottom: 28px;
  }
  .intro-copy,
  .big-title,
  .business-title {
    font-size: 34px !important;
    letter-spacing: -0.06em;
  }
  .message-box {
    padding: 28px;
  }
  .flat-list {
    grid-template-columns: 1fr;
  }
  .point-box {
    height: 260px;
  }
  .business-item {
    padding: 54px 0;
  }
  .business-img-wrap {
    min-height: 310px;
    height: 62vw;
  }
  .business-content h3 {
    font-size: 34px;
  }
  .pin-story {
    height: 150vh;
  }
  .pin-content {
    width: calc(100% - 32px);
  }
  .pin-text-item h2 {
    font-size: 39px;
  }
  .pin-counter {
    right: 24px;
    bottom: 28px;
  }
  .pin-counter::before {
    width: 40px;
  }
  .timeline-grid,
  .region-grid {
    grid-template-columns: 1fr;
  }
  .timeline-card {
    min-height: unset;
  }
  .contact-info {
    padding: 26px;
  }
  .floating {
    right: 16px;
    bottom: 16px;
  }
  .floating a {
    width: 52px;
    height: 52px;
  }

  .main_business .card {
    height: 700px;
  }

  .main_business .bi_img {
    max-width: 100%;
  }

  .pin-visual {
    position: absolute;
    right: unset;
    left: 50%;
    top: unset;
    bottom: -7%;
    transform: translate(-50%, -50%);
    width: min(300px, 356px);
    aspect-ratio: 5 / 5;
    border-radius: 24px;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  }

  .pin-story .pin-text-item,
  .pin-story .pin-text-item h2 {
    max-width: 100%;
  }

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

  .footer-bottom {
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-direction: column;
  }

  .floating {
    right: 16px;
    bottom: 16px;
  }

  .floating a {
    width: 48px;
    height: 48px;
    font-size: 12px;
  }

  .contact-box {
    padding: 34px 24px;
    border-radius: 24px;
  }
  .contact-box::after {
    width: 240px;
    height: 240px;
    right: -90px;
    top: -90px;
  }
  .contact-info {
    padding: 26px;
  }
  .contact-actions {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 38px;
  }
  .hero-sub {
    font-size: 11px;
  }
  .hero-kpi {
    min-height: 108px;
  }
  .visual-card::after {
    font-size: 96px;
  }
  .visual-card .visual-text strong {
    font-size: 26px;
  }
  .acc-btn {
    padding: 22px;
    font-size: 17px;
  }
  .acc-panel-inner {
    padding: 0 22px 22px;
  }
  .info-table {
    min-width: 640px;
  }
  .contact-box h2 {
    font-size: 32px;
  }
  .contact-box p {
    font-size: 15px;
  }
}

@media (max-width: 375px) {
  .floating {
    right: 12px;
    bottom: 12px;
  }

  .floating a {
    width: 44px;
    height: 44px;
    font-size: 11px;
  }
}
.only_mo {
  display: none !important;
}
.only_web {
  display: block !important;
}
@media (max-width: 768px) {
  .only_mo {
    display: block !important;
  }
  .only_web {
    display: none !important;
  }
}
