@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");

@font-face {
  font-family: "Paperlogy-8ExtraBold";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2")
    format("woff2");
  font-weight: 800;
  font-style: normal;
}

* {
  font-family: "Pretendard Variable";
}

html,
body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.floating {
    position: fixed;
    bottom: 85px;
    right: 21px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 98;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
}


.floating.show {
  opacity: 1;
  visibility: visible;
}

.floating > a > .gotoTop {
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  text-align: center;
  line-height: 60px;
  color: black;
  background: #fc4913;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.floating > a > .gotoCall {
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  text-align: center;
  line-height: 60px;
  color: #fff;
  background-color: white;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.floating > a > .gotoChannelTalk {
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  text-align: center;
}

.floating > a > .gotoCall > img {
  width: 100%;
}

.floating > a > .gotoTop > img {
  width: 20px;
}

.floating > a > .gotoChannelTalk > img {
  width: 100%;
  border-radius: 100%;
}

.navigation {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 99;
  transition: all 0.3s;
}

.navigation.sticky {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navigation > .container {
  max-width: 1330px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

.navigation > .container > .iconLine {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.navigation > .container > .iconLine > img {
  width: 55px;
}

.navigation > .container > .iconLine > p {
  font-family: "Paperlogy-8ExtraBold";
  font-size: 35px;
  color: white;
  transition: all 0.5s;
}
.navigation > .container > .iconLine > p:hover {
  color: #ff5722;
}

.navigation.sticky > .container > .iconLine > p {
  color: #ff5722;
}

.navigation > .container > .navLine {
  margin-left: 55px;
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

.navigation > .container > .navLine > a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s;
}

.navigation.sticky > .container > .navLine > a {
  color: black;
}

.navigation > .container > .navLine > a:hover {
  color: #ff5722;
}

.navigation > .container > .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
}

.navigation > .container > .hamburger > span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.navigation.sticky > .container > .hamburger > span {
  background-color: black;
}

.navigation.menu-open > .container > .hamburger > span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.navigation.menu-open > .container > .hamburger > span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.navigation.menu-open > .container > .hamburger > span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.navigation > .mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 97;
}

.navigation.menu-open > .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

.navigation > .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 98;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navigation.menu-open > .mobile-menu {
  transform: translateY(0);
}

.navigation > .mobile-menu > .mobile-menu-header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f0f0f0;
}

.navigation > .mobile-menu > .mobile-menu-header > .iconLine {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.navigation > .mobile-menu > .mobile-menu-header > .iconLine > p {
  font-family: "Paperlogy-8ExtraBold";
  font-size: 28px;
  color: #ff5722;
  margin: 0;
}

.navigation > .mobile-menu > .mobile-menu-content {
  padding: 2rem 0;
}

.navigation > .mobile-menu > .mobile-menu-content > .navLine {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}

.navigation > .mobile-menu > .mobile-menu-content > .navLine > a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 1.2rem 2rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}

.navigation > .mobile-menu > .mobile-menu-content > .navLine > a:hover,
.navigation > .mobile-menu > .mobile-menu-content > .navLine > a:focus {
  background-color: #f8f8f8;
  color: #ff5722;
  padding-left: 2.5rem;
}

.navigation > .mobile-menu > .mobile-menu-content > .navLine > a:active {
  background-color: #f0f0f0;
}

section > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

#section1 {
  /* background: linear-gradient(-45deg, #EBF2FC, #ECF2FB, #F7F7EC, #FDFAE2);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite; */

  background-image: url("img/main/section1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#section1 > .container {
  padding: 150px 0;
}

#section1 > .container > .contentLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#section1 > .container > .contentLine > .textBox {
}

#section1 > .container > .contentLine > .textBox > p {
  margin: 0;
  text-align: center;
  line-height: 1.5;
  font-size: 2.5rem;
  color: white;
}

#section1 > .container > .contentLine > .textBox > p.mainText {
  font-size: 3.5rem;
}

#section1 > .container > .contentLine > .textBox > p.subText {
  font-size: 1.5rem;
}

#section1 > .container > .contentLine > .textBox > p > span.highlight {
  font-weight: bold;
  color: #ff5722;
}

#section1 > .container > .contentLine > .textBox > p > span.highlight.compname {
}

#section1 > .container > .contentLine > .buttonBox {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 1rem;
}

#section1 > .container > .contentLine > .buttonBox > button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s;
  background-color: white;
  padding: 10px 20px;
  border-radius: 10px;
}

#section1 > .container > .contentLine > .buttonBox > button.phoneCall {
  background-color: #fdffb8;
}

#section1 > .container > .contentLine > .buttonBox > button.channelTalk {
  background-color: #a257dd;
}

#section1 > .container > .contentLine > .buttonBox > button:hover {
  transform: scale(1.05);
}

#section1 > .container > .contentLine > .buttonBox > button > img {
  width: 30px;
}
#section1 > .container > .contentLine > .buttonBox > button > svg {
  width: 30px;
  height: 30px;
}

#section1 > .container > .contentLine > .buttonBox > button > p {
  margin: 0;
  color: black;
  font-size: 1.2rem;
  font-weight: 500;
}

#section1 > .container > .contentLine > .buttonBox > button.channelTalk > p {
  color: white;
}

#section1 > .container > .contentLine > .naverLine {
    width: 550px;
    border: 4px solid white;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: white;
    margin-top: 4rem;
    border: 4px solid #a257dd;
}

#section1 > .container > .contentLine > .naverLine > .wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  justify-content: space-between;
}

#section1 > .container > .contentLine > .naverLine > .wrapper > p {
  margin: 0;
  font-size: 1.5rem;
}

#section1 > .container > .contentLine > .naverLine > .wrapper > p > br.infoBr {
    display: none;
  }

#section1 > .container > .contentLine > .naverLine > .wrapper > .icon1 {
  width: 35px;
}
#section1 > .container > .contentLine > .naverLine > .wrapper > .icon2 {
  width: 40px;
}

#section2 {
  background-color: #ff5722;
}

#section2 > .container {
  padding: 100px 0;
}

#section2 > .container > .contentLine {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8rem;
}

#section2 > .container > .contentLine > .leftLine {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

#section2 > .container > .contentLine > .leftLine > .textBox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section2 > .container > .contentLine > .leftLine > .textBox > p {
  margin: 0;
  line-height: 1.5;
  color: white;
}
#section2 > .container > .contentLine > .leftLine > .textBox > p > span {
  font-weight: bold;
}
#section2 > .container > .contentLine > .leftLine > .textBox > p.mainText {
  font-size: 2.5rem;
  font-weight: bold;
}

#section2 > .container > .contentLine > .leftLine > .textBox > p.subText {
  font-size: 1.5rem;
}

#section2 > .container > .contentLine > .leftLine > .infoBoxLine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section2 > .container > .contentLine > .leftLine > .infoBoxLine > .info {
  display: flex;
  flex-direction: row;
  background-color: white;
  width: 300px;
  justify-content: space-between;
  padding: 10px 20px;
  border-radius: 50px;
}

#section2 > .container > .contentLine > .leftLine > .infoBoxLine > .info > p {
  margin: 0;
  line-height: 1.5;
  font-size: 1.3rem;
}

#section2
  > .container
  > .contentLine
  > .leftLine
  > .infoBoxLine
  > .info
  > p.leftText {
}
#section2
  > .container
  > .contentLine
  > .leftLine
  > .infoBoxLine
  > .info
  > p.rightText {
}

#section2 > .container > .contentLine > .rightLine {
}

#section2 > .container > .contentLine > .rightLine > .sliderBox {
  width: 520px;
  height: 370px;
  overflow: hidden;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.sliderTable {
  width: 100%;
  border-collapse: collapse;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.sliderTable tr {
  height: 45px;
}
.sliderTable th,
.sliderTable td {
  vertical-align: middle;
}
.sliderTable td {
  text-align: center;
  font-size: 1rem;
  vertical-align: middle;
}
.sliderTable .product-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 45px;
}
.sliderTable .product-cell img {
  display: inline-block;
  width: 100px;
  height: auto;
  vertical-align: middle;
}
.status-done {
  color: #fff;
  background: #3b82f6;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 0.95em;
  display: inline-block;
}
.status-fail {
  color: #fff;
  background: #a5a5a5;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 0.95em;
  display: inline-block;
}
.sliderTable-head {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.slider-tbody-wrap {
  width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
}
.sliderTable-body {
  width: 100%;
  border-collapse: collapse;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#section3 {
}

#section3 > .container {
  padding: 100px 0;
}

#section3 > .container > .contentLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
#section3 > .container > .contentLine > .textLine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section3 > .container > .contentLine > .textLine > p {
  font-size: 2.5rem;
  margin: 0;
  text-align: center;
}

#section3 > .container > .contentLine > .textLine > p > span {
  font-size: 2.8rem;
  font-weight: bold;
}

#section3 > .container > .contentLine > .textLine > p > span.highlight {
  color: #ff5722;
}
#section3 > .container > .contentLine > .textLine > p.subText {
  font-size: 1.2rem;
  text-align: center;
}
#section3 > .container > .contentLine > .textLine > p.subText > span {
  font-size: 1.2rem;
  font-weight: bold;
}

#section3 > .container > .contentLine > .boxLine {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

#section3 > .container > .contentLine > .boxLine > .box {
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #ffffff;
  background: linear-gradient(
    360deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 144, 110, 1) 27%,
    rgba(255, 87, 34, 1) 75%
  );
  padding: 20px;
  border-radius: 16px 16px 0 0;
  cursor: pointer;
  transition: all 0.3s;
}

#section3 > .container > .contentLine > .boxLine > .box:hover {
  transform: scale(1.05);
}

#section3 > .container > .contentLine > .boxLine > .box > .head {
}

#section3 > .container > .contentLine > .boxLine > .box > .head > p {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-align: center;
}

#section3 > .container > .contentLine > .boxLine > .box > .body {
  margin-top: 3rem;
}

#section3 > .container > .contentLine > .boxLine > .box > .body > p {
  margin: 0;
}

#section3 > .container > .contentLine > .boxLine > .box > .body > p.mainText {
  font-size: 3.5rem;
  color: white;
  text-align: center;
  font-weight: bold;
}
#section3 > .container > .contentLine > .boxLine > .box > .body > p.subText {
}

#section3 > .container > .contentLine > .boxLine > .box > .foot {
  margin-top: 2rem;
}
#section3 > .container > .contentLine > .boxLine > .box > .foot > p {
  margin: 0;
  text-align: center;
  color: white;
}

#section3 > .container > .contentLine > .boxLine > .box > .foot > p.mainText {
  font-size: 1.2rem;
}

#section3 > .container > .contentLine > .boxLine > .box > .foot > p.subText {
  font-weight: 200;
  font-size: 0.7rem;
  color: rgb(236, 236, 236);
}

#section3 > .container > .contentLine > .boxLine > .box > .foot > p > span {
}

#section4 {
  background-image: url("img/main/section4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#section4 > .container {
  padding: 100px 0;
}

#section4 > .container > .contentLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
#section4 > .container > .contentLine > .textLine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section4 > .container > .contentLine > .textLine > p {
  margin: 0;
  text-align: center;
  color: white;
}

#section4 > .container > .contentLine > .textLine > p.mainText {
  font-size: 2.5rem;
}

#section4 > .container > .contentLine > .textLine > p.subText {
  font-size: 1.2rem;
}

#section4 > .container > .contentLine > .textLine > p > span {
  font-weight: bold;
}

#section4 > .container > .contentLine > .textLine > p > span.highlight {
  color: #ff5722;
}

#section4 > .container > .contentLine > .boxListLine {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

#section4 > .container > .contentLine > .boxListLine > .box {
  width: 250px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background-color: white;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
#section4 > .container > .contentLine > .boxListLine > .box:hover {
  transform: scale(1.05);
}

#section4 > .container > .contentLine > .boxListLine > .box > .numb {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
#section4 > .container > .contentLine > .boxListLine > .box > .numb > span {
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #ff5722;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

#section4 > .container > .contentLine > .boxListLine > .box > .text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#section4 > .container > .contentLine > .boxListLine > .box > .text > p {
  margin: 0;
  text-align: center;
}
#section4
  > .container
  > .contentLine
  > .boxListLine
  > .box
  > .text
  > p.mainText {
  font-weight: bold;
  font-size: 1.8rem;
}
#section4
  > .container
  > .contentLine
  > .boxListLine
  > .box
  > .text
  > p.subText {
  font-size: 1.2rem;
}

#section5 {
}

#section5 > .container {
  padding: 100px 0;
}

#section5 > .container > .contentLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
#section5 > .container > .contentLine > .textLine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section5 > .container > .contentLine > .textLine > p {
  margin: 0;
  text-align: center;
  color: black;
}

#section5 > .container > .contentLine > .textLine > p.mainText {
  font-size: 2.5rem;
}

#section5 > .container > .contentLine > .textLine > p.subText {
  font-size: 1.2rem;
}

#section5 > .container > .contentLine > .textLine > p > span {
  font-weight: bold;
}

#section5 > .container > .contentLine > .textLine > p > span.highlight {
  color: #ff5722;
}

#section5 > .container > .contentLine > .reviewList {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  overflow: hidden;
  position: relative;
  will-change: transform;
}

#section5 > .container > .contentLine > .reviewList > .reviewList__inner {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: max-content;
  will-change: transform;
  transition: none;
}

#section5
  > .container
  > .contentLine
  > .reviewList
  > .reviewList__inner
  > .review {
    width: 350px;
    height: 170px;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 10px 20px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

#section5
  > .container
  > .contentLine
  > .reviewList
  > .reviewList__inner
  > .review:hover {
    transform: scale(1.05);
}

#section5
  > .container
  > .contentLine
  > .reviewList
  > .reviewList__inner
  > .review
  > .left {

}

#section5
  > .container
  > .contentLine
  > .reviewList
  > .reviewList__inner
  > .review
  > .left > img {
    border-radius: 50%;
    width: 55px;
    height: 55px;
    object-fit: cover;
}


#section5
  > .container
  > .contentLine
  > .reviewList
  > .reviewList__inner
  > .review
  > .right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#section5
  > .container
  > .contentLine
  > .reviewList
  > .reviewList__inner
  > .review
  > .right > .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

#section5
  > .container
  > .contentLine
  > .reviewList
  > .reviewList__inner
  > .review
  > .right > .top > .name {
    user-select: none;
    font-weight: 600;
    margin: 0;
    font-size: 20px;
}

#section5
  > .container
  > .contentLine
  > .reviewList
  > .reviewList__inner
  > .review
  > .right > .top > .star {
    user-select: none;
    font-size: 20px;
}

#section5
  > .container
  > .contentLine
  > .reviewList
  > .reviewList__inner
  > .review
  > .right > .top > .star > span {
    color: #ff5722;
    user-select: none;
    margin: 0;
}

#section5
  > .container
  > .contentLine
  > .reviewList
  > .reviewList__inner
  > .review
  > .right > .bottom {

}

#section5
  > .container
  > .contentLine
  > .reviewList
  > .reviewList__inner
  > .review
  > .right > .bottom > .content {
    user-select: none;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

#section6 {
  background-color: #ff5722;
}

#section6 > .container {
  padding: 100px 0;
}

#section6 > .container > .contentLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
#section6 > .container > .contentLine > .textLine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section6 > .container > .contentLine > .textLine > p {
  margin: 0;
  text-align: center;
  color: black;
}

#section6 > .container > .contentLine > .textLine > p.mainText {
  font-size: 2.5rem;
}

#section6 > .container > .contentLine > .textLine > p.subText {
  font-size: 1.2rem;
}

#section6 > .container > .contentLine > .textLine > p > span {
  font-weight: bold;
}

#section6 > .container > .contentLine > .textLine > p > span.highlight {
  color: #ffffff;
}

.faqLine {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  user-select: none;
  background: #f7f7f7;
}
.faq-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.3em;
}
.faq-item.open .faq-arrow {
  transform: rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #222;
  font-size: 1rem;
  padding: 0 1.5rem;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}
.faq-item.open .faq-answer {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  max-height: 600px;
}

#section7 {
}

#section7 > .container {
  padding: 100px 0;
}

#section7 > .container > .contentLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
#section7 > .container > .contentLine > .textLine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section7 > .container > .contentLine > .textLine > p {
  margin: 0;
  text-align: center;
  color: black;
}

#section7 > .container > .contentLine > .textLine > p.mainText {
  font-size: 2.5rem;
}

#section7 > .container > .contentLine > .textLine > p.subText {
  font-size: 1.2rem;
}

#section7 > .container > .contentLine > .textLine > p > span {
  font-weight: bold;
}

#section7 > .container > .contentLine > .textLine > p > span.highlight {
  color: #ff5722;
}

#section7 > .container > .contentLine > .productList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

#section7 > .container > .contentLine > .productList > .product {
  width: 150px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 12px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

#section7 > .container > .contentLine > .productList > .product:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

#section7 > .container > .contentLine > .productList > .product > img {
  width: 100%;
}

#section8 {
  background-color: #ff5722;
}

#section8 > .container {
  padding: 100px 0;
}

#section8 > .container > .contentLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
#section8 > .container > .contentLine > .textLine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section8 > .container > .contentLine > .textLine > p {
  margin: 0;
  text-align: center;
  color: black;
}

#section8 > .container > .contentLine > .textLine > p.mainText {
  font-size: 2.5rem;
}

#section8 > .container > .contentLine > .textLine > p.subText {
  font-size: 1.2rem;
}

#section8 > .container > .contentLine > .textLine > p > span {
  font-weight: bold;
}

#section8 > .container > .contentLine > .textLine > p > span.highlight {
  color: white;
}

#section8 > .container > .contentLine > .buttonList {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

#section8 > .container > .contentLine > .buttonList > .contactBtn {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  background-color: white;
  padding: 20px 20px;
  align-content: center;
  align-items: center;
  border-radius: 0 20px 0 20px;
  cursor: pointer;
  transition: all 0.3s;
}

#section8 > .container > .contentLine > .buttonList > .contactBtn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

#section8 > .container > .contentLine > .buttonList > .contactBtn > .iconLine {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#section8
  > .container
  > .contentLine
  > .buttonList
  > .contactBtn
  > .iconLine
  > img {
  width: 100%;
  border-radius: 50%;
  background-color: white;
}

#section8 > .container > .contentLine > .buttonList > .contactBtn > .textLine {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#section8
  > .container
  > .contentLine
  > .buttonList
  > .contactBtn
  > .textLine
  > p {
  margin: 0;
  font-size: 1.5rem;
}

#section8
  > .container
  > .contentLine
  > .textLine
  > p.mainText
  > span
  > br.mobile-br {
  display: none;
}

footer {
  width: 100%;
  background: #2c2c2c;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  gap: 12px;
}
.footer-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
}
.footer-title .highlight {
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.footer-desc {
  color: #b0b0b0;
  font-size: 0.8rem;
  margin: 0;
  text-align: center;
  font-weight: 400;
}
.footer-tel {
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}
.footer-kakao {
  color: #fff;
  font-weight: 600;
}
.footer-copy {
  color: #888;
  font-size: 0.9rem;
  margin-top: 30px;
  text-align: center;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.show .popup-container {
  transform: scale(1);
}

.popup-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 16px;
}

.popup-close {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.popup-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popup-close:active {
  transform: scale(0.95);
}

.popup-close:focus {
  outline: 2px solid #FF5722;
  outline-offset: 2px;
}

.popup-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .popup-container {
    max-width: 95vw;
    max-height: 95vh;
    border-radius: 12px;
  }
  
  .popup-header {
    padding: 12px;
  }
  
  .popup-close {
    width: 36px;
    height: 36px;
  }
  
  .popup-close svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .popup-container {
    max-width: 98vw;
    max-height: 98vh;
    border-radius: 8px;
  }
  
  .popup-header {
    padding: 8px;
  }
  
  .popup-close {
    width: 32px;
    height: 32px;
  }
  
  .popup-close svg {
    width: 18px;
    height: 18px;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .popup-content img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

@media (prefers-color-scheme: dark) {
  .popup-close {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
  }
  
  .popup-close:hover {
    background: rgba(255, 255, 255, 0.95);
  }
}

@media (prefers-reduced-motion: reduce) {
  .popup-overlay,
  .popup-container,
  .popup-close {
    transition: none;
  }
}


.mobileBottomContent{
  width: 100%;
  height: 60px;
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 1000;
}

.mobileBottomContent > .container{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.mobileBottomContent > .container > .left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #81FB4D;
  border-radius: 10px 0 0 0;
  cursor: pointer;
}

.mobileBottomContent > .container > .left > svg {
  width: 20px;
  height: 20px;
}

.mobileBottomContent > .container > .left > p {
  margin: 0;
}

.mobileBottomContent > .container > .right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #985BD6;
  border-radius: 0 10px 0 0;
  cursor: pointer;
}

.mobileBottomContent > .container > .right > svg{
  width: 20px;
  height: 20px;
}

.mobileBottomContent > .container > .right > p {
  margin: 0;
  color: white;
}





@media all and (max-width: 1366px) {
  .navigation > .container {
    max-width: 1000px;
  }
}

@media all and (max-width: 884px) {
  .navigation {
    height: 70px;
  }
  .navigation > .container {
    max-width: 700px;
  }
  .navigation > .container > .navLine {
    gap: 2rem;
  }

  .navigation > .container > .navLine > a {
    font-size: 17px;
  }
  .navigation > .container > .iconLine > p {
    font-size: 30px;
  }

  #section1 > .container > .contentLine > .textBox > p.mainText {
    font-size: 3rem;
  }

  #section2 > .container > .contentLine {
    flex-direction: column;
    gap: 3rem;
  }
  #section2 > .container > .contentLine > .leftLine > .textBox > p {
    text-align: center;
  }

  #section3 > .container > .contentLine {
    gap: 5rem;
  }

  #section3 > .container > .contentLine > .textLine > p.mainText,
  #section4 > .container > .contentLine > .textLine > p.mainText,
  #section5 > .container > .contentLine > .textLine > p.mainText,
  #section6 > .container > .contentLine > .textLine > p.mainText,
  #section7 > .container > .contentLine > .textLine > p.mainText {
    font-size: 2.2rem;
  }
  #section3 > .container > .contentLine > .textLine > p > span,
  #section4 > .container > .contentLine > .textLine > p > span,
  #section5 > .container > .contentLine > .textLine > p > span,
  #section6 > .container > .contentLine > .textLine > p > span,
  #section7 > .container > .contentLine > .textLine > p > span,
  #section7 > .container > .contentLine > .textLine > p > span.highlight {
    font-size: 2.3rem;
  }
  #section3 > .container > .contentLine > .textLine > p.subText,
  #section4 > .container > .contentLine > .textLine > p.subText,
  #section5 > .container > .contentLine > .textLine > p.subText,
  #section6 > .container > .contentLine > .textLine > p.subText,
  #section7 > .container > .contentLine > .textLine > p.subText {
    font-size: 1rem;
  }
  #section3 > .container > .contentLine > .textLine > p.subText > span,
  #section4 > .container > .contentLine > .textLine > p.subText > span,
  #section5 > .container > .contentLine > .textLine > p.subText > span,
  #section6 > .container > .contentLine > .textLine > p.subText > span,
  #section7 > .container > .contentLine > .textLine > p.subText > span {
    font-size: 1rem;
  }

  #section3 > .container > .contentLine > .boxLine {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  #section3 > .container > .contentLine > .boxLine > .box {
    width: 200px;
    height: 250px;
  }

  #section3 > .container > .contentLine > .boxLine > .box > .head > p {
    font-size: 1.2rem;
  }

  #section3 > .container > .contentLine > .boxLine > .box > .body > p.mainText {
    font-size: 2.5rem;
  }

  #section4 > .container > .contentLine > .boxListLine {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .faqLine {
    max-width: 700px;
  }

  #section7 > .container > .contentLine > .productList {
    grid-template-columns: repeat(3, 1fr);
  }

  #section8 > .container > .contentLine > .buttonList {
    flex-direction: column;
  }
}

@media all and (max-width: 600px) {
  .mobileBottomContent {
    display: flex;
  }
  .floating {
    bottom: 120px;
    right: 10px;
  }

  .floating > a > .gotoCall {
    width: 44px;
    height: 44px;
  }

  .floating > a > .gotoTop {
    width: 44px;
    height: 44px;
  }

  .navigation {
    height: 70px;
  }

  .navigation > .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .navigation > .container > .navLine {
    display: none;
  }

  .navigation > .container > .hamburger {
    display: flex;
  }

  .navigation > .container > .iconLine > p {
    font-size: 24px;
  }

  .navigation > .mobile-menu > .mobile-menu-header {
    height: 70px;
  }

  .navigation > .mobile-menu > .mobile-menu-header > .iconLine > p {
    font-size: 24px;
  }

  .navigation > .mobile-menu > .mobile-menu-content {
    padding: 1.5rem 0;
  }

  .navigation > .mobile-menu > .mobile-menu-content > .navLine > a {
    font-size: 16px;
    padding: 1rem 1.5rem;
  }

  .navigation > .mobile-menu > .mobile-menu-content > .navLine > a:hover,
  .navigation > .mobile-menu > .mobile-menu-content > .navLine > a:focus {
    padding-left: 2rem;
  }

  #section1 > .container > .contentLine > .textBox > p.mainText {
    font-size: 2rem;
  }

  #section1 > .container > .contentLine > .textBox > p.subText {
    font-size: 1.3rem;
  }

  #section1 > .container > .contentLine > .naverLine > .wrapper > p {
    font-size: 1.1rem;
  }
  #section1 > .container > .contentLine > .naverLine {
    width: 90%;
  }

  #section1 > .container > .contentLine > .naverLine > .wrapper > .icon1 {
    width: 25px;
  }
  #section1 > .container > .contentLine > .naverLine > .wrapper > .icon2 {
    width: 25px;
  }
  #section2 > .container > .contentLine > .rightLine {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #section2 > .container > .contentLine > .rightLine > .sliderBox {
    width: 95%;
  }
  #section3 > .container > .contentLine > .textLine > p {
    font-size: 2rem;
  }
  #section3 > .container > .contentLine > .textLine > p > span,
  #section4 > .container > .contentLine > .textLine > p > span,
  #section5 > .container > .contentLine > .textLine > p > span,
  #section6 > .container > .contentLine > .textLine > p > span,
  #section7 > .container > .contentLine > .textLine > p > span {
    font-size: 2.2rem;
  }
  #section3 > .container > .contentLine > .textLine > p > span,
  #section4 > .container > .contentLine > .textLine > p > span,
  #section5 > .container > .contentLine > .textLine > p > span,
  #section6 > .container > .contentLine > .textLine > p > span,
  #section7 > .container > .contentLine > .textLine > p > span,
  #section7 > .container > .contentLine > .textLine > p > span.highlight {
    font-size: 2.2rem;
  }
  #section6 > .container > .contentLine {
    gap: 3rem;
  }

  .faqLine {
    max-width: 90%;
  }

  #section7 > .container > .contentLine {
    gap: 3rem;
  }
  #section7 > .container > .contentLine > .productList {
    grid-template-columns: repeat(2, 1fr);
  }

  #section8
    > .container
    > .contentLine
    > .textLine
    > p.mainText
    > span
    > br.mobile-br {
    display: block;
  }

  #section8
    > .container
    > .contentLine
    > .buttonList
    > .contactBtn
    > .iconLine {
    width: 70px;
    height: 70px;
  }
  #section8 > .container > .contentLine > .buttonList > .contactBtn {
    width: 100%;
  }

  footer {
    padding-bottom: 120px;
  }
}

@media all and (max-width: 478px) {
  #section1 > .container > .contentLine > .naverLine {
    width: 85%;
    padding: 10px 20px;
    margin-top: 2rem;
  }
  #section1 > .container > .contentLine > .naverLine > .wrapper {
    align-items: center;
    justify-content: center;
  }
  #section1 > .container > .contentLine > .naverLine > .wrapper > p {
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
    font-weight: 600;
  }
  #section1 > .container > .contentLine > .naverLine > .wrapper > p > br.infoBr {
    display: block;
  }
  #section1 > .container > .contentLine > .naverLine > .wrapper > .icon1 {
    width: 20px;
  }
  #section1 > .container > .contentLine > .naverLine > .wrapper > .icon2 {
    width: 20px;
  }

  .status-done {
    font-size: 0.75em;
  }
  .status-fail {
    font-size: 0.75em;
  }
  .sliderTable td {
    font-size: 0.8rem;
  }
  .sliderTable .product-cell img {
    width: 80px;
  }
  .sliderTable th {
    font-size: 0.9rem;
  }
  #section2 > .container > .contentLine > .leftLine > .infoBoxLine > .info > p {
    font-size: 1rem;
  }
  #section3 > .container > .contentLine {
    gap: 3rem;
  }

  #section3 > .container > .contentLine > .textLine > p {
    font-size: 1.5rem;
  }
  #section3 > .container > .contentLine > .textLine > p > span,
  #section4 > .container > .contentLine > .textLine > p > span,
  #section5 > .container > .contentLine > .textLine > p > span,
  #section6 > .container > .contentLine > .textLine > p > span {
    font-size: 1.8rem;
  }
  #section3 > .container > .contentLine > .boxLine > .box > .foot {
    margin-top: 1rem;
  }

  #section3 > .container > .contentLine > .textLine > p.mainText,
  #section4 > .container > .contentLine > .textLine > p.mainText,
  #section5 > .container > .contentLine > .textLine > p.mainText,
  #section6 > .container > .contentLine > .textLine > p.mainText,
  #section7 > .container > .contentLine > .textLine > p.mainText {
    font-size: 1.5rem;
  }
  #section3 > .container > .contentLine > .textLine > p > span,
  #section4 > .container > .contentLine > .textLine > p > span,
  #section5 > .container > .contentLine > .textLine > p > span,
  #section6 > .container > .contentLine > .textLine > p > span,
  #section7 > .container > .contentLine > .textLine > p > span,
  #section7 > .container > .contentLine > .textLine > p > span.highlight {
    font-size: 1.8rem;
  }

  #section7 > .container > .contentLine > .productList > .product {
    width: 100px;
  }

  .faq-question {
    font-size: 0.9rem;
  }
  .faq-answer {
    font-size: 0.9rem;
  }

  #section8 > .container > .contentLine > .textLine > p.mainText {
    font-size: 2rem;
  }

  #section8
    > .container
    > .contentLine
    > .buttonList
    > .contactBtn
    > .textLine
    > p {
    font-size: 1.2rem;
  }

  #section8
    > .container
    > .contentLine
    > .buttonList
    > .contactBtn
    > .iconLine {
    width: 55px;
    height: 55px;
  }

  .footer-title {
    font-size: 1rem;
  }

  .footer-desc {
    font-size: 0.65rem;
  }
  .footer-content {
    gap: 5px;
  }

  .footer-copy {
    font-size: 0.8rem;
  }

  .floating > a > .gotoCall {
    width: 44px;
    height: 44px;
  }

  .floating > a > .gotoTop {
    width: 44px;
    height: 44px;
  }
}
