/* Weeko landing hero + Daou-style GNB */

:root {
  --wk-navy: #1b2b4b;
  --wk-blue: #0051ff;
  --wk-sky: #49bdfe;
  --wk-text: #30415a;
  --wk-header: #003dc6;
  --header-h: 70px;
  --wk-font: "SUIT", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-padding-top: calc(var(--header-h) + 12px);
  font-family: var(--wk-font);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: #ffffff;
  color: #1a1f2e;
  font-family: var(--wk-font);
  overflow-x: hidden;
  max-width: 100%;
}

body,
body * {
  font-family: var(--wk-font);
}

.top-ribbon {
  position: relative;
  z-index: 1001;
}

/* ===== Header: service 페이지와 동일 크기/여백 + #003dc6 ===== */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: var(--wk-header);
  border-bottom: 0;
  overflow: visible;
}

.header.gnb_open {
  background: var(--wk-header);
  border-bottom: 0;
}

.header .gnb_pc.inner_header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(100px, 1.1fr) 2.2fr minmax(130px, 1.1fr);
  align-items: center;
  gap: clamp(12px, 1.67vw, 18px);
  width: min(calc(100% - clamp(24px, 18.52vw, 200px)), 1440px);
  height: 100%;
  margin: 0 auto;
}

.header .logo {
  flex: 0 0 auto;
  width: auto;
  justify-self: start;
}

.header .logo a,
.header .logo a.home-logo {
  display: inline-flex;
  width: clamp(96px, 12.69vw, 137px);
  height: clamp(22px, 2.87vw, 31px);
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
  text-decoration: none;
}

.logo-reveal {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  line-height: 0;
}

.logo-reveal img {
  display: block;
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: none;
}

.header .list_gnb {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(12px, 2.6vw, 32px);
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .list_gnb > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.header .list_gnb > li > .gnb_txt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  padding: 0 6px;
  color: #fff;
  font-size: clamp(11px, 1.204vw, 13px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  cursor: pointer;
}

.header.gnb_open .list_gnb > li > .gnb_txt {
  color: #fff;
}

.header .list_gnb > li > .gnb_txt .bg_arrow {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 2px;
  border-right: 1.2px solid currentColor;
  border-bottom: 1.2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
  opacity: 0.75;
  flex: 0 0 auto;
}

.header .list_gnb > li:hover > .gnb_txt .bg_arrow {
  transform: rotate(225deg) translateY(-1px);
}

.header .wrap_gnb_sub {
  position: absolute;
  top: var(--header-h);
  left: 50%;
  min-width: min(420px, calc(100vw - 48px));
  max-width: calc(100vw - 32px);
  padding: 24px;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px) scale(0.99);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
  z-index: 40;
  text-align: center;
}

.header .list_gnb > li:hover > .wrap_gnb_sub,
.header .list_gnb > li:focus-within > .wrap_gnb_sub {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.header .wrap_gnb_sub .cont {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  text-align: center;
}

.header .wrap_gnb_sub .gnb_sub {
  text-align: center;
}

.header .wrap_gnb_sub .category {
  margin: 0 0 10px;
  color: #999;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-align: center;
}

.header .wrap_gnb_sub .list_sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .wrap_gnb_sub .list_sub li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #222;
  text-decoration: none;
  transition: background 0.2s ease;
}

.header .wrap_gnb_sub .list_sub li a:hover {
  background: #f5f5f7;
}

.header .wrap_gnb_sub .list_sub .tit {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
}

.header .wrap_gnb_sub.solutions-menu {
  min-width: min(760px, calc(100vw - 32px));
  max-width: min(860px, calc(100vw - 24px));
  padding: 22px 20px;
  text-align: left;
}

.header .wrap_gnb_sub .solutions-mega {
  display: block;
  text-align: left;
}

.header .wrap_gnb_sub .solutions-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 10px;
  align-items: stretch;
}

.header .wrap_gnb_sub .solutions-list li a {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  min-height: 84px;
  padding: 14px 14px;
  border-radius: 12px;
  text-align: left;
}

.header .wrap_gnb_sub .solutions-list .box_menu {
  display: grid;
  gap: 6px;
}

.header .wrap_gnb_sub .solutions-list .tit {
  text-align: left;
  font-size: 15px;
  font-weight: 800;
  color: #121826;
}

.header .wrap_gnb_sub .solutions-list .desc {
  margin: 0;
  color: #6b7280;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.03em;
  text-align: left;
}

@media (max-width: 860px) {
  .header .wrap_gnb_sub .solutions-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.header .wrap_gnb_sub .icon,
.header .wrap_gnb_sub .icon_small {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #49bdfe, #0051ff);
  flex: 0 0 auto;
}

.header .list_etc {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(6px, 0.93vw, 10px);
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 0 0 auto;
  justify-self: end;
}

.btn_ghost_header,
.btn_major_header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 7.78vw, 84px);
  height: clamp(24px, 2.78vw, 30px);
  padding: 0;
  border-radius: 999px;
  font-size: clamp(10px, 1.173vw, 12.67px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.btn_ghost_header {
  color: #003dc6;
  background: #fff;
  border: 0;
}

.header.gnb_open .btn_ghost_header {
  color: #003dc6;
  background: #fff;
  border: 0;
}

.btn_major_header {
  color: #fff;
  background: #003dc6;
  border: 1px solid #fff;
  min-width: clamp(64px, 7.78vw, 84px);
}

.btn_major_header .btn_label {
  position: relative;
  z-index: 1;
}

.btn_major_header .marquee {
  display: none !important;
}

.gnb_mo { display: none; }

/* ===== Section01 (PlanI-inspired) ===== */
#section01 {
  position: relative;
  min-height: min(920px, 100vh);
  padding: clamp(56px, 6.5vw, 84px) 0 80px;
  color: #1a1f2e;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
}

#section01 .visual-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #ffffff;
}

#section01 .layout {
  position: relative;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

#section01 .sec1-title {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: 0 auto clamp(56px, 7vw, 88px);
  text-align: center;
}

#section01 .sec1-title > span {
  position: relative;
  display: block;
  height: 1.5em;
  margin: 0 auto 20px;
  overflow: hidden;
  color: var(--wk-blue);
  font-family: "SUIT", sans-serif;
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  perspective: 600px;
}

#section01 .sec1-title .label-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  white-space: nowrap;
  transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.38s ease;
}

#section01 .sec1-title .label-face-current {
  transform: translateY(0) rotateX(0deg);
  transform-origin: 50% 100%;
  opacity: 1;
}

#section01 .sec1-title .label-face-next {
  transform: translateY(82%) rotateX(-72deg);
  transform-origin: 50% 0%;
  opacity: 0;
}

#section01 .sec1-title > span.is-flipping .label-face-current {
  transform: translateY(-82%) rotateX(72deg);
  opacity: 0.15;
}

#section01 .sec1-title > span.is-flipping .label-face-next {
  transform: translateY(0) rotateX(0deg);
  opacity: 1;
}

#section01 .sec1-title h2 {
  margin: 0 0 26px;
  min-height: 2.6em;
  color: #1a1f2e;
  font-size: clamp(28px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.04em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

#section01 .sec1-title h2 .typing-text {
  white-space: pre-wrap;
  line-height: 1.32;
}

#section01 .sec1-title h2 .typing-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  margin-left: 4px;
  background: var(--wk-blue);
  vertical-align: -0.05em;
  animation: typing-blink 1s steps(1) infinite;
}

#section01 .sec1-title h2.typing-active .typing-cursor {
  animation: none;
  opacity: 1;
}

@keyframes typing-blink {
  50% { opacity: 0; }
}

#section01 .sec1-title p {
  margin: 0;
  color: #4b5568;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
  letter-spacing: -0.03em;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

#section01 .sec1-title p + p {
  margin-top: 10px;
}

#section01 .sec1-title p.is-hidden {
  opacity: 0;
  transform: translateY(8px);
}

/* department tabs — PlanI exact styles (a → .dept-tab; html 10px → rem as px) */
#section01 .department-btn {
  --text-navy: #1E41AD;
  margin: 36px auto;
  padding: 36px 24px 28px;
  text-align: center;
  overflow: visible;
  position: relative;
}

#section01 .department-btn .swiper-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 76px; /* PlanI Swiper spaceBetween equivalent */
  min-width: max-content;
  margin: 0 auto;
}

#section01 .department-btn .swiper-slide {
  position: relative;
  width: auto;
}

#section01 .department-btn .swiper-slide::before,
#section01 .department-btn .swiper-slide::after {
  content: "";
  width: 66px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 31%;
  right: -5px;
  transform: translateX(100%);
  transition: 0.3s;
}

#section01 .department-btn .swiper-slide::after {
  width: 0;
  background: #49BDFE;
  transition-delay: 0.3s;
}

#section01 .department-btn .swiper-slide:last-child::before,
#section01 .department-btn .swiper-slide:last-child::after {
  display: none;
}

#section01 .department-btn .dept-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px; /* PlanI 1.8rem @ html 10px */
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  position: relative;
}

#section01 .department-btn .dept-tab::before,
#section01 .department-btn .dept-tab::after {
  content: "";
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 28.5%;
  left: -7px;
  transition: 0.2s;
}

#section01 .department-btn .dept-tab::after {
  left: auto;
  right: -7px;
  transition-delay: 0.3s;
}

#section01 .department-btn .swiper-slide:first-child .dept-tab::before {
  display: none;
}

#section01 .department-btn .swiper-slide:last-child .dept-tab::after {
  display: none;
}

#section01 .department-btn .swiper-slide + .swiper-slide .dept-tab::before {
  transition-delay: 0.3s;
}

/* 선택(활성) 효과 — 모든 해상도 */
#section01 .department-btn .swiper-slide.is-active .dept-tab::after {
  background: #49BDFE;
  transition-delay: 0;
}

#section01 .department-btn .swiper-slide.is-active .swiper-slide-label {
  border: 0;
  color: #fff;
}

#section01 .department-btn .swiper-slide.is-active .swiper-slide-label::before {
  opacity: 1;
  animation: department-label-spin 1.2s linear infinite;
}

#section01 .department-btn .swiper-slide.is-active .swiper-slide-label::after {
  opacity: 1;
}

#section01 .department-btn .swiper-slide.is-active::after {
  width: 66px;
  transition-delay: 0;
}

#section01 .department-btn .swiper-slide.is-active + .swiper-slide .dept-tab::before {
  background: #49BDFE;
  transition-delay: 0;
}

/* 호버 효과 — 포인터 디바이스 / 태블릿 이상 */
@media (hover: hover) and (pointer: fine) {
  #section01 .department-btn .dept-tab:hover::after,
  #section01 .department-btn .dept-tab:focus-visible::after {
    background: #49BDFE;
    transition-delay: 0;
  }

  #section01 .department-btn .dept-tab:hover .swiper-slide-label,
  #section01 .department-btn .dept-tab:focus-visible .swiper-slide-label {
    border: 0;
    color: #fff;
  }

  #section01 .department-btn .dept-tab:hover .swiper-slide-label::before,
  #section01 .department-btn .dept-tab:focus-visible .swiper-slide-label::before {
    opacity: 1;
    animation: department-label-spin 1.2s linear infinite;
  }

  #section01 .department-btn .dept-tab:hover .swiper-slide-label::after,
  #section01 .department-btn .dept-tab:focus-visible .swiper-slide-label::after {
    opacity: 1;
  }

  #section01 .department-btn .swiper-slide:hover::after,
  #section01 .department-btn .swiper-slide:focus-within::after {
    width: 66px;
    transition-delay: 0;
  }

  #section01 .department-btn .swiper-slide:hover + .swiper-slide .dept-tab::before,
  #section01 .department-btn .swiper-slide:focus-within + .swiper-slide .dept-tab::before {
    background: #49BDFE;
    transition-delay: 0;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  #section01 .department-btn .swiper-wrapper {
    gap: 43px;
  }

  #section01 .department-btn .swiper-slide:hover::after,
  #section01 .department-btn .swiper-slide:focus-within::after,
  #section01 .department-btn .swiper-slide.is-active::after {
    width: 43px;
  }
}

@media (max-width: 1024px) {
  #section01 .department-btn {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  #section01 .department-btn .swiper-wrapper {
    gap: clamp(28px, 4.2vw, 52px);
    min-width: max-content;
    padding: 0 8px 8px;
  }

  #section01 .department-btn .swiper-slide::before {
    width: 43px;
    right: -16px;
  }

  #section01 .department-btn .swiper-slide::after {
    right: -16px;
  }

  #section01 .department-btn .dept-tab::before {
    left: -22px;
  }

  #section01 .department-btn .dept-tab::after {
    right: -22px;
  }
}

@media (max-width: 768px) {
  #section01 .department-btn {
    padding-bottom: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #section01 .department-btn .swiper-wrapper {
    gap: 33px;
    justify-content: flex-start;
    padding: 0 12px;
  }

  #section01 .department-btn .swiper-slide {
    width: auto;
    min-width: 116px;
  }

  #section01 .department-btn .swiper-slide::before {
    width: 33px;
    right: 12px;
    top: 32%;
  }

  #section01 .department-btn .swiper-slide::after {
    right: 5px;
  }

  #section01 .department-btn .dept-tab::before {
    left: 11px;
  }

  #section01 .department-btn .dept-tab::after {
    right: 11px;
  }
}

#section01 .department-btn .swiper-slide-label {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.53) 100%);
  box-shadow: 0 2px 5px 0 rgba(6, 128, 249, 0.1);
  backdrop-filter: blur(5px);
  font-weight: 700;
  color: var(--text-navy);
  line-height: 1.1;
  font-size: 20px; /* PlanI 2rem @ html 10px */
  position: relative;
  transition: border-color 0.3s, color 0.3s;
}

#section01 .department-btn .swiper-slide-label::before {
  content: "";
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed #49BDFE;
  opacity: 0;
  transition: opacity 0.3s;
}

#section01 .department-btn .swiper-slide-label::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.88) 0%, rgba(0, 149, 255, 0.88) 50%, rgba(31, 104, 249, 0.88) 100%);
  box-shadow: 0 2px 5px 0 rgba(6, 128, 249, 0.1);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

#section01 .department-btn .swiper-slide-title {
  letter-spacing: -0.028rem;
  color: var(--text-navy);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}

@keyframes department-label-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

#section01 .department-btn .swiper-slide-label img {
  position: relative;
  z-index: 1;
  width: 52%;
  height: 52%;
  object-fit: contain;
  pointer-events: none;
}

/* Before / After */
.ba-compare {
  max-width: 980px;
  margin: clamp(48px, 6vw, 72px) auto 40px;
  padding: 0 8px;
}

.ba-kicker {
  display: none;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: clamp(36px, 4.5vw, 52px);
  margin-bottom: 0;
  border-bottom: 0;
}

.ba-compare::after {
  content: "어떤 운영을 하고 계신가요?";
  display: block;
  box-sizing: border-box;
  width: fit-content;
  max-width: calc(100% - 16px);
  height: 0;
  margin: 0 auto clamp(36px, 4.5vw, 52px);
  overflow: hidden;
  color: transparent;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0;
  border-bottom: 1px solid rgba(26, 31, 46, 0.12);
  pointer-events: none;
  user-select: none;
}

.ba-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.ba-col {
  width: 100%;
  padding: 28px 26px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3fa 100%);
}

.ba-card-label {
  margin: 0 0 clamp(12px, 1.6vw, 18px);
  font-family: "SUIT", sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}

.ba-card-label--before {
  color: #686868;
}

.ba-card-label--after {
  color: #0053df;
}

.ba-lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 0 16px;
  color: #1a1f2e;
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.35;
  text-align: center;
}

.ba-check {
  flex: 0 0 auto;
  color: inherit;
  font-size: 1em;
  font-weight: 800;
  line-height: 1.35;
}

.ba-before .ba-check {
  color: #686868;
}

.ba-after .ba-check {
  color: #0053df;
}

.ba-accent {
  color: #0053df;
}

.ba-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.ba-flow li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #30415a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ba-flow li:not(:last-child)::after {
  content: "→";
  margin-left: 6px;
  color: #8aa0bf;
  font-weight: 700;
}

.ba-quotes {
  display: grid;
  gap: 8px;
}

.ba-quotes p,
.ba-summary {
  margin: 0;
  color: #4b5568;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.03em;
  text-align: center;
}

.ba-quotes p {
  padding: 10px 12px;
  border-radius: 12px;
  border-left: 3px solid rgba(100, 116, 139, 0.35);
  background: #f8fafc;
  color: #475569;
  font-weight: 600;
}

.ba-before,
.ba-after {
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.ba-before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(160deg, #f4f6f8 0%, #e8edf3 55%, #dde4ec 100%);
}

.ba-after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(160deg, #edf4ff 0%, #d9e8ff 55%, #cfe0ff 100%);
}

.ba-before .ba-lead,
.ba-after .ba-lead {
  margin-bottom: 0;
}

.ba-before-process,
.ba-before-result,
.ba-after-process,
.ba-after-result {
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 31, 46, 0.06);
  text-align: center;
}

.ba-before-result {
  border: 1.5px solid rgba(0, 83, 223, 0.55);
}

.ba-after-process,
.ba-after-result {
  border-color: rgba(0, 61, 198, 0.08);
}

.ba-subhead {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.ba-after .ba-subhead {
  color: #0053df;
}

.ba-flow--steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

.ba-flow--steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f4f8ff;
  color: #1a1f2e;
  font-size: 13px;
  font-weight: 700;
}

.ba-flow--before li {
  background: #f1f5f9;
}

.ba-flow--steps li::after {
  display: none;
}

.ba-flow--steps li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 22px;
  border-radius: 999px;
  background: #64748b;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ba-after .ba-flow--steps li span {
  background: #0053df;
}

.ba-summary {
  color: #1a1f2e;
  font-weight: 600;
}

.ba-after-result .ba-summary {
  padding: 12px 14px;
  border-radius: 4.55px;
  background: #f7f7f9;
}

/* Audience 3-way */
.audience-section {
  max-width: 980px;
  margin: 48px auto 12px;
  padding: 8px;
}

.audience-section > h2 {
  margin: 0 0 24px;
  color: #1a1f2e;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: center;
}

.audience-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "c-smb c-franchise c-enterprise"
    "panel panel panel";
  gap: 16px;
}

.audience-item {
  display: contents;
}

.audience-item[data-audience="smb"] .audience-card { grid-area: c-smb; }
.audience-item[data-audience="franchise"] .audience-card { grid-area: c-franchise; }
.audience-item[data-audience="enterprise"] .audience-card { grid-area: c-enterprise; }

.audience-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 24px 20px;
  border: 1px solid rgba(26, 31, 46, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(26, 31, 46, 0.05);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s, opacity 0.25s, filter 0.25s;
}

.audience-card:hover,
.audience-card:focus-visible,
.audience-card.is-active {
  border-color: rgba(0, 81, 255, 0.35);
  box-shadow: 0 14px 34px rgba(0, 81, 255, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.audience-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.audience-card strong {
  color: #1a1f2e;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.audience-card > span {
  color: #4b5568;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.audience-panel-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(18px, 2.4vw, 26px);
}

.audience-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #003dc6;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 61, 198, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.audience-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 24px rgba(0, 61, 198, 0.24);
}

.audience-panel {
  grid-area: panel;
  padding: clamp(32px, 4vw, 44px) clamp(24px, 3vw, 36px);
  border-radius: 20px;
  background: #f7f9fc;
  border: 1px solid rgba(26, 31, 46, 0.06);
  text-align: center;
}

.audience-panel[hidden] {
  display: none !important;
}

.audience-panel h3 {
  margin: 0 0 clamp(18px, 2.2vw, 26px);
  color: #1a1f2e;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.45;
}

.audience-panel p {
  margin: 0 0 8px;
  color: #4b5568;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: -0.03em;
}

.audience-panel p:last-of-type {
  margin-bottom: 0;
}

.audience-quotes {
  display: grid;
  gap: 10px;
  margin: 0 0 clamp(16px, 2vw, 22px);
  padding: 18px 20px;
  border: 1.5px solid rgba(0, 81, 255, 0.45);
  border-radius: 16px;
  background: #fff;
}

.audience-quotes p {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid rgba(0, 81, 255, 0.35);
  background: #f7f9fc;
  color: #30415a;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 900px) {
  .ba-grid,
  .audience-stack {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .ba-item {
    width: 100%;
  }

  .audience-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .audience-item[data-audience="smb"] .audience-card,
  .audience-item[data-audience="franchise"] .audience-card,
  .audience-item[data-audience="enterprise"] .audience-card,
  .audience-panel {
    grid-area: auto;
  }

  .audience-item.is-dimmed .audience-card {
    opacity: 0.38;
    filter: blur(1.6px);
    transform: none;
    box-shadow: none;
    border-color: rgba(26, 31, 46, 0.06);
  }

  .audience-item.is-active .audience-card {
    opacity: 1;
    filter: none;
    border-color: rgba(0, 81, 255, 0.4);
    box-shadow: 0 14px 34px rgba(0, 81, 255, 0.14);
  }

  .audience-item:not(.is-active) .audience-panel {
    display: none !important;
  }

  .audience-item.is-active .audience-panel {
    display: block !important;
    animation: audience-panel-in 0.28s ease;
  }

  .ba-flow--steps {
    grid-template-columns: 1fr;
  }
}

@keyframes audience-panel-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* demo video stage */
.demo-stage {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(27px, 3.15vw, 36px) clamp(28px, 3.5vw, 40px) clamp(28px, 3.5vw, 40px);
  border: 1px solid rgba(26, 31, 46, 0.08);
  border-radius: 24px;
  background: #f7f9fc;
  box-shadow: 0 12px 40px rgba(26, 31, 46, 0.06);
  text-align: left;
  color: #1a1f2e;
}

.demo-stage-meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
  padding-top: 6px;
  text-align: center;
}

.demo-kicker {
  color: var(--wk-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-title {
  margin: 0 0 8px;
  color: #1a1f2e;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.demo-desc {
  margin: 0;
  color: #4b5568;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.demo-desc .demo-block {
  margin-top: clamp(48px, 5.5vw, 68px);
  text-align: center;
}

.demo-desc .demo-block:first-child {
  margin-top: 0;
}

.demo-desc .demo-block-label {
  margin: 0 0 8px;
  color: var(--wk-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
}

.demo-desc p {
  margin: 0;
  color: #4b5568;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.03em;
  text-align: center;
}

.demo-video-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.demo-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: #000;
}

.demo-video-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.demo-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.demo-video-cue {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
}

.demo-video-cue.is-on {
  animation: demoVideoCue 0.72s ease forwards;
}

.demo-video-cue-mark {
  display: none;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(8, 12, 24, 0.58);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.demo-video-cue.is-pause .demo-video-cue-pause,
.demo-video-cue.is-play .demo-video-cue-play {
  display: block;
}

.demo-video-cue-pause {
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff);
  background-size: 8px 28px;
  background-repeat: no-repeat;
  background-position: 26px 24px, 42px 24px;
}

.demo-video-cue-play {
  background: rgba(8, 12, 24, 0.58);
}

.demo-video-cue-play::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 24px 0 0 30px;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #fff;
}

@keyframes demoVideoCue {
  0% { opacity: 0; transform: scale(0.86); }
  18% { opacity: 1; transform: scale(1); }
  70% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.06); }
}

.demo-video-expand {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px 0 10px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(18, 24, 38, 0.72);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.demo-video-expand[hidden] {
  display: none;
}

.demo-video-expand:hover,
.demo-video-expand:focus-visible {
  background: rgba(0, 61, 198, 0.92);
  outline: none;
}

.demo-video-expand-icon {
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  box-shadow: 3px 3px 0 -1.5px currentColor;
}

.demo-video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  background: rgba(8, 12, 24, 0.86);
}

.demo-video-lightbox[hidden] {
  display: none;
}

.demo-video-lightbox-frame {
  position: relative;
  width: min(100%, 1120px);
  max-height: min(86vh, 820px);
}

.demo-video-lightbox-frame .demo-video-stage {
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  max-height: min(86vh, 820px);
}

.demo-video-lightbox video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(86vh, 820px);
  object-fit: contain;
  background: #000;
  cursor: pointer;
}

.demo-video-lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(18, 24, 38, 0.92);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.demo-video-lightbox-close:hover,
.demo-video-lightbox-close:focus-visible {
  background: #003dc6;
  outline: none;
}

body.demo-video-lightbox-open {
  overflow: hidden;
}

.demo-progress {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(26, 31, 46, 0.1);
}

.demo-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #49bdfe, #0051ff);
  transition: width 0.15s linear;
}

.section-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.consult-section {
  background: #f4f6fb;
  text-align: center;
}

.consult-section .consult-card {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* PC GNB가 좁아지기 전 압축 — 901~1100 */
@media (max-width: 1100px) and (min-width: 901px) {
  .header .gnb_pc.inner_header {
    width: min(calc(100% - 32px), 1440px);
    gap: 8px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .header .list_gnb {
    gap: clamp(12px, 2.2vw, 28px);
    min-width: 0;
  }

  .header .list_gnb > li > .gnb_txt {
    gap: 4px;
    padding: 0 2px;
    font-size: 12px;
    white-space: nowrap;
  }

  .header .list_etc {
    gap: 6px;
  }

  .btn_ghost_header,
  .btn_major_header {
    min-width: 64px;
    padding: 0 10px;
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  /* .gnb_pc.inner_header { display:grid } 보다 높은 우선순위로 PC 헤더 완전 숨김 */
  .header .gnb_pc,
  .header .gnb_pc.inner_header {
    display: none !important;
  }

  .header {
    overflow: hidden;
  }

  .gnb_mo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 32px), 1440px);
    max-width: calc(100% - 32px);
    height: 100%;
    margin: 0 auto;
  }

  .gnb_mo .logo img {
    width: 80%;
    height: 80%;
    filter: none;
  }

  .gnb_mo .logo a {
    display: inline-flex;
    width: clamp(96px, 12.69vw, 137px);
    height: clamp(22px, 2.87vw, 31px);
    align-items: center;
  }

  .mobile-menu-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    padding: 8px;
    flex-shrink: 0;
  }

  .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
  }

  .navi_all {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    color: #fff;
    background:
      radial-gradient(120% 80% at 12% -10%, rgba(73, 189, 254, 0.28), transparent 55%),
      radial-gradient(90% 70% at 100% 0%, rgba(0, 81, 255, 0.35), transparent 50%),
      linear-gradient(165deg, #002a8a 0%, #003dc6 48%, #001d5d 100%);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navi_all[hidden] { display: none !important; }

  .navi_all_inner {
    display: flex;
    flex-direction: column;
    width: min(100%, 440px);
    min-height: 100%;
    margin: 0 auto;
    padding: max(18px, env(safe-area-inset-top)) 22px max(28px, env(safe-area-inset-bottom));
  }

  .navi_all_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .navi_brand {
    display: inline-flex;
    align-items: center;
    width: 118px;
    height: 28px;
    line-height: 0;
  }

  .navi_brand img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .btn_close_nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .btn_close_nav:hover,
  .btn_close_nav:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
  }

  .nav-close-icon {
    position: relative;
    width: 16px;
    height: 16px;
  }

  .nav-close-icon::before,
  .nav-close-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1.5px;
    border-radius: 999px;
    background: #fff;
  }

  .nav-close-icon::before { transform: translate(-50%, -50%) rotate(45deg); }
  .nav-close-icon::after { transform: translate(-50%, -50%) rotate(-45deg); }

  .list_gnb_mo {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
  }

  .list_gnb_mo .gnb_mo_group,
  .list_gnb_mo .gnb_mo_solo {
    margin: 0;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .list_gnb_mo .mo_tit {
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(207, 224, 255, 0.92);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mo_links {
    display: grid;
    gap: 2px;
  }

  .mo_links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .mo_links a:last-child {
    border-bottom: 0;
    padding-bottom: 2px;
  }

  .mo_links a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.55);
    border-top: 1.5px solid rgba(255, 255, 255, 0.55);
    transform: rotate(45deg);
    opacity: 0.7;
  }

  .gnb_mo_solo a {
    display: block;
    padding: 4px 2px;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .mo_auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 28px;
  }

  .mo_auth .auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
  }

  .mo_auth .login-btn {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    background: transparent;
  }

  .mo_auth .signup-btn {
    border: 0;
    color: #003dc6;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }

  .demo-stage {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    padding: 22px 14px 18px;
  }

  /* 원형 메뉴 호버/활성 링은 유지 — 크기만 태블릿에 맞춤 */
  #section01 .department-btn .swiper-slide-label {
    width: 68px;
    height: 68px;
    font-size: 15px;
  }

  #section01 .department-btn .swiper-slide-title {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  #section01 .department-btn .swiper-slide-label {
    width: 60px;
    height: 60px;
    font-size: 13px;
  }
}
