:root {
  /* --DARK 변수를 정의합니다. */
  --DARK: #1a1a1a;
  --MAIN: #00a4b7;
  --WHITE: #fff;
}

html {
  scroll-padding-top: 100px; /* 헤더 높이만큼 */
}

#webHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;

  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  z-index: 999;
}
#webHeader .headerWrap {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 0 240px;
}
#webHeader .logoBox {
  width: 240px;
}
#webHeader ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
#webHeader ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 56px;
}

#webHeader ul li a {
  color: var(--DARK, #242424);
  text-align: center;

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.5px;
}
#webHeader ul li a:hover {
  color: var(--MAIN, #00a4b7);
  font-weight: 600;
}
#webHeader ul li.active a {
  color: var(--MAIN, #00a4b7);
  font-weight: 600;
}

#wrap {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

#wrap #section01 {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#wrap #section01 .mainSwiper {
  width: 100%;
  height: 100%;
}

#wrap #section01 .mainSwiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

#wrap #section01 .mainSwiper .swiper-slide h1 {
  color: var(--WHITE, #fff);
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -1.8px;
  margin-bottom: 30px;
  text-align: center;
}
#wrap #section01 .mainSwiper .swiper-slide h1 span {
  color: #25cee2;
}
#wrap #section01 .mainSwiper .swiper-slide p {
  color: var(--WHITE, #fff);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
  letter-spacing: -0.6px;
;
}
#wrap #section01 .mainSwiper .swiper-slide img {
  margin-top: 54px!important;
  width: 972px;
}




#wrap #section01 .mainSwiper  .swiper-slide:not(.swiper-slide-active) [data-aos] {
    opacity: 0 !important;
    transform: translateY(30px) !important;
}

/* 활성 슬라이드의 AOS 요소만 표시 */
#wrap #section01 .mainSwiper  .swiper-slide-active [data-aos].aos-animate {
    opacity: 1 !important;
}

/* 배경 이미지 - Zoom In 효과 */
#wrap #section01 .mainSwiper .swiper-slide .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease-out; /* 천천히 zoom in */
}

/* 활성 슬라이드의 배경만 zoom in */
#wrap #section01 .mainSwiper .swiper-slide-active .slide-bg {
  transform: scale(1.1); /* 1.0 → 1.1로 확대 */
}

/* 슬라이드 컨텐츠 */
#wrap #section01 .mainSwiper .swiper-slide .slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
  flex-direction: column;
}

/* 커스텀 페이지네이션 래퍼 */
#wrap #section01 .mainSwiper .custom-pagination {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 171px;
}

#wrap #section01 .mainSwiper .current-page,
#wrap #section01 .mainSwiper .total-page {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  min-width: 30px;
}

/* 커스텀 Progressbar */
#wrap #section01 .mainSwiper .custom-pagination .swiper-pagination {
  position: static !important;
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

/* Progressbar fill 효과 */
#wrap #section01 .mainSwiper .custom-pagination .swiper-pagination::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 5s linear;
}

#wrap #section01 .mainSwiper .custom-pagination .swiper-pagination.active::after {
  transform: translateX(0);
}

#wrap #section01 .mainSwiper .custom-pagination .swiper-pagination.reset::after {
  transition: none;
  transform: translateX(-100%);
}

#wrap section {
  background-image: url(../img/background.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 1920px;
}
#wrap section .container {
  width: 1440px;
  max-width: 1440px;

  padding: 0;
}

#wrap #section02 {
  position: relative;
    padding-top: 167px;
}
#wrap #section02 .title {
  gap: 48px;
}
#wrap #section02 .title em {
  display: block;
  height: 1px;
  width: 200px;
  background-color: var(--DARK);
}
#wrap #section02 .title h1 {
  color: #2c2c2c;

  font-size: 90px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 117px */
  letter-spacing: -2px;
  margin-bottom: 8px;
}
#wrap #section02 .title h1 span {
  color: var(--MAIN, #00a4b7);
}
#wrap #section02 .title h4 {
  color: #1f1f1f;

  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 48px */
  letter-spacing: -1.2px;
}
#wrap #section02 .container {

}
#wrap #section02 .container .gap94 {
  gap: 94px;
}
#wrap #section02 .container .img {
  width: 599px;
  height: 601px;
  z-index: 2;
  position: relative;
}
#wrap #section02 .container .img img {
}
#wrap #section02 .container .text {
  gap: 23px;
  padding-top: 141px;
}
#wrap #section02 .container .text p {
  color: var(--DARK, #242424);

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
  letter-spacing: -0.6px;
}
#wrap #section02 .container .colorBox {
  background: var(--MAIN, #00a4b7);
  width: 100%;
  height: 220px;

  position: absolute;
  bottom: 0;
  left: 0;
}
#wrap #section02 .container .colorBox h6 {
  color: var(--WHITE, #fff);

  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 38.4px */
  letter-spacing: -0.7px;
  margin-left: -30px;
}
#wrap #section02 .container .colorBox h6 span {
  color: var(--YELLOW, #fd0);
}

#wrap #section03 {
  position: relative;
  height: 923px;
  background-image: url(../img/sect03BG.png);
  background-size: cover;
    padding-top: 203px;

}
#wrap #section03 .container {

}
#wrap #section03 .img {
  position: absolute;
  left: 966px;
  bottom: 0;
}
#wrap #section03 .img img {
  width: 714px;
  height: 789px;
}
#wrap #section03 h2 {
  color: #2c2c2c;

  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 67.6px */
  letter-spacing: -1.8px;
  margin-bottom: 35px;
}
#wrap #section03 h4 {
  color: var(--DARK, #242424);

  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 57px */
  letter-spacing: -1.5px;
  gap: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
#wrap #section03 h4 span {
  color: var(--MAIN, #00a4b7);

  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.5px;
}
#wrap #section03 ul li {
  color: var(--DARK, #242424);

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.5px;
}

#wrap #section03 .ulBox {
  gap: 60px;
}

#wrap #section03 .ulLeft ul:first-child {
  margin-bottom: 29px;
}
#wrap #section03 .ulLeft ul:nth-child(2) {
  margin-bottom: 29px;
}
#wrap #section03 .ulRight ul:first-child {
  margin-bottom: 29px;
}

#wrap #section04 {
  background-image: none;
  background-color: #fff;
  padding-top: 174px;
  padding-bottom: 217px;
}

#wrap #section04 .con {

}

#wrap #section04 h2 {
  color: #1f1f1f;
  text-align: center;

  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 67.6px */
  letter-spacing: -1.8px;
  margin-bottom: 79px;
}
#wrap #section04 h2 span {
  color: var(--MAIN);
}

#wrap #section04 .img {
  display: flex;
  align-items: center;
  margin-bottom: 140px;
}

#wrap #section04 .img img {
  width: 1000px;
  height: 536px;
  cursor: pointer;
}

#wrap #section04 .img img:nth-child(2) {
  margin-left: -80px; /* 겹치는 정도 조절 */
}

#wrap #section04 .img img:hover {
  z-index: 2;
  transition: all 0.8s ease-in-out;
  transform: scale(1.05);
}

#wrap #section04 .progress-section {
  position: relative;
  padding: 50px 0;
}

#wrap #section04 .container h2 {
  color: #1f1f1f;
  text-align: center;

  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 67.6px */
  letter-spacing: -1.8px;
  margin-bottom: 160px;
}

/* Progressbar 컨테이너 */
#wrap #section04 .progressbar-container {
  position: relative;
  width: 100%;
}

#wrap #section04 .progressbar-container .progressbar {
  position: relative;
  width: 100%;
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: visible;
  display: flex;
}

/* 각 fill 섹션 (25%씩) */
#wrap #section04 .progressbar-container .progressbar .progressbar-fill-section {
  width: 25%; /* 각각 25% */
  height: 100%;
  transform: scaleX(0); /* 초기: 숨김 */
  transform-origin: left;
  transition: transform 0.8s ease;
  border-right: 1px solid #eaeaea;
}
#wrap
  #section04
  .progressbar-container
  .progressbar
  .progressbar-fill-section:last-child {
  border-right: none;
}

/* 각 섹션별 색상 */
#wrap
  #section04
  .progressbar-container
  .progressbar
  .progressbar-fill-section[data-section="1"] {
  background-color: #242424; /* 1번 색 */
  border-radius: 10px 0 0 10px;
}

#wrap
  #section04
  .progressbar-container
  .progressbar
  .progressbar-fill-section[data-section="2"] {
  background-color: rgba(0, 53, 72, 0.5);
}

#wrap
  #section04
  .progressbar-container
  .progressbar
  .progressbar-fill-section[data-section="3"] {
  background-color: rgba(0, 164, 183, 0.5);
}

#wrap
  #section04
  .progressbar-container
  .progressbar
  .progressbar-fill-section[data-section="4"] {
  background-color: #00a4b7;
  border-radius: 0 10px 10px 0;
}

/* 활성화 (채워짐) */
#wrap
  #section04
  .progressbar-container
  .progressbar
  .progressbar-fill-section.active {
  transform: scaleX(1);
}

/* 뱃지 (초기 상태: 숨김) */
#wrap #section04 .progressbar-container .progress-badge {
  position: absolute;
  top: -130px; /* -29px에서 더 위로 올림 */
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 10;
}

/* 뱃지 내부 */
/* 말풍선 뱃지 */
#wrap #section04 .progressbar-container .progress-badge .badge-inner {
  background-color: #242424;
  border-radius: 200%; /* 둥글게 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100px;
  height: 100px;
  margin-right: 100px;
}
#wrap
  #section04
  .progressbar-container
  .progress-badge:nth-of-type(3)
  .badge-inner {
  background-color: rgba(0, 53, 72, 0.5);
}
#wrap
  #section04
  .progressbar-container
  .progress-badge:nth-of-type(4)
  .badge-inner {
  background-color: rgba(0, 164, 183, 0.5);
}
#wrap
  #section04
  .progressbar-container
  .progress-badge:nth-of-type(5)
  .badge-inner {
  background-color: #00a4b7;
}

/* 아래쪽 삼각형 꼬리 */
#wrap #section04 .progressbar-container .progress-badge .badge-inner::after {
 content: "";
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
  border-top: 10px solid #242424;
}

#wrap
  #section04
  .progressbar-container
  .progress-badge:nth-of-type(3)
  .badge-inner::after {
border-top: 10px solid rgb(127 154 163);
  
}
#wrap
  #section04
  .progressbar-container
  .progress-badge:nth-of-type(4)
  .badge-inner::after {
    border-top: 10px solid rgb(127 209 219);

}
#wrap
  #section04
  .progressbar-container
  .progress-badge:nth-of-type(5)
  .badge-inner::after {
  border-top: 10px solid #00a4b7;
}

/* 텍스트 */
#wrap #section04 .progressbar-container .progress-badge .badge-text {
  color: var(--WHITE, #fff);
  text-align: center;

  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.7px;
}

/* 퍼센트 */
#wrap #section04 .progressbar-container .progress-badge .badge-percent {
  color: var(--WHITE, #fff);
  text-align: center;

  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.7px;
}

/* 뱃지 위치 */
#wrap #section04 .progressbar-container .progress-badge[data-step="1"] {
  left: 25%; /* 1/4 지점 */
}

#wrap #section04 .progressbar-container .progress-badge[data-step="2"] {
  left: 50%; /* 2/4 지점 */
}

#wrap #section04 .progressbar-container .progress-badge[data-step="3"] {
  left: 75%; /* 3/4 지점 */
}

#wrap #section04 .progressbar-container .progress-badge[data-step="4"] {
  left: 100%; /* 4/4 지점 */
}

/* 뱃지 활성화 (fade-up) */
#wrap #section04 .progressbar-container .progress-badge.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* 컨텐츠 영역 */
#wrap #section04 .progress-section .content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 0;
}

#wrap #section04 .progress-section .content-wrapper .content-item {
  flex: 1;
  text-align: center;
  opacity: 0.3;
  transition: opacity 0.6s ease;
  border-right: 1px solid #eaeaea;
  padding-top: 52px;
}
#wrap #section04 .progress-section .content-wrapper .content-item:last-child {
  border-right: none;
}

#wrap #section04 .progress-section .content-wrapper .content-item.active {
  opacity: 1;
}

#wrap #section04 .progress-section .content-wrapper .content-item h4 {
  color: #1f1f1f;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 57px */
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

#wrap
  #section04
  .progress-section
  .content-wrapper
  .content-item:nth-of-type(4)
  h4 {
  color: var(--MAIN);
}

#wrap #section04 .progress-section .content-wrapper .content-item p {
  color: #1f1f1f;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
  letter-spacing: -0.6px;
  margin-bottom: 10px;
}

#wrap #section04 .progress-section .content-wrapper .content-item img {
  width: 100%;
  object-fit: contain;
}

#wrap #section04 .systemBox {
  background: linear-gradient(113deg, #fafafa 20.6%, #eee 63.78%);
  margin-top: 117px;
}
#wrap #section04 .systemBox .position-absolute {
  left: 50%;
  transform: translateX(-50%);
  top: -27.5px;
  border-radius: 100px;
  background: var(--MAIN, #00a4b7);
  gap: 14px;
  height: 55px;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
}
#wrap #section04 .systemBox .position-absolute h6 {
  color: var(--WHITE, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 38.4px */
  letter-spacing: -0.7px;
}

#wrap #section04 .systemBox .banner {
  gap: 131px;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

#wrap #section04 .systemBox .banner h2 {
  color: #1f1f1f;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 57px */
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  text-align: left;
}
#wrap #section04 .systemBox .banner p {
  color: #252525;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
  letter-spacing: -0.6px;
}

#wrap #section05 {
  background-image: url(../img/sect05BG.png);
  background-repeat: no-repeat;
  background-size: cover;

  padding-bottom: 91px;  padding-top: 181px;
}

#wrap #section05 .container:nth-of-type(1) {

}

#wrap #section05 h1 {
  color: var(--WHITE, #fff);
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -1.8px;
  margin-bottom: 67px;
}
#wrap #section05 h1 span {
  color: var(--YELLOW, #fd0);
}

/* Custom Pagination */
#wrap #section05 .custom-pagination {
  width: 273px;
}

#wrap #section05 .custom-pagination li {
  display: flex;
  gap: 30px;
  align-items: center;
  opacity: 0.3;
  padding: 16px 20px;
  cursor: pointer;
}

#wrap #section05 .custom-pagination li:last-child {
  border-bottom: none;
}

#wrap #section05 .custom-pagination li:hover {
  opacity: 0.8;
}

#wrap #section05 .custom-pagination li.active {
  opacity: 1;
}

#wrap #section05 .pagination-number {
  color: var(--WHITE, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.5px;
}

#wrap #section05 .pagination-text {
  color: var(--WHITE, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 38.4px */
  letter-spacing: -0.7px;
}

#wrap #section05 .sect05Swiper {
  display: flex;
  justify-content: center;
  gap: 185px;
  margin-left: 0;
}
#wrap #section05 .sect05Swiper .swiper-wrapper {
  width: 860px !important;
  height: 448px;
}
#wrap #section05 .sect05Swiper .swiper-slide {
  width: 860px !important;
}
#wrap #section05 .sect05Swiper .swiper-slide p {
  color: var(--WHITE, #fff);
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
  letter-spacing: -0.6px;
  opacity: 0.8;
  margin-bottom: 0;
  margin-top: 16px;
  text-align: center;
}
#wrap #section05 .gap185 {
  gap: 185px;
}

#wrap #section06 {
  background-image: url(../img/sect06BG.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 730px;
}
#wrap #section06 div h1 {
  color: var(--WHITE, #fff);

  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 67.6px */
  letter-spacing: -1.8px;
}

#wrap #section07 {
  background-image: none !important;
  padding: 0 0 215px 0;
}

#wrap #section07 .container:nth-of-type(1) {
  padding-top: 159px;
}

#wrap #section07 .container .d-flex {
  gap: 30px;
}
#wrap #section07 .container .d-flex .card {
  width: 50%;
  height: 600px;
  flex: 1;
  background: #f8f8f8;
  min-width: 705px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  padding: 42px 47px 50px 47px;
}
#wrap #section07 .container .d-flex .card h6 {
  color: var(--MAIN, #00a4b7);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 38.4px */
  letter-spacing: -0.7px;
  margin-bottom: 18px;
}

#wrap #section07 .container .d-flex .card h5 {
  color: #1f1f1f;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
  position: relative;
  display: block;
  width: fit-content;
  z-index: 1;
  padding: 0 5px;
}

#wrap #section07 .container .d-flex .card h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--LIGHT, #e6f5fa);
  z-index: -1;
  transition: width 0.8s ease-out;
}

#wrap #section07 .container .d-flex .card h5.animate::before {
  width: 100% !important; /* !important 추가 */
}

#wrap #section07 .container .d-flex .card p {
  color: #1f1f1f;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.5px;
  margin-bottom: 41px;
  white-space: nowrap;
}
#wrap #section07 .container .d-flex .card p span {
  font-weight: 700;
}
#wrap #section07 .container .d-flex .card img {
  width: 100%;
}
#wrap #section08 {
  background-image: url(../img/sect08BG.png);
  background-size: 100%;
  height: 1480px;
    padding-top: 196px;
}

#wrap #section08 .container:nth-of-type(1) {

}

#wrap #section08 h1 {
  color: #1f1f1f;
  font-family: Pretendard;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 67.6px */
  letter-spacing: -1.8px;
  margin-bottom: 28px;
}

#wrap #section08 .tab-buttons {
  gap: 34px;
  width: 236px;
  height: 48px;
  display: flex;
  margin-bottom: 45px;
}

#wrap #section08 .tab-buttons .tab-btn {
  color: var(--DARK, #242424);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 38.4px */
  letter-spacing: -0.7px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding-bottom: 5px;
  opacity: 0.4;
}

#wrap #section08 .tab-buttons .tab-btn.active {
  color: var(--MAIN, #00a4b7);
  border-bottom: 3px solid #00a4b7;
  opacity: 1;
}

#wrap #section08 .tab-content {
  display: none;
  opacity: 0;
}

#wrap #section08 .tab-content.active {
  display: block;
  animation: fadeIn 0.6s ease forwards;
}

#wrap #section08 .tab-content.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

#wrap #section08 .contentBox {
  margin-top: 101px;
  background-color: #fff;
  padding: 63px 80px 78px 80px;
  width: 1440px;
}

#wrap #section08 .contentBox h2 {
  color: #1f1f1f;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 57px */
  letter-spacing: -1.5px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 38px;
}

#wrap #section08 .contentBox .process-cards {
  display: flex;
  gap: 64px;
}

#wrap #section08 .contentBox .process-cards .process-card .card-image {
  margin-bottom: 41px;
}

#wrap
  #section08
  #tab1
  .contentBox
  .process-cards
  .process-card
  .card-image
  img {
  width: 384px;
  height: 200px;
}

#wrap
  #section08
  #tab2
  .contentBox
  .process-cards
  .process-card
  .card-image
  img {
  width: 312px;
  height: 200px;
}

#wrap #section08 .contentBox .process-cards .process-card h3 {
  color: var(--DARK, #242424);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 38.4px */
  letter-spacing: -0.7px;
  text-align: center;
  margin-bottom: 15px;
}

#wrap #section08 .contentBox .process-cards .process-card p {
  color: var(--DARK, #242424);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.5px;
  text-align: center;
  width: 100%;
}

#wrap #section08 .contentBox .card-dot {
  width: 10px;
  height: 10px;
  background: #242424;
  border-radius: 50%;
  margin: 0 auto 33px;
  position: relative;
  z-index: 2;
}
/* 점선 연결 - 마지막 카드 제외 (tab1) */
#wrap
  #section08
  #tab1
  .contentBox
  .process-card:not(:last-child)
  .card-dot::after {
  content: "";
  position: absolute;
  left: calc(100% + 5px);
  top: 50%;
  width: 443px;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    rgb(36 36 36 / 60%) 0,
    rgb(36 36 36 / 60%) 2px,
    transparent 2px,
    transparent 4px
  );
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.6;
}

/* 점선 연결 - 마지막 카드 제외 (tab2) */
#wrap
  #section08
  #tab2
  .contentBox
  .process-card:not(:last-child)
  .card-dot::after {
  content: "";
  position: absolute;
  left: calc(100% + 5px);
  top: 50%;
  width: 330px;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    rgb(36 36 36 / 60%) 0,
    rgb(36 36 36 / 60%) 2px,
    transparent 2px,
    transparent 4px
  );
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.6;
}
#wrap #section08 .contentBox .process-cards .process-card:last-child .card-dot {
  background-color: #00a4b7;
  position: relative;
}
#wrap #section08 .contentBox .process-cards .process-card:last-child h3 {
  color: #00a4b7;
}

/* 외곽 원 추가 */
#wrap
  #section08
  .contentBox
  .process-cards
  .process-card:last-child
  .card-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background-color: #00a4b7;
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
}

#wrap #section09 {
  padding: 0 20px 80px 20px;
  background: #fff;
}

#wrap #section09 .container:nth-of-type(1) {
  padding-top: 80px;
}

#wrap #section09 h1 {
  color: #1f1f1f;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 67.6px */
  letter-spacing: -1.8px;
  text-align: center;
  margin-bottom: 48px;
}

#wrap #section09 h1 span {
  color: #00a4b7;
}

#wrap #section09 .container {
  max-width: 1440px;
  margin: 0 auto;
}

#wrap #section09 .swiper-container-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

/* 메인 Swiper */
#wrap #section09 .sect09MainSwiper {
  width: 1200px;
  height: 530px;
  margin-bottom: 52px; /* 썸네일 공간 확보 */
  position: relative;
  overflow: visible;
}

#wrap #section09 .sect09MainSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

#wrap #section09 .sect09MainSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#wrap #section09 .sect09MainSwiper .swiper-button-prev,
#wrap #section09 .sect09MainSwiper .swiper-button-next {
  width: 80px;
  height: 80px;
  z-index: 10;
  transition: all 0.3s ease;
}

/* 기본 화살표 제거 */
#wrap #section09 .sect09MainSwiper .swiper-button-prev:after,
#wrap #section09 .sect09MainSwiper .swiper-button-next:after {
  content: "";
  display: none !important;
}

#wrap #section09 .sect09MainSwiper .swiper-navigation-icon {
  display: none !important;
}

/* PREV 버튼 커스텀 이미지 */
#wrap #section09 .sect09MainSwiper .swiper-button-prev {
  left: -120px;
  background-image: url("../img/prev.svg"); /* 이미지 경로 */
  background-size: 100%; /* 이미지 크기 조절 */
  background-position: center;
  background-repeat: no-repeat;
}

/* NEXT 버튼 커스텀 이미지 */
#wrap #section09 .sect09MainSwiper .swiper-button-next {
  right: -120px;
  background-image: url("../img/next.svg "); /* 이미지 경로 */
  background-size: 100%; /* 이미지 크기 조절 */
  background-position: center;
  background-repeat: no-repeat;
}

/* 썸네일 컨테이너 - 이미지 밖, 하단에 위치 */
#wrap #section09 .thumbnail-container {
  display: flex;
  justify-content: space-between;
  gap: 13px!important;
}

#wrap #section09 .thumbnail-item {
  width: 194px;
  cursor: pointer;
  text-align: center;
  opacity: 0.2;
  transition: all 0.4s ease;

}

#wrap #section09 .thumbnail-item.active {
  opacity: 1;

}

#wrap #section09 .thumbnail-item img {
  width: 100%;
  height: 102px;
  object-fit: cover;
  border: 3px solid transparent;
  transition: all 0.4s ease;
}

#wrap #section09 .thumbnail-item.active img {

}

#wrap #section09 .thumbnail-item p {
  color: var(--DARK, #242424);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.5px;
  opacity: 0.5;
  margin-top: 8px;
}

#wrap #section09 .thumbnail-item.active p {
  opacity: 1;
}

#wrap #section10 {
  width: 100%;
  height: 473px; /* 원하는 높이로 조정 */
}

#wrap #section10 #map {
  max-width: 1920px;
  height: 473px;
}

#wrap #section11 {
  background-color: #fff !important;
  background-image: none;
  padding: 0 0 140px 0;
}
#wrap #section11 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  padding-top: 96px;
}

#wrap #section11 .box {
  padding: 45px 91px 50px 91px;
  border-radius: 10px;
  background: #f9f9f9;
  width: 50%;
  flex: 1;
  min-width: 688px;
}

#wrap #section11 .box h2 {
  color: var(--DARK, #242424);
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 57px */
  letter-spacing: -1.5px;
  text-align: center;
}
#wrap #section11 .box h6 {
  color: var(--DARK, #242424);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 38.4px */
  letter-spacing: -0.7px;
  margin-bottom: 10px;
  text-align: center;
}

#wrap #section11 .box.tt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#wrap #section11 .box.tt div {
  width: 100%;
  border-radius: 10px;
  background: var(--GRAY, #8f8f8f);
  margin-top: 21px;
  color: #fff;
  height: 50px;
}
#wrap #section11 .box.tt img {
  margin: 0 auto;
  margin-top: 18px;
}
#wrap #section11 .box .info {
  margin-bottom: 49px;
}
#wrap #section11 .box .info h2 {
  margin-bottom: 16px;
}
#wrap #section11 .box .info div {
  border-radius: 10px;
  background: var(--MAIN, #00a4b7);
  height: 50px;
  color: #fff;
}
#wrap #section11 .box .tel h2 {
  color: var(--DARK, #242424);
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 57px */
  letter-spacing: -1.5px;
}
#wrap #section11 .box .tel p {
  color: var(--Sub-Color3, #212121);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

#wrap #section11 .box .tel div {
  gap: 10px;
}

#wrap #section11 .box .tel div button {
  width: 50%;
  background-color: transparent;
  height: 49px;
  border-radius: 10px;
  flex: 1;
}
#wrap #section11 .box .tel div button a {
  gap: 10px;
}
#wrap #section11 .box .tel div button:first-child {
  border: 1.5px solid #00a4b7;
}
#wrap #section11 .box .tel div button:last-child {
  border: 1.5px solid #3cb818;
}
#wrap #section11 .box .tel div button span {
  color: var(--Sub-Color3, #212121);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.5px;
}
footer {
  width: 1440px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 50px 50px 0 0;
  background: var(--DEEP, #003548);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}
footer p {
  color: var(--WHITE, #fff);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.5px;
  opacity: 0.3;
}

.sidebar {
  position: fixed;
  right: 0;
  bottom: 159px;
  z-index: 99999;
}
.sidebar a {
  width: 100%;
  height: 100%;
  display: block;
}
.sidebar button {
  background-color: transparent;
  border: none;
  padding: 0;
}
