@charset "utf-8";

/* ==========================================================================
   common
   ========================================================================== */

   [class^="scaleVF-"] {
    font-family: "Pretendard Variable", sans-serif;
  }
  
  html,
  body {
    font-family: "Pretendard Variable", Pretendard, -apple-system,
      BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
      "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  }
  

.title strong {
  z-index: 1;
  position: relative;
  white-space: nowrap;
}
.title strong::before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2.2rem;
  background-color: #A3C8FF;
}

/* ==========================================================================
   header
   ========================================================================== */
header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.9rem 0;
  background-color: #041448;
  border-bottom: 1px solid rgba(119, 119, 119, 0.4);
  transition: 0.3s ease-in-out;
}
header.on {
  background-color: #041448;
  /* border-bottom-color: rgb(40, 164, 30, 0.6); */
}
header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo a {
  display: block;
  width: 15.9rem;
  height: 3.8rem;
  background: url("../images/logo/logo.png") no-repeat center center / 100% 100%;
}
header .gnb {
  display: flex;
  align-items: center;
  column-gap: 8.2rem;
}
header .gnb a {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.45px;
}
.sub-header .gnb a {
  color: #050000;
}
header .gnb li.on a {
  color: #287EFF;
  font-weight: 800;
}
header .gnb-box {
  display: none;
  font-size: 3rem;
  color: #fff;
}
.sub-header .gnb-box {
  color: #050000;
}

/* ==========================================================================
   main - intro
   ========================================================================== */
section {
  position: relative;
}
.intro {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
}
.intro .bg {
  position: fixed;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(0, -50%);
}
.intro .bg img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}
.intro .content {
  position: fixed;
  top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.intro .sub-title {
  display: inline-block;
  margin-top: 10rem;
  background-image: linear-gradient(45deg, #84FAFC 33%, #62A3FF 67%);
  font-size: 4.65rem;
  font-weight: 700;
  color: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.intro .title {
  display: flex;
  column-gap: 1.2rem;
  margin-top: 2.4rem;
  font-size: 14.8rem;
  line-height: 1.3;
  color: #fff;
  height: 10.9rem;
  line-height: normal;
}
.intro .title .scaleVF-700 {
  color: #257EFF;
}

.intro .desc {
  margin: 5.1rem 0 6.1rem;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.75px;
  color: #fff;
}
.intro .detail-info {
  margin-bottom: 8.5rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: -0.63px;
  text-align: left;
  color: #fff;
}
.intro .detail-info span {
  position: relative;
  padding-left: 1.3rem;
}

.intro .detail-info span + span {
  margin-left: 2rem;
}

/* 1. 일시 (날짜 아이콘 2배 크기) */
.intro .detail-info .date {
  /* 기존 2.2rem -> 4.4rem 으로 2배 확대 */
  padding-left: 5.4rem; /* 아이콘 크기 확대에 맞춘 좌측 여백 */
  background: url("../images/main/calendar_icon-.png") no-repeat left center / 3.5rem auto;
}

.intro .detail-info .place {
  padding-left: 5.4rem;
  background: url("../images/main/Location_icon.png") no-repeat left center / 3.5rem auto;
}

.intro button {
display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 33rem;
  height: 8.8rem;
  padding: 0 3.6rem;
  
  /* 완벽한 알약 형태 */
  border-radius: 999px;
  
  /* 다크 네이비 배경 + 테두리 그라데이션 (상단 Cyan -> 하단 Blue) */
  border: 2px solid transparent;
  background-image: 
    linear-gradient(#141724, #141724), 
    linear-gradient(180deg, #7ae2ff 0%, #4882ff 100%);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  
  /* 이미지 특유의 부드러운 테두리 은은한 광원 효과 */
  box-shadow: 0 0 15px rgba(122, 226, 255, 0.25), 
              0 10px 25px rgba(0, 0, 0, 0.5);
  
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.intro button i {
  margin-left: 1rem;
  font-size: 2.2rem;
}
.intro button + button {
  margin-left: 3rem;
}
.intro button:hover {
  color: #4882ff;
}

/* ==========================================================================
   main - conference-intro
   ========================================================================== */
.conference-intro {
  padding: 12.7rem 0 13.2rem;
  background: #fff;
}
.conference-intro .title {
  margin-bottom: 5.2rem;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.31;
  letter-spacing: -0.42px;
  text-align: center;
  color: #090909;
}
.conference-intro .coming-soon {
    font-size: 40px;
    font-weight: 900;
    color: #090909;
    margin-bottom: 20px;
    letter-spacing: -0.05em;
    font-family: "Pretendard Variable", sans-serif;
    font-variation-settings: "wght" 900, "wdth" 100;
    text-align: center;
}

.conference-intro .intro-phrase {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 40px;
    opacity: 0.8;
    color: #000;
    text-align: center;
    line-height: 60px
}

.conference-intro .event-date {
  color: #1125ed;
}

/* 형광색(Fluorescent) 글자 효과 */
.conference-intro .highlight-box {
    margin-bottom: 40px;
    text-align: center;
}

.conference-intro .fluorescent-text {
    font-size: 25px;
    font-weight: 800;
    display: inline-block;
    padding: 1.5rem 8.5rem;
    background-color: #000;
    color: #a5c7ff;
    border-radius: 3rem;
}

.conference-intro .desc strong {
  color: #000;
}

.conference-intro .desc span {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.56;
  letter-spacing: -1.08px;
  text-align: center;
  color: #656b70;
}
.conference-intro .desc span + span {
  margin-top: 0.9rem;
}

/* ==========================================================================
   main - history
   ========================================================================== */
.history {
  color: #fff;
  width: 100%;
  padding: 12rem 0 14.2rem;
  background: url("../images/bg/history_bg.jpg") no-repeat top center / cover;
}
.history .title {
  font-size: 4.8rem;
  line-height: 0.69;
  text-align: center;
  color: #257eff;
}
.history .detail {
  margin-top: 4.7rem;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.7px;
  text-align: center;
  color: #fff;
}
.history .container {
  display: flex;
  column-gap: 14.1rem;
  justify-content: center;
  margin-top: 11.3rem;
}
.history .period {
  font-size: 8.45rem;
  text-align: left;
  color: rgba(255, 254, 254, 0.6);
}
.history .period .year {
  display: block;
}
.history .history-group {
  position: relative;
  overflow: hidden;
}
.history .history-group .line {
  position: absolute;
  top: calc(1rem + 0.1rem);
  left: calc(7.15rem + 2.9rem + 0.35rem);
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}
.history .history-group .green-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  background-color: #257eff;
}
.history .history-group.on .green-line {
  height: 100%;
}
.history .gauge {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  transform: scale(0);
  transform-origin: top center;
  background-color: #257eff;
}
.history .history-list {
  display: flex;
  flex-direction: column;
}
.history .history-item {
  position: relative;
  display: flex;
  height: 11.5rem;
}

.history .longw {
  height: 30.5rem;
}


.history .history-item:last-of-type {
  height: 100%;
}
.history .history-item .year {
  width: 7.15rem;
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  height: 3.8rem;
  line-height: 3.8rem;
}
.history .history-item:last-of-type {
  color: #257eff;
}
.history .history-item:last-of-type .content {
  line-height: 1.4;
}
.history .pointer {
  z-index: 1;
  position: absolute;
  top: -1.1rem;
  left: -1.45rem;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid #257eff;
  border-radius: 50%;
}
.history .pointer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  background-color: #257eff;
  border-radius: 50%;
  z-index: 1;
}
.history .history-item .content {
  position: relative;
  width: calc(100% - 15.5rem);
  margin-left: 2.9rem;
  padding-left: 5.6rem;
  font-size: 2.2rem;
  line-height: 1.77;
}
.history .history-item .content .content-s {
  font-size: 2.1rem;
}
.history .history-item .green-point {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  border-radius: 50%;
  transition: background 0.6s ease-in-out;
}
.history .history-group.on .green-point {
  background-color: #257eff;
}

/* ==========================================================================
   main - inquiry
   ========================================================================== */
.inquiry {
  padding: 7.8rem 0 8.8rem;
  background-color: #a5c7ff;
  text-align: center;
}
.inquiry .title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.4px;
  color: #111;
}
.inquiry p {
  margin: 2.4rem 0 3.5rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.6px;
  text-align: center;
  color: #303030;
}
.inquiry a {
  display: inline-flex;
  align-items: center;
  column-gap: 0.8rem;
  padding: 2.3rem 6.5rem 2.1rem;
  opacity: 0.9;
  border-radius: 999px;
  border: 3px solid #fff;
  font-size: 2.4rem;
  letter-spacing: 0.6px;
  text-align: center;
  color: #1d1d1d;
  transition: 0.2s ease-in-out;
}
.inquiry a:hover {
  color: #fff;
}
/* ==========================================================================
   main - partners
   ========================================================================== */
.partners {
  padding: 0.4rem 0 17.9rem;
  background-color: #f4f7fc;
  text-align: center;
}
.partners .title {
  font-size: 4.8rem;
  line-height: 0.69;
  color: #050000;
}
.partners .sm-text {
  display: inline-block;
  margin-top: 2.2rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #656b70;
}
.partners .partner-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 1.7rem;
  row-gap: 1.8rem;
  margin-top: 6.7rem;
}
.partners .partner-item {
  border-radius: 1rem;
  border: 1px solid #dadada;
  overflow: hidden;
}
.partners .partner-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   sub - sub-header
   ========================================================================== */
header.sub-header {
  background-color: #fff;
}
header.sub-header .logo a {
  background-image: url("../images/logo/logo_sub.png");
  width: 15.9rem;
  height: 3.8rem;

}
header.sub-header .gnb a {
  color: #0c0c0c;
}

/* ==========================================================================
   sub - sub-intro
   ========================================================================== */
.sub-intro .container {
  padding-top: 9rem;
  background: url("../images/bg/sub_top_bg.jpg") no-repeat top center / cover;
}
.sub-intro .content {
  padding: 6.7rem 0 15.7rem;
  color: #fff;
}
.sub-intro .content .sub-title {
  display: inline-block;
  background-image: linear-gradient(45deg, #88F8FE 33%, #60A8FF 67%);
  font-size: 2.1rem;
  color: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sub-intro .content .title {
  margin-top: 2.4rem;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.56px;
}

/* ==========================================================================
   sub - inquiry-form
   ========================================================================== */
.inquiry-form {
  padding: 12.8rem 0 10.8rem;
}
.inquiry-form .title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #37383e;
}
.inquiry-form .desc {
  margin-top: 4rem;
}

.inquiry-form .desc .red {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fb2058;
  margin-top: 2rem;
}

.inquiry-form .desc span {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  color: #656b70;
}




.inquiry-form .desc span + span {
  margin-top: 0.9rem;
}
.inquiry-form .content {
  display: flex;
  justify-content: space-between;
  column-gap: 30rem;
}
.inquiry-form .content form {
  margin-top: 3rem;
  flex-grow: 1;
}
.inquiry-form form > div {
  display: flex;
  flex-direction: column;
  margin-top: 1.7rem;
}

.inquiry-form form label {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.3;
  letter-spacing: -0.5px;
  color: #000;
}
.inquiry-form form textarea {
  height: 21.6rem;
  resize: none;
}
.inquiry-form form > div.active .helper-text {
  display: block;
}
.inquiry-form form .helper-text {
  display: none;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 2.71;
  color: #fb2058;
}
.inquiry-form form input,
.inquiry-form form textarea {
  font-size: 1.8rem;
  font-weight: 500;
  color: #565656;
  padding: 2.4rem 2.3rem;
  border-radius: 1rem;
  border: 1px solid #d2d4db;
  background-color: #fff;
}
.inquiry-form input::placeholder{
  color:#afafaf;
}

.inquiry-form form input:focus,
.inquiry-form form textarea:focus {
  border-color: #A6C7FE;
  outline: #A6C7FE;
}
.inquiry-form button {
  display: block;
  width: 100%;
  height: 7.5rem;
  margin-top: 2.6rem;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: #fff;
  border-radius: 1.5rem;
  box-shadow: 0px 1.1rem 1rem 0 rgba(0, 0, 0, 0.23);
  border: 2px solid;
  border-image-source: linear-gradient(to top, #8ffca0, #a4ebff);
  border-image-slice: 1;
  background-image: linear-gradient(to bottom, #171920, #171920),
    linear-gradient(to top, #8ffca0, #a4ebff);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.radio-group {
  display: flex;
  flex-direction: column; /* 라벨과 옵션을 세로로 배치 (기존 스타일 유지) */
  gap: 10px;
}

.radio-options {
  display: flex;
  gap: 30px; /* YES와 NO 사이 간격 */
  align-items: center;
  padding: 5px 0;
}

.radio-options label {
  display: flex;
  align-items: center;
  gap: 8px; /* 버튼과 텍스트 사이 간격 */
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 500;
}

/* 라디오 버튼 크기 조절 (선택사항) */
.radio-options input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #A6C7FE; /* 하이라이트 형광색과 통일 */
  cursor: pointer;
}

/* ==========================================================================
   sub - gallery
   ========================================================================== */
.conference {
  padding: 14.4rem 0 18.2rem;
  background: url("../images/sub-bg/center_bg.jpg") no-repeat center center /
    cover;
}
.conference .title {
  max-width: 100rem;
  margin: 0 auto 11.4rem;
  font-size: 4.8rem;
  line-height: 0.69;
  text-align: left;
  color: #A6C7FE;
}
.conference .content {
  max-width: 100rem;
  margin: 0 auto;
}
.conference .img-container {
  display: flex;
  justify-content: space-between;
  column-gap: 9.6rem;
}
.conference .img-group {
  width: calc(50% - 4.8rem);
}
.conference .img-group + .img-group {
  margin-top: 27.9rem;
}
.conference .right-container {
  margin-top: 33%;
}
.conference .img-box {
  display: block;
  border-radius: 3rem;
  overflow: hidden;
}
.conference .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.conference .img-title {
  margin-top: 5.7rem;
  font-size: 3rem;
  line-height: 1.1;
  color: #fff;
}
.conference .img-detail {
  margin-top: 3rem;
  opacity: 0.7;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.64;
  letter-spacing: -0.55px;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   sub - gallery
   ========================================================================== */
.gallery {
  padding: 12.8rem 0 18rem;
}
.gallery .title {
  margin-bottom: 7.4rem;
  font-size: 4.8rem;
  line-height: 0.69;
  text-align: center;
  color: #050000;
}
.gallery .marquee,
.gallery .marquee-reverse {
  overflow: hidden;
  white-space: nowrap;
}
.gallery .marquee-reverse {
  margin-top: 3.4rem;
}
.gallery .marquee-box {
  display: inline-block;
}
.gallery .marquee .marquee-box {
  animation: marquee 50s infinite linear;
}
.gallery .marquee-reverse .marquee-box {
  animation: marqueeReverse 50s infinite linear;
}
.gallery .marquee-box img {
  width: 51.8rem;
  height: 37rem;
  margin: 0 1.5rem;
  border-radius: 3rem;
  object-fit: cover;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes marqueeReverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* ==========================================================================
   sub - request-form
   ========================================================================== */
.request-form {
  padding: 10rem 0 8.8rem;
  text-align: center;
}
.request-form .title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -1.6px;
  text-align: center;
  color: #37383e;
}
.request-form .sub-title {
  margin-top: 4rem;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -1.2px;
  color: #37383e;
}
.request-form .small-text {
  display: block;
  margin-top: 1.3rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #E73E3E;
  line-height: 2.5rem;
}
.request-form .content {
  max-width: 96.4rem;
  margin: 6.2rem auto 0;
  padding: 7.7rem 11.5rem 10rem;
  border-radius: 2rem;
  color: #000;
  background-color: #f5f5f5;
  text-align: left;
  box-sizing: border-box;
}
.request-form .form-title {
  margin-bottom: 4rem;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -1.04px;
}
.request-form .form-title .important-text {
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: -0.76px;
  color: #fb2058;
}
.request-form form label {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.45px;
  text-align: left;
}
.request-form form .require {
  font-size: 2rem;
  letter-spacing: -0.8px;
  color: #fb2058;
}
.request-form form .input-box + .input-box {
  margin-top: 3.7rem;
}

.request-form input::placeholder{
  color:#afafaf;
}


.input-box .require {
  font-size: 2rem;
  letter-spacing: -0.8px;
  color: #fb2058;
}


.text .require {
  font-size: 2rem;
  letter-spacing: -0.8px;
  color: #fb2058;
}


.request-form form input {
  display: block;
  width: 100%;
  margin-top: 1.1rem;
  padding: 2.5rem;
  font-size: 1.8rem;
  letter-spacing: -0.45px;
  color: #565656;
  border-radius: 1rem;
  border: 1px solid #d2d4db;
  background-color: #fff;
  box-sizing: border-box;
}
.request-form form input:focus {
  border-color: #A6C7FE;
  outline: #A6C7FE;
}
.request-form form .helper-text {
  display: none;
  margin-top: 1.3rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fb2058;
}
.request-form form > div.active .helper-text {
  display: block;
}
.request-form button {
  display: block;
  width: 100%;
  height: 7.5rem;
  margin-top: 5.8rem;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: #fff;
  border-radius: 1rem;
  box-shadow: 0px 1.1rem 1rem 0 rgba(0, 0, 0, 0.23);
  border: 2px solid;
  border-image-source: linear-gradient(to top, #8ffca0, #a4ebff);
  border-image-slice: 1;
  background-image: linear-gradient(to bottom, #171920, #171920),
    linear-gradient(to top, #8ffca0, #a4ebff);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
.request-form .sub-text {
  margin-top: 5.9rem;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  text-align: center;
  color: #37383e;
}
.request-form .sub-text .email-address {
  position: relative;
  display: inline-block;
  margin-top: 1.7rem;
  font-size: 2rem;
  letter-spacing: 0.5px;
  color: #3f6fe7;
}
.request-form .sub-text .email-address::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #3f6fe7;
  transition: 0.2s ease-in-out;
}
.request-form .sub-text .email-address:hover::before {
  width: 100%;
}

/* ==========================================================================
   sub - show-collection
   ========================================================================== */
.show-collection {
  padding: 0 3.3rem 7rem;
}
.show-collection .banner {
  position: relative;
  padding-bottom: 21.617%;
  /* 0.21617 */
}
.show-collection .banner a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/banner/itsite_banner.jpg") no-repeat center center /
    100%;
}
/* ==========================================================================
   footer
   ========================================================================== */
footer {
  position: relative;
  padding: 5.6rem 0;
  background-color: #080e14;
  border-top: 1px solid #363636;
  color: #fff;
}
footer .inner {
  display: flex;
  justify-content: space-around;
}
footer .info .footer-links {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
}
footer .footer-links a + a {
  position: relative;
  padding-left: 1.3rem;
}
footer .footer-links a + a::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0.35rem;
  width: 1px;
  height: 70%;
  background-color: #67a59c;
}
footer .info p {
  font-size: 1.4rem;
  color: #abbeca;
  margin-bottom: 5px;
}
footer .info p + p {
  margin-top: 1rem;
}
footer .social ul {
  display: flex;
  column-gap: 0.5rem;
}
footer .social a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d0ff4b;
  background: transparent;
  border: 2px solid #d0ff4b;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  font-size: 2.8rem;
}
footer .social small {
  display: block;
  font-size: 1.4rem;
  color: #abbeca;
  margin-top: 2.1rem;
}


    /* ===== Scoped styles for #cis-reference only ===== */
    #cis-reference {
      --bg: #f4f7fc;
      --fg: #0a0a0a;
      --muted: #6b7280;
      --primary: #1ea672;          /* �׸� ����Ʈ */
      --card: #ffffff;
      --radius: 16px;
      --shadow: 0 6px 24px rgba(0,0,0,.08);
      --maxw: 1100px;
      padding: clamp(40px, 6vw, 72px) 16px;
      background:
        radial-gradient(1200px 400px at 10% 10%, #eaf7ef 0%, transparent 60%),
        radial-gradient(1200px 400px at 90% 85%, #eef3ff 0%, transparent 60%),
        var(--bg);
      color: var(--fg);
    }
    #cis-reference .pre-container {max-width: var(--maxw); margin: 0 auto; text-align: center;}
    #cis-reference h2 {
        font-size: clamp(28px, 4vw, 40px);
        line-height: 1.15;
        font-weight: 900;
        letter-spacing: -0.05em;
        text-align: center;
        margin: 0 0 10px;
    }
    #cis-reference .lead {
      text-align: center;
      color: var(--muted);
      font-size: clamp(14px, 1.6vw, 21px);
      line-height: 1.7;
      margin: 0 auto 20px;
      max-width: 820px;
    }

    #cis-reference > div > p > strong:nth-child(2) {
      color: #000;
    }

    /* pill */
    #cis-reference .pill {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 10px 18px;
      background: #000;
      color: #3CD82F;
      border-radius: 999px;
      font-weight: 700;
      font-size: 17px;
      margin: 18px auto 26px;
      box-shadow: 0 4px 16px rgba(16, 130, 86, .25);
    }

    /* video */
    #cis-reference .video-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #000;
      aspect-ratio: 16/9;
    }
    #cis-reference .video-wrap img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      filter: saturate(1.02);
    }
    #cis-reference .play-btn {
      position: absolute; inset: 0;
      display: grid; place-items: center;
      background: linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.25));
      transition: transform .08s ease, background .25s ease;
      text-decoration: none;
    }
    #cis-reference .play-btn:hover { background: linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.35)); transform: scale(1.01); }
    #cis-reference .play-icon {
      width: 78px; height: 78px;
    }

    /* testimonials */
    #cis-reference .t-head {
      display: flex; align-items: center; gap: 12px;
      margin: clamp(28px, 6vw, 44px) 0 14px;
    }
    #cis-reference .t-head h3 {
      font-size: clamp(22px, 3vw, 28px); margin: 0; font-weight: 800;
    }
    #cis-reference .stars { display: inline-flex; gap: 4px; }
    #cis-reference .stars svg { width: 18px; height: 18px; fill: var(--primary); }

    /* ==========================================================================
   #cis-reference - 지그재그(Zig-Zag) 참관객 후기 카드
   ========================================================================== */

/* 카드를 담는 컨테이너: flex-column 정렬 */
#cis-reference .cards {
  display: flex;
  flex-direction: column;
  gap: 2.4rem; /* 카드 사이의 세로 간격 */
  width: 100%;
  max-width: 1080px;
  margin: 4rem auto 0;
}

/* 후기 카드 기본 스타일 */
#cis-reference .card {
  width: 68%; /* 지그재그 여백을 위한 카드 너비 지정 */
  background: var(--card, #ffffff);
  border-radius: 2.4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2.8rem 3.2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 1, 3, 5번째 홀수 카드는 좌측 정렬 */
#cis-reference .card:nth-child(odd) {
  align-self: flex-start;
}

/* 2, 4번째 짝수 카드는 우측 정렬 (지그재그 배치 핵심) */
#cis-reference .card:nth-child(even) {
  align-self: flex-end;
}

/* 아바타 프로필 이미지 스타일 */
#cis-reference .avatar {
  flex-shrink: 0;
  width: 8.8rem;
  height: 8.8rem;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f4f8;
}

#cis-reference .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 따옴표 및 후기 텍스트 */
#cis-reference .quote {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin: 0;
  color: #2c3038;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: left;
  word-break: keep-all;
}

#cis-reference .quote-icon {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

#cis-reference .quote-icon img {
  width: 1.8rem;
  height: auto;
}

/* 카드 마우스 호버 효과 */
#cis-reference .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 860px) {
  #cis-reference .cards {
    gap: 1.6rem;
  }

  /* 모바일 환경에서는 전폭 100% 카드로 자연스럽게 스택 */
  #cis-reference .card {
    width: 100% !important;
    align-self: center !important;
    padding: 2rem 2.4rem;
    border-radius: 1.8rem;
  }

  #cis-reference .avatar {
    width: 6.8rem;
    height: 6.8rem;
  }

  #cis-reference .quote {
    font-size: 1.6rem;
  }
}

    #cis-reference .p10 { padding-top: 10px; }

    /* ==========================================================================
   #cis-reference - 2x2 Gallery Grid
   ========================================================================== */

/* 2x2 이미지 그리드 컨테이너 */
#cis-reference .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2열 배치 */
  gap: 2rem; /* 이미지 사이 간격 */
  margin: 4rem 0 6rem;
}

/* 그리드 아이템 및 카드 스타일링 */
#cis-reference .gallery-grid .grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 2.4rem; /* 시안과 동일한 부드러운 둥근 모서리 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16 / 10; /* 비율 고정 */
  background-color: #eee;
}

#cis-reference .gallery-grid .grid-item a {
  display: block;
  width: 100%;
  height: 100%;
}

#cis-reference .gallery-grid .grid-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 이미지가 찌그러지지 않고 영역에 맞게 채워짐 */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 마우스 호버 시 이미지 미세 확대 효과 */
#cis-reference .gallery-grid .grid-item:hover img {
  transform: scale(1.04);
}

@media screen and (max-width: 768px) {
  #cis-reference .gallery-grid {
    grid-template-columns: 1fr; /* 모바일에서는 1열 세로 정렬 */
    gap: 1.5rem;
    margin: 3rem 0 4.5rem;
  }

  #cis-reference .gallery-grid .grid-item {
    border-radius: 1.6rem; /* 모바일 모서리 둥글기 축소 */
  }
}

.pre-pre-partners { --gap: 28px; --speed: 50s; background-color: #fff; }
.pre-pre-partners .inner { position: relative; /* overflow: hidden; */ } /* JS가 flex로 바꿉니다 */

.pre-partner-list {
  display: flex;
  gap: var(--gap);
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  width: max-content;                 /* 줄바꿈 없이 한줄 */
}
.pre-partner-item { flex: 0 0 auto; }
.pre-partner-item img {
  display: block;
  height: 94px;                       /* 로고 높이 통일 (원하시면 조정) */
  width: auto;
  object-fit: contain;
}

/* 움직이는 트랙에만 적용 */
.pre-partner-list.pre-partner-track {
  animation: prePartnersScroll var(--speed) linear infinite;
  will-change: transform;
}

/* 호버 시 정지(선택) */
.pre-pre-partners:hover .pre-partner-list.pre-partner-track {
  animation-play-state: paused;
}

/* 모션 민감 사용자 배려 */
@media (prefers-reduced-motion: reduce) {
  .pre-partner-list.pre-partner-track { animation: none; }
}

@keyframes prePartnersScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* 원본+복제 = 전체의 절반만 이동하면 끊김 없음 */
}

.history .history-group .history-iteme strong  {
  font-weight: 700;
}