@charset "UTF-8";
/* ==========================================================
   WhisperNote 제품소개 페이지 전용 스타일
   - 콘텐츠 노출영역 1600px
   - 페이지맵(.page_area)은 common.css 재사용
   ========================================================== */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

:root {
  --wn-cyan: #1cbcca;
  --wn-cyan2: #36c5d0;
  --wn-cyan3: #0bb3c2;
  --wn-teal: #27aea7;
  --wn-purple: #8676de;
  --wn-blue: #2980d0;
  --wn-navy: #314158;
  --wn-ink: #322f5a;
  --wn-grad: linear-gradient(111deg, #3cc6de 0%, #10b981 100%);
  --wn-font-pre: "Pretendard", "NanumSquareNeo", -apple-system, sans-serif;
}

.wn_inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ----------------------------------------------------------
   배너
---------------------------------------------------------- */
.wn_hero {
  position: relative;
  min-height: 600px;
  background:
    url("../src/assets/img/whispernote/wn_bg_hero2.png") center / cover
      no-repeat,
    url("../src/assets/img/whispernote/wn_bg_hero_photo.png") center / cover
      no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.wn_hero_inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 150px 20px 60px;
  width: 100%;
}

.wn_hero_info {
  text-align: left;
}

.wn_hero_logo {
  width: 476px;
  max-width: 80vw;
  filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.12));
}

.wn_hero_slogan {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.48px;
  padding-left: 10px;
}

.wn_hero_list {
  margin-top: 42px;
  list-style: disc;
  padding-left: 30px;
}

.wn_hero_list li {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.4px;
  line-height: 2;
}

/* ----------------------------------------------------------
   제품소개 / 메인 비주얼
---------------------------------------------------------- */
.wn_main {
  position: relative;
  background: #fff url("../src/assets/img/whispernote/wn_bg_main.png") center
    bottom / cover no-repeat;
  overflow: hidden;
}

.wn_main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    149.491deg,
    rgba(94, 206, 222, 0.8) 2.65%,
    rgba(81, 205, 145, 0.8) 57.26%,
    rgba(27, 224, 129, 0.8) 95.17%
  );
  mix-blend-mode: lighten;
  pointer-events: none;
}

.wn_main_inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 180px 20px 180px;
  z-index: 1;
}

.wn_main_logo {
  display: block;
  margin: 0 auto;
  width: 450px;
  max-width: 76vw;
}

.wn_main_slogan {
  margin-top: 12px;
  font-size: 22px;
  font-weight: 500;
  color: var(--wn-cyan3);
  letter-spacing: -0.4px;
  text-align: center;
}

/* 목업 + 플로팅 카드 */
.wn_mockup_wrap {
  position: relative;
  width: min(940px, 100%);
  margin: 60px auto 0;
}

.wn_mockup {
  display: block;
  width: 100%;
}

.wn_deco_top {
  position: absolute;
  width: 20.5%;
  right: -22%;
  top: -14%;
  pointer-events: none;
}

.wn_chatbot {
  position: absolute;
  width: 23%;
  left: 62%;
  top: 40%;
  z-index: 3;
  pointer-events: none;
  transform: scaleX(-1);
  animation: wn_chatbot_float 4s ease-in-out infinite;
}

/* 챗봇 공중부양 - 작게 둥둥 */
@keyframes wn_chatbot_float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

.wn_float {
  position: absolute;
  z-index: 2;
}

.wn_glass_card {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 33px;
  box-shadow: 0px 4px 32px 0px rgba(28, 188, 202, 0.16);
  padding: 32px 34px;
}

.wn_card_tit {
  font-family: var(--wn-font-pre);
  font-size: 21px;
  font-weight: 600;
  color: var(--wn-cyan3);
  letter-spacing: -0.42px;
  line-height: 1.5;
}

.wn_card_tit.center {
  text-align: center;
}

.wn_card_txt {
  margin-top: 12px;
  font-family: var(--wn-font-pre);
  font-size: 15px;
  color: #555;
  letter-spacing: -0.3px;
  line-height: 1.5;
  max-width: 220px;
}

/* 좌측 : 회의 참여자 + 녹음중 */
.wn_float_left {
  left: -17%;
  top: 16%;
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.wn_participants {
  border-radius: 38px;
  padding: 30px 34px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.wn_avatars {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wn_avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.wn_avatar_more {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #edeff0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wn-font-pre);
  font-size: 16px;
  font-weight: 600;
  color: #acb9c3;
  letter-spacing: -0.32px;
}

/* 음성 파형 애니메이션 */
.wn_wave {
  width: 100%;
  align-self: stretch;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.wn_wave i {
  flex: 1 0 0;
  min-width: 3px;
  max-width: 5px;
  height: 10%;
  min-height: 3px;
  background: #0bb3c2;
  border-radius: 4px;
  transition: height 0.18s ease-out;
}

.wn_connector {
  height: 40px;
}

.wn_rec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.wn_rec_ico {
  width: 124px;
  animation: wn_rec_pulse 1.2s ease-in-out infinite;
}

/* 녹음 작동중 - 컬러 글로우와 함께 커졌다 작아졌다 */
@keyframes wn_rec_pulse {
  0%,
  85%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0px 4px 14px rgba(54, 197, 208, 0.25));
  }
  45% {
    transform: scale(1.08);
    filter: drop-shadow(0px 8px 26px rgba(54, 197, 208, 0.55));
  }
}

.wn_rec p {
  font-family: var(--wn-font-pre);
  font-size: 18px;
  font-weight: 600;
  color: var(--wn-cyan3);
  letter-spacing: -0.36px;
}

/* 우측 : 핵심 요약 / 문서 생성 */
.wn_float_summary {
  right: -8%;
  top: 5%;
}

.wn_float_docs {
  right: -23%;
  top: 31%;
}

.wn_bubble {
  position: absolute;
  pointer-events: none;
}

.wn_bubble_001 {
  width: 132px;
  left: -111px;
  top: 44px;
  z-index: 1;
}

.wn_bubble_002 {
  width: 156px;
  left: -136px;
  top: 41px;
  z-index: 1;
}

.wn_chip_list {
  margin-top: 22px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.wn_chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 38ßpx;
  padding: 6px 10px;
  background-color: #dce6ed54;
  /* background: #fff; */
  /* border: 1px solid #dce6ed; */
  /* filter: drop-shadow(0px 3px 3px rgba(220, 230, 237, 0.4)); */
  border-radius: 8px;
  font-family: var(--wn-font-pre);
  font-size: 13px;
  color: #555;
  letter-spacing: -0.26px;
  white-space: nowrap;
}

.wn_chip img {
  width: 16px;
  height: 16px;
  object-fit: cover;
}

.wn_chip_dots {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0 6px 17px;
}

.wn_chip_dots i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d3d3d3;
}

/* 핵심 기능 4종 바 */
.wn_feature_bar {
  margin: 70px auto 0;
  max-width: 1380px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 40px 60px;
  border-radius: 30px;
  background: linear-gradient(
    182.03deg,
    rgba(255, 255, 255, 0.95) 6.92%,
    rgba(255, 255, 255, 0.19) 97.59%
  );
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0px 10px 60px 0px rgba(47, 70, 113, 0.08),
    inset -5px -4px 4px 0px rgba(255, 255, 255, 0.37),
    inset 0px 4px 4px 0px rgba(255, 255, 255, 0.81);
}

.wn_feature_item {
  flex: 1 0 0;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 20px;
  position: relative;
}

.wn_feature_item + .wn_feature_item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 120px;
  background: #d9d9d9;
  border-radius: 2px;
}

.wn_feature_item img {
  width: 86px;
  height: 86px;
  object-fit: cover;
}

.wn_feature_item .tit {
  font-family: var(--wn-font-pre);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.4;
  text-align: center;
}

.wn_feature_item .txt {
  font-family: var(--wn-font-pre);
  font-size: 15px;
  color: #555;
  letter-spacing: -0.3px;
  line-height: 1.5;
  text-align: center;
  margin-top: -18px;
}

.c_cyan {
  color: var(--wn-cyan);
}
.c_teal {
  color: var(--wn-teal);
}
.c_purple {
  color: var(--wn-purple);
}
.c_blue {
  color: var(--wn-blue);
}

/* ----------------------------------------------------------
   회의의 모든 흐름을 한번에
---------------------------------------------------------- */
.wn_flow {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.wn_flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../src/assets/img/whispernote/wn_bg_blur.png") center / cover
    no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

.wn_flow .wn_inner {
  position: relative;
  padding-top: 200px;
  padding-bottom: 220px;
}

.wn_flow_head {
  text-align: center;
  padding: 40px 0;
}

.wn_flow_tit {
  font-size: 42px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}

.wn_flow_tit .wn_point {
  color: var(--wn-cyan2);
}

.wn_flow_txt {
  margin-top: 30px;
  font-size: 19px;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
}

.wn_flow_cards {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(40px, 6vw, 116px);
}

.wn_flow_card {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 47px;
}

.wn_flow_circle {
  width: 300px;
  height: 290px;
  border-radius: 150px;
  border: 3px solid #fff;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: 0px 4px 16px 0px rgba(61, 86, 97, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wn_flow_circle img {
  width: 50%;
}

.wn_flow_card:nth-child(3) .wn_flow_circle img {
  width: 58%;
}

.wn_flow_card .tit {
  font-size: 22px;
  font-weight: 500;
  color: var(--wn-ink);
  letter-spacing: -0.44px;
  text-align: center;
}

.wn_flow_card .txt {
  font-size: 17px;
  font-weight: 400;
  color: var(--wn-ink);
  letter-spacing: -0.34px;
  line-height: 1.5;
  text-align: center;
  margin-top: -29px;
}

/* ----------------------------------------------------------
   하단 공통 배경 (상세소개 ~ 문의하기)
---------------------------------------------------------- */
.wn_lower_bg {
  position: relative;
  background-color: #fff;
}

/* 제품 상세 소개 */
.wn_about {
  position: relative;
  background-image: url("../src/assets/img/whispernote/wn_bg_003.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

/* 배경 이미지 하단을 흰색으로 자연스럽게 페이드 */
.wn_about::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 260px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 75%);
  pointer-events: none;
}

.wn_about .wn_inner {
  position: relative;
  z-index: 1;
}

.wn_about .wn_inner {
  padding-top: 200px;
  padding-bottom: 180px;
}

.wn_about_card {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 64px 80px 76px;
  background: linear-gradient(
    183.67deg,
    #fff 6.92%,
    rgba(255, 255, 255, 0.22) 97.59%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0px 10px 70px 0px rgba(29, 146, 140, 0.1),
    inset -5px -4px 4px 0px rgba(255, 255, 255, 0.37),
    inset 0px 4px 4px 0px rgba(255, 255, 255, 0.81);
}

.wn_quote_ico {
  width: 68px;
  margin-left: -10px;
}

.wn_about_cols {
  margin-top: 16px;
  display: flex;
  gap: 70px;
  align-items: stretch;
}

.wn_about_left {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.wn_about_tit {
  font-family: var(--wn-font-pre);
  font-size: 32px;
  font-weight: 500;
  color: #000;
  letter-spacing: -0.52px;
  line-height: 1.6;
  word-break: keep-all;
}

.wn_tag_box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 6px;
  max-width: 640px;
}

.wn_tag {
  background: #fff;
  border-radius: 40px;
  padding: 8px 18px;
  font-family: var(--wn-font-pre);
  font-size: 13px;
  color: #507076;
  letter-spacing: -0.26px;
  white-space: nowrap;
  box-shadow: 0px 2px 10px 0px rgba(95, 206, 160, 0.123);
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}

.wn_about_right {
  flex: 1 0 0;
  min-width: 0;
  padding-left: 60px;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wn_about_right p {
  font-family: var(--wn-font-pre);
  font-size: 15px;
  color: #000;
  letter-spacing: -0.3px;
  line-height: 1.6;
  word-break: keep-all;
  font-weight: 400;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* 설명 항목 : 좌측 아이콘 + 텍스트 */
.wn_about_item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wn_about_item img {
  width: 64px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.wn_about_item:hover img {
  transform: scale(1.05);
}

.wn_about_item:hover p {
  text-shadow: 0px 2px 10px rgba(28, 188, 202, 0.35);
}

.wn_about_item p {
  flex: 1;
  min-width: 0;
  transition: text-shadow 0.35s ease;
}

/* ----------------------------------------------------------
   주요기능 소개
---------------------------------------------------------- */
.wn_function {
  position: relative;
  background: #fff;
  /* overflow: hidden; */
}

.wn_function .wn_inner {
  position: relative;
  padding-top: 100px;
  padding-bottom: 180px;
}

/* 슬라이더 */
.wn_fn_slider {
  position: relative;
  z-index: 1;
}

.wn_fn_cols {
  padding-bottom: 80px;
}

/* 좌측 텍스트 : 같은 자리에 겹쳐두고 페이드 전환 */
.wn_fn_texts {
  width: 504px;
  flex-shrink: 0;
  display: grid;
}

.wn_fn_texts .wn_fn_left {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.wn_fn_texts .wn_fn_left.active {
  opacity: 1;
  pointer-events: auto;
}

/* 우측 이미지 : 페이드 + 떠오르기 전환 */
.wn_fn_imgtrack {
  display: grid;
}

/* 나가는 이미지: 새 이미지 뒤에 가려진 채 사라짐 (배경 비침 방지) */
.wn_fn_imgtrack .wn_fn_imgcard {
  grid-area: 1 / 1;
  opacity: 0;
  z-index: 0;
  transition: opacity 0s linear 0.7s;
  pointer-events: none;
}

/* 들어오는 이미지: 기존 이미지 위에서 페이드인 */
.wn_fn_imgtrack .wn_fn_imgcard.active {
  opacity: 1;
  z-index: 1;
  transition: opacity 0.7s ease;
}

.wn_fn_cols {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.wn_fn_left {
  padding-left: 20px;
}

/* 다이아 아이콘 - 슬라이드와 무관하게 고정, 전환 시 이동 방향으로 90도 회전 */
.wn_fn_ico {
  position: absolute;
  width: 50px;
  left: 140px;
  top: 106px;
  z-index: 2;
  border-radius: 12px;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.34, 1.3, 0.64, 1);
}

/* 고정 아이콘 자리 확보 (아이콘 50px + 기존 간격 33px) */
.wn_fn_left {
  padding-top: 83px;
}

.wn_fn_tit {
  margin-top: 0;
  font-size: 38px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}

.wn_fn_tit .grad {
  background: linear-gradient(119.18deg, #3cc6de 19.68%, #10b981 172.97%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wn_fn_txts {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wn_fn_txts p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  word-break: keep-all;
}

.wn_fn_right {
  flex: 0 0 720px;
  max-width: 720px;
  position: relative;
  margin-top: 50px;
  transition: scale 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.wn_fn_right:hover {
  scale: 1.3;
}

/* AI 3D 텍스트 꾸밈요소 - 슬라이드와 무관하게 섹션에 고정, 둥둥 떠다니는 애니메이션 */
.wn_fn_ai {
  position: absolute;
  width: 210px;
  right: 36px;
  top: 30px;
  z-index: 0;
  pointer-events: none;
  animation:
    wn_bob 5s ease-in-out infinite,
    wn_tilt 7s ease-in-out infinite;
}

/* 위아래 부유 - 일정한 리듬 유지 */
@keyframes wn_bob {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

/* 기울기 갸웃거림 - 부유와 독립적으로 동작 */
@keyframes wn_tilt {
  0%,
  100% {
    rotate: 0deg;
  }
  25% {
    rotate: 1.6deg;
  }
  75% {
    rotate: -1.6deg;
  }
}

/* 섹션 배경 데코 (잘리지 않게 섹션 레벨 배치, 가장자리 페이드 마스크) */
.wn_fn_bg {
  position: absolute;
  width: 1300px;
  max-width: none;
  right: -220px;
  top: -120px;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(
    50% 50% at 50% 50%,
    #000 50%,
    transparent 92%
  );
  mask-image: radial-gradient(50% 50% at 50% 50%, #000 50%, transparent 92%);
}

.wn_fn_imgcard {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  border: 4px solid #fff;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  padding: 3px;
}

/* 그림자는 고정 레이어에 분리 (페이드 중 그림자 겹침 방지) */
.wn_fn_imgtrack::before {
  content: "";
  grid-area: 1 / 1;
  border-radius: 18px;
  box-shadow:
    0px 24px 60px -12px rgba(28, 188, 202, 0.3),
    0px 10px 26px -8px rgba(16, 185, 129, 0.16);
  pointer-events: none;
}

.wn_fn_imgcard img {
  display: block;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e4f4f4;
}

.wn_fn_controls {
  position: relative;
  z-index: 1;
  max-width: 1340px;
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.wn_fn_dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
}

.wn_fn_dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: rgba(54, 197, 208, 0.3);
  cursor: pointer;
  transition:
    width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.45s ease;
}

.wn_fn_dots .dot.active {
  width: 56px;
  background: var(--wn-cyan2);
}

.wn_fn_arrows {
  display: flex;
  gap: 12px;
}

.wn_fn_arrow {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}

.wn_fn_arrow:hover {
  opacity: 1;
  box-shadow: 0px 8px 24px 0px rgba(28, 188, 202, 0.25);
}

.wn_fn_arrow img {
  width: 17px;
}

.wn_fn_arrow.prev img {
  transform: scaleX(-1);
}

/* ----------------------------------------------------------
   문의하기
---------------------------------------------------------- */
.wn_cta .wn_inner {
  padding-top: 120px;
  padding-bottom: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.wn_cta_tit {
  font-family: var(--wn-font-pre);
  font-size: 38px;
  font-weight: 600;
  color: var(--wn-navy);
  line-height: 1.55;
  text-align: center;
  word-break: keep-all;
}

.wn_contact_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 270px;
  height: 62px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0px 10px 60px 0px rgba(47, 109, 113, 0.1),
    inset -5px -4px 4px 0px rgba(255, 255, 255, 0.37),
    inset 0px 4px 4px 0px rgba(255, 255, 255, 0.79);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.wn_contact_btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0px 14px 60px 0px rgba(47, 109, 113, 0.18),
    inset -5px -4px 4px 0px rgba(255, 255, 255, 0.37),
    inset 0px 4px 4px 0px rgba(255, 255, 255, 0.79);
}

.wn_contact_btn img {
  width: 29px;
}

.wn_contact_btn span {
  font-size: 17px;
  font-weight: 500;
  background: var(--wn-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ----------------------------------------------------------
   고객 후기
---------------------------------------------------------- */
.wn_review {
  /* background: #fff; */
}

.wn_review .wn_inner {
  max-width: 1420px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.wn_review_head {
  text-align: center;
}

.wn_review_head .sub {
  font-family: var(--wn-font-pre);
  font-size: 18px;
  font-weight: 600;
  color: var(--wn-cyan);
  letter-spacing: -0.36px;
}

.wn_review_head .tit {
  margin-top: 14px;
  font-size: 40px;
  font-weight: 500;
  color: var(--wn-navy);
  letter-spacing: -0.76px;
  line-height: 1.6;
}

/* 리뷰 캐러셀 뷰포트 (패딩은 카드 그림자 노출용, 마스크로 양옆 카드조각 페이드) */
.wn_review_viewport {
  overflow: hidden;
  padding: 100px 70px;
  margin: -14px -70px -70px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 40px,
    #000 70px,
    #000 calc(100% - 70px),
    transparent calc(100% - 40px)
  );
  mask-image: linear-gradient(
    90deg,
    transparent 40px,
    #000 70px,
    #000 calc(100% - 70px),
    transparent calc(100% - 40px)
  );
}

.wn_review_cards {
  display: flex;
  gap: 28px;
}

.wn_review_card {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
  background: linear-gradient(
    182deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(220, 230, 237, 0.6);
  border-radius: 30px;
  padding: 40px 36px;
  box-shadow: 0px 10px 60px 0px rgba(47, 70, 113, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wn_review_card .stars {
  display: flex;
  gap: 4px;
  font-size: 16px;
}

.wn_review_card .quote {
  flex: 1;
  font-family: var(--wn-font-pre);
  font-size: 17px;
  color: #444;
  letter-spacing: -0.34px;
  line-height: 1.7;
  word-break: keep-all;
}

.wn_review_card .author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wn_review_card .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.bg_cyan {
  background: linear-gradient(135deg, #3cc6de 0%, #1cbcca 100%);
}
.bg_teal {
  background: linear-gradient(135deg, #27aea7 0%, #10b981 100%);
}
.bg_purple {
  background: linear-gradient(135deg, #8676de 0%, #6b5fcf 100%);
}
.bg_blue {
  background: linear-gradient(135deg, #4a9be8 0%, #2980d0 100%);
}

.wn_review_card .info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wn_review_card .info em {
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  color: var(--wn-navy);
  letter-spacing: -0.32px;
}

.wn_review_card .info span {
  font-family: var(--wn-font-pre);
  font-size: 13px;
  color: #888;
  letter-spacing: -0.26px;
}

/* ----------------------------------------------------------
   하단 배너
---------------------------------------------------------- */
.wn_banner_sec {
  background: #fff;
  padding-bottom: 180px;
}

.wn_banner_sec .wn_inner {
  max-width: 1420px;
}

.wn_banner {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(120deg, #1d2f52 0%, #314158 60%, #1d3a4e 100%);
  padding: 72px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.wn_banner::before,
.wn_banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* 블롭 3개가 같은 타원 궤도를 1/3 위상차(-14s, -28s 딜레이)로 순환 →
   항상 일정 간격을 유지해 서로 겹치거나 뭉치지 않음 */
.wn_banner::before {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  margin: -200px 0 0 -200px;
  background: radial-gradient(
    circle,
    rgba(60, 198, 222, 0.28) 0%,
    transparent 70%
  );
  filter: blur(50px);
  will-change: transform;
  animation: wn_blob_orbit 42s linear infinite;
}

.wn_banner::after {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  margin: -150px 0 0 -150px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.22) 0%,
    transparent 70%
  );
  filter: blur(50px);
  will-change: transform;
  animation: wn_blob_orbit 42s linear infinite;
  animation-delay: -14s;
}

/* 배너 배경 보라톤 블러 블롭 */
.wn_banner_blob {
  position: absolute;
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  margin: -170px 0 0 -170px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.2) 0%,
    transparent 70%
  );
  filter: blur(50px);
  will-change: transform;
  animation: wn_blob_orbit 42s linear infinite;
  animation-delay: -28s;
}

@keyframes wn_blob_orbit {
  0% {
    transform: translate(430px, 0) scale(1);
  }
  12.5% {
    transform: translate(304px, -85px) scale(1.08);
  }
  25% {
    transform: translate(0, -120px) scale(0.95);
  }
  37.5% {
    transform: translate(-304px, -85px) scale(1.05);
  }
  50% {
    transform: translate(-430px, 0) scale(1);
  }
  62.5% {
    transform: translate(-304px, 85px) scale(1.08);
  }
  75% {
    transform: translate(0, 120px) scale(0.95);
  }
  87.5% {
    transform: translate(304px, 85px) scale(1.05);
  }
  100% {
    transform: translate(430px, 0) scale(1);
  }
}

@media (max-width: 1024px) {
  .wn_banner::before,
  .wn_banner::after,
  .wn_banner_blob {
    animation-name: wn_blob_orbit_sm;
  }

  @keyframes wn_blob_orbit_sm {
    0% {
      transform: translate(180px, 0) scale(1);
    }
    25% {
      transform: translate(0, -130px) scale(1.05);
    }
    50% {
      transform: translate(-180px, 0) scale(0.95);
    }
    75% {
      transform: translate(0, 130px) scale(1.05);
    }
    100% {
      transform: translate(180px, 0) scale(1);
    }
  }
}

.wn_banner_txts {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wn_banner_txts .sub {
  font-family: var(--wn-font-pre);
  font-size: 16px;
  font-weight: 600;
  color: rgba(60, 198, 222, 0.9);
  letter-spacing: -0.32px;
}

.wn_banner_txts .tit {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.72px;
  line-height: 1.35;
  margin: 8px 0;
}

.wn_banner_txts .desc {
  font-family: var(--wn-font-pre);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.34px;
  line-height: 1.6;
  max-width: 520px;
  word-break: keep-all;
  font-weight: 400;
}

.wn_banner_btns {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

.wn_banner_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.34px;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.wn_banner_btn:hover {
  transform: translateY(-2px);
}

.wn_banner_btn.fill {
  background: var(--wn-grad);
  color: #fff;
  box-shadow: 0px 8px 32px rgba(60, 198, 222, 0.4);
  text-shadow: 0px 2px 6px rgba(13, 84, 73, 0.35);
  gap: 10px;
}

/* 문의하기 버튼 마이크 아이콘 - 흰색 처리 */
.wn_btn_mic {
  width: 28px;
  filter: brightness(0) invert(1);
}

.wn_banner_btn.ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ==========================================================
   반응형
   ========================================================== */
@media (max-width: 1500px) {
  .wn_deco_top {
    right: -8%;
    top: -12%;
  }
}

@media (max-width: 1280px) {
  .wn_hero_inner,
  .wn_main_inner {
    padding-top: 120px;
  }

  .wn_glass_card {
    padding: 22px 24px;
    border-radius: 24px;
  }

  .wn_card_tit {
    font-size: 18px;
  }

  .wn_card_txt {
    font-size: 13px;
  }

  .wn_float_left {
    width: 250px;
    left: -10%;
  }

  .wn_float_summary {
    right: -4%;
  }

  .wn_float_docs {
    right: -16%;
  }

  .wn_avatar {
    width: 44px;
    height: 44px;
  }

  .wn_avatar_more {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }

  .wn_rec_ico {
    width: 76px;
  }

  .wn_rec p {
    font-size: 15px;
  }

  .wn_chip {
    height: 32px;
    font-size: 12px;
  }

  .wn_bubble_001 {
    width: 80px;
    left: -62px;
  }

  .wn_bubble_002 {
    width: 110px;
    left: -90px;
  }

  .wn_feature_bar {
    margin-top: 90px;
    flex-wrap: wrap;
    gap: 30px;
  }

  .wn_feature_item {
    flex: 1 0 38%;
  }

  .wn_feature_item + .wn_feature_item::before {
    display: none;
  }

  .wn_flow_tit {
    font-size: 32px;
  }

  .wn_fn_cols {
    align-items: center;
  }

  .wn_fn_texts {
    width: 44%;
  }

  .wn_fn_right {
    flex: 1 1 auto;
    min-width: 0;
    margin-top: 60px;
  }

  .wn_fn_tit {
    font-size: 28px;
  }

  .wn_cta_tit {
    font-size: 32px;
  }
}

@media (max-width: 1024px) {
  .wn_hero {
    min-height: 480px;
  }

  .wn_hero_inner {
    padding-top: 140px;
  }

  .wn_hero_logo {
    width: 320px;
  }

  .wn_hero_slogan {
    font-size: 20px;
  }

  .wn_hero_list li {
    font-size: 17px;
  }

  .wn_main_logo {
    width: 360px;
  }

  .wn_flow_cards {
    flex-wrap: wrap;
  }

  .wn_about_cols {
    flex-direction: column;
    gap: 48px;
  }

  .wn_about_card {
    padding: 50px 40px;
  }

  .wn_about_right {
    padding-left: 0;
  }

  .wn_fn_cols {
    flex-direction: column;
    align-items: flex-start;
  }

  .wn_fn_texts {
    width: 100%;
  }

  .wn_fn_right {
    flex: 0 0 auto;
    width: 100%;
    max-width: 604px;
    margin: 0 auto;
  }

  .wn_fn_controls {
    margin-top: 48px;
  }

  .wn_review_cards {
    flex-direction: column;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    transform: none !important;
  }

  .wn_review_card {
    flex: 0 0 auto;
  }

  /* 모바일에서는 캐러셀 복제 카드 숨김 */
  .wn_review_card.wn_clone {
    display: none;
  }

  .wn_review_head {
    text-align: center;
  }

  .wn_banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 48px;
  }

  .wn_banner_btns {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 744px) {
  .wn_hero {
    min-height: 420px;
  }

  .wn_hero_inner {
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .wn_hero_logo {
    width: 250px;
  }

  .wn_hero_slogan {
    margin-top: 20px;
    font-size: 17px;
  }

  .wn_hero_list {
    margin-top: 28px;
    padding-left: 22px;
  }

  .wn_hero_list li {
    font-size: 15px;
    line-height: 1.8;
  }

  .wn_main_inner {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .wn_main_logo {
    width: 280px;
  }

  .wn_mockup_wrap {
    margin-top: 40px;
  }

  /* 모바일에서는 플로팅 카드 숨김 */
  .wn_float,
  .wn_deco_top {
    display: none;
  }

  .wn_feature_bar {
    margin-top: 60px;
    padding: 24px 20px;
    gap: 16px;
  }

  .wn_feature_item {
    min-width: 0;
    padding: 12px 6px;
    gap: 16px;
  }

  .wn_feature_item img {
    width: 60px;
    height: 60px;
  }

  .wn_feature_item .tit {
    font-size: 16px;
  }

  .wn_feature_item .txt {
    font-size: 13px;
    margin-top: -8px;
  }

  .wn_flow .wn_inner {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .wn_flow_tit {
    font-size: 24px;
    word-break: keep-all;
  }

  .wn_flow_txt {
    font-size: 15px;
    word-break: keep-all;
  }

  .wn_flow_cards {
    margin-top: 40px;
    gap: 40px;
  }

  .wn_flow_card {
    width: 240px;
    gap: 28px;
  }

  .wn_flow_circle {
    width: 240px;
    height: 232px;
  }

  .wn_flow_card .txt {
    margin-top: -12px;
  }

  .wn_about .wn_inner {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .wn_about_card {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .wn_quote_ico {
    width: 48px;
  }

  .wn_about_tit {
    font-size: 20px;
  }

  .wn_about_right p {
    font-size: 14px;
  }

  .wn_function .wn_inner {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  /* AI 데코 축소, 타이틀 위쪽 우측에 배치 */
  .wn_fn_ai {
    width: 84px;
    right: 20px;
    top: 16px;
  }

  .wn_fn_bg {
    width: 1000px;
    right: -310px;
    top: 50px;
  }

  .wn_fn_ico {
    width: 40px;
    left: 30px;
    top: 56px;
  }

  .wn_fn_left {
    padding-top: 56px;
  }

  .wn_fn_tit {
    margin-top: 0;
    font-size: 23px;
    word-break: keep-all;
  }

  .wn_fn_txts {
    margin-top: 22px;
    gap: 14px;
  }

  .wn_fn_txts p {
    font-size: 15px;
  }

  .wn_fn_cols {
    gap: 26px;
    padding-bottom: 30px;
  }

  .wn_fn_right {
    margin-top: 0;
  }

  .wn_fn_controls {
    margin-top: 20px;
  }

  .wn_fn_arrow {
    width: 52px;
    height: 52px;
  }

  .wn_fn_arrow img {
    width: 13px;
  }

  .wn_cta .wn_inner {
    padding-top: 80px;
    padding-bottom: 100px;
    gap: 36px;
  }

  .wn_cta_tit {
    font-size: 23px;
  }

  .wn_contact_btn {
    width: 230px;
    height: 54px;
  }

  .wn_review .wn_inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .wn_review_head .tit {
    font-size: 26px;
    word-break: keep-all;
  }

  .wn_review_card {
    padding: 30px 24px;
  }

  .wn_review_card .quote {
    font-size: 15px;
  }

  .wn_banner_sec {
    padding-bottom: 70px;
  }

  .wn_banner {
    padding: 40px 28px;
    border-radius: 24px;
    gap: 32px;
  }

  .wn_banner_txts .tit {
    font-size: 26px;
    word-break: keep-all;
  }

  .wn_banner_txts .desc {
    font-size: 15px;
  }

  .wn_banner_btns {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .wn_banner_btn {
    padding: 15px 32px;
  }
}

@media (max-width: 500px) {
  .wn_hero_logo {
    width: 210px;
  }

  .wn_feature_bar {
    flex-direction: column;
    align-items: stretch;
  }

  .wn_feature_item {
    flex: 1 0 auto;
  }

  .wn_flow_card,
  .wn_flow_circle {
    width: 210px;
  }

  .wn_flow_circle {
    height: 203px;
  }
}
