@charset "utf-8";

.contents.blur .service,
.contents.blur .package,
.contents.blur .service-list {
  filter: blur(4px);
  transition: filter 0.3s ease;
}

.number.black p {
  color: #fff;
}

/* **********service */
.service {
  width: 100%;
  height: 100vh;
  background: #000;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.service-title h2 {
  font-size: 90px;
  font-weight: 800;
}

.service-title h2:nth-child(1) {
  color: #97969E;
}

.service-title h2:nth-child(3) {
  color: #97969E;
}

.service-txt {
  font-size: 26px;
  line-height: 1.6;
  margin-top: 40px;
  font-weight: 200;
}

/* ************* Service List Section */
.service-list {
  background-color: #000;
  color: #fff;
  padding: 100px 80px;
  min-height: 100vh;
  z-index: 10;
  position: relative;
  height: 400vh;
}

.service-list-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
}

.service-list-title {
  position: absolute;
  top: 50%;
  left: 82px;
  transform: translateY(-50%);
}

.service-list-title h3 {
  font-family: var(--font-main-en);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 3;
  text-transform: uppercase;
}

/* Service Process Container */
.service-process {
  position: relative;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 수평선 스타일 */
.process-line {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  display: flex;
  align-items: center;

}

.line-start {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 50px;
}

.line-body {
  flex: 1;
  height: 2px;
  background: #fff;
  position: relative;
}

.line-body-overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  background: #D9D9D9;
  width: 0%;
  z-index: 2;
}

.line-arrow {
  width: 24px;
  height: 24px;
  margin-right: 50px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-arrow span {
  display: block;
  width: 12px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 0;
  border-radius: 10px;
}

.line-arrow span:first-child {
  transform: rotate(-45deg);
  transform-origin: right center;
  top: 11px;
  right: 22.2px;
}

.line-arrow span:last-child {
  transform: rotate(45deg);
  transform-origin: right center;
  bottom: 10px;
  right: 22.2px;
}

/* Service Steps */
.service-steps {
  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Step Cards */
.step-card {
  border: 1px solid #fff;
  border-radius: 120px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: relative;

  width: 258px;
  padding: 40px 30px;
  transition: background-color 0.5s ease, border-color 0.5s ease;
}

.step-card.active {
  background-color: #fff;
}

.step-card.active * {
  color: #000 !important;
}

.step-card.active .line-arrow span {
  background: #000;
}

/* 각 스텝별 높이 증가 */
.step-1 {
  height: 520px;
}

.step-2 {
  height: 670px;
}

.step-3 {
  height: 780px;
}

.step-4 {
  height: 880px;
}

/* Card Top Section */
.card-top {
  text-align: center;
}

.card-top h4 {
  font-family: var(--font-main-en);
  font-size: 20px;
  margin-bottom: 30px;
}

.service-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-items li {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.service-items li:first-child {
  font-weight: 600;
  line-height: 2;
}

/* Card Bottom Section */
.card-bottom {
  position: relative;
}

.card-bottom img {
  transition: opacity 0.3s ease;
}

.card-bottom .default-img {
  opacity: 1;
}

.card-bottom .active-img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.step-card.active .card-bottom .default-img {
  opacity: 0;
}

.step-card.active .card-bottom .active-img {
  opacity: 1;
}

.card-bottom img {
  width: 60px;
  height: 60px;
}

/* .step-1 .card-bottom img {
  height: 60px;
  width: auto;
}

.step-2 .card-bottom img,
.step-3 .card-bottom img {
  height: 57px;
  width: auto;
}

.step-4 .card-bottom img {
  height: 56px;
  width: auto;
} */

.package {
  background-color: #fff;

}

.package {
  padding: 200px 0 300px;
  position: relative;
}

.package-menu {
  position: sticky;
  top: 100px;
  z-index: 100;
  background-color: transparent;
  padding: 20px 0;
}

.package-menu-list {
  justify-content: space-around;
  font-size: 20px;
  font-weight: 700;
  color: #9899A2;
  width: 540px;
  margin: 0 auto;
  cursor: pointer;
  background-color: transparent;
}

.package-menu-list.active {
  color: #fff
}

.package-menu-list li.active {
  cursor: pointer;
  padding: 10px 24px;
  background-color: #45454A;
  border-radius: 30px;
  color: #fff;
}

.package-content {
  margin-top: 100px;
}

.package-item {
  width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
  padding: 120px 0;
  position: relative;
}

.package-item::after {
  content: "";
  display: block;
  width: 1600px;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.package-item .left-wrapper img {
  width: auto;
  height: 117px;
}

.package-item .left-wrapper:nth-child(2) img {
  height: 120px;
}

.package-item .left-wrapper:nth-child(3) img {
  height: 121px;
}

.package-item .right-wrapper {
  width: 570px;
}

.package-item .right-wrapper img {
  width: 70px;
  height: 70px;
}

.package-item .right-wrapper .right-txt {
  margin: 30px 0;
  font-size: 20px;
  word-break: keep-all;
  font-weight: 400;
}

.package-list {
  gap: 10px;
}

.package-list li {
  border: 1px solid #000;
  color: #6B6B6B;
  font-size: 18px;
  border-radius: 30px;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.marketing-package .package-list li.active {
  background-color: #FF5349;
  color: #fff;
  border-color: #FF5349;
}

.commerce-package .package-list li.active {
  background-color: #FE3CD0;
  color: #fff;
  border-color: #FE3CD0;
}

.partners-package .package-list li.active {
  background-color: #004DF7;
  color: #fff;
  border-color: #004DF7;
}

.creative-package .package-list li.active {
  background-color: #9E00FE;
  color: #fff;
  border-color: #9E00FE;
}

.package-list-txt {
  position: relative;
  min-height: 100px;
}

.package-list-txt-item {
  position: absolute;
  top: 40px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.package-list-txt-item.active {
  opacity: 1;
  visibility: visible;
}

.package-list-txt-item .item-title {
  gap: 2px;
  margin-bottom: 10px;
}

.package-list-txt-item p {
  font-size: 20px;
}

.package-list-txt-item .item-title h3 {
  font-size: 26px;
  font-weight: 700;
}

.package-list-txt-item .item-title h4 {
  font-size: 18px;
  font-weight: 300;
}

.package-list-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;

  position: absolute;
  right: 0;
  bottom: 20px;
  font-size: 20px;
  font-weight: 800;
}

.marketing-package .package-list-btn {
  color: #FF5349
}

.commerce-package .package-list-btn {
  color: #FE3CD0
}

.partners-package .package-list-btn {
  color: #004DF7
}

.creative-package .package-list-btn {
  color: #9E00FE
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
  .service-title h2 {
    font-size: 60px;
  }

  .service-txt {
    font-size: 20px;
  }

  .service-list {
    padding: 80px 40px;
  }

  .service-list-title {
    left: 50px;
  }

  .service-steps {
    padding: 0 20px;
  }

  .step-card {
    width: 140px;
    padding: 30px 20px;
  }

  .service-list-title h3 {
    font-size: 14px;
  }

  .step-1 {
    height: 300px;
  }

  .step-2 {
    height: 350px;

  }

  .step-3 {
    height: 400px;

  }

  .step-4 {
    height: 450px;

  }

  .card-bottom img {
    width: 40px;
    height: 40px;
  }

  /* .step-1 .card-bottom img {
    height: 42px;
  }

  .step-2 .card-bottom img,
  .step-3 .card-bottom img {
    height: 40px;
  }

  .step-4 .card-bottom img {
    height: 39px;
  } */

  .card-top h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .package-item {
    width: 800px;
  }

  .package-item .left-wrapper img {
    height: 68px;
  }

  .package-item .left-wrapper:nth-child(2) img {
    height: 70px;
  }

  .package-item .left-wrapper:nth-child(3) img {
    height: 71px;
  }

  .package-item .right-wrapper img {
    width: 50px;
    height: 50px;
  }

  .package-item .right-wrapper .right-txt {
    font-size: 16px;
    margin: 16px 0;
  }

  .package-list-txt-item .item-title h3 {
    font-size: 20px;
  }

  .package-list-txt-item .item-title h4 {
    font-size: 14px;
  }

  .package-list-txt-item p {
    font-size: 16px;
  }

  .package-list li {
    font-size: 14px;
  }

  .package-item::after {
    width: 900px;
  }

  .service-items li {
    font-size: 12px;
  }

  .service-name {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .service-list {
    padding: 0 40px;
  }

  .step-card {
    width: 120px;
  }

  .line-start {
    margin-left: 10px;
  }

  .card-bottom img {
    width: 30px;
    height: 30px;
  }

  /* .step-1 .card-bottom img {
    height: 36px;
  }

  .step-2 .card-bottom img,
  .step-3 .card-bottom img {
    height: 34px;
  }

  .step-4 .card-bottom img {
    height: 33px;
  } */

  .package {
    padding: 100px 0;
  }

  .package-item .left-wrapper img {
    height: 50px;
  }

  .package-item .left-wrapper:nth-child(2) img {
    height: 51px;
  }

  .package-item .left-wrapper:nth-child(3) img {
    height: 51px;
  }

  .package-item {
    width: 500px;
    flex-direction: column;
    gap: 30px;
    padding: 90px 0;
  }

  .package-content {
    margin-top: 40px;
  }

  .package-item::after {
    width: 600px;
  }

  .service-list-title {
    left: 20px;
  }

  .service-list-title h3 {
    font-size: 8px;
  }

  .package-list-btn {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .service-title h2 {
    font-size: 40px;
  }

  .service-txt {
    font-size: 16px;
  }

  .service-steps {
    flex-wrap: wrap;
    width: 320px;
  }

  .step-card {
    width: 140px;
  }

  .step-1,
  .step-2,
  .step-3,
  .step-4 {
    height: 300px;
  }

  .process-line {
    display: none;
  }

  .service-list-title {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .service-list-title h3 {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
  }

  .package-menu-list {
    font-size: 16px;
    width: 100%;
  }

  .package-item,
  .package-item .right-wrapper {
    width: 300px;
  }

  .package-list {
    flex-wrap: wrap;
  }

  .package-item .right-wrapper .right-txt {
    font-size: 14px;

  }

  .package-list-txt-item .item-title h3 {
    font-size: 18px;
  }

  .package-list-txt-item .item-title h4 {
    font-size: 12px;
  }

  .package-item::after {
    width: 360px;
  }

  .package-menu {
    backdrop-filter: blur(4px);
  }

  .package-menu {
    top: 60px;
  }
}