@charset "UTF-8";
/* === 공통 섹션 === */
section {
  padding: 120px 20px;
}
@media (max-width: 768px) {
  section {
    padding: 80px 20px;
    flex-direction: column;
  }
}

section [class*=__container] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
  gap: 20px;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.5s ease-out, transform 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
section [class*=__container].active {
  opacity: 1;
  transform: translateY(0);
}

[class*=__title] {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  [class*=__title] {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

/* === Hero === */
.hero {
  width: 1120px;
  height: 100vh;
  margin: 0 auto;
  /*background: url('/images/main.png') no-repeat right center / cover;*/
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .hero {
    width: auto;
  }
}
.hero__visual video {
  width: 100%;
  max-width: 500px;
  height: auto;
}
.hero__container {
  position: relative;
  align-items: center;
  text-align: center;
  opacity: 1;
  transform: none;
}
.hero__text-group {
  text-align: left;
}
.hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.hero__desc {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 50px;
  color: var(--color-gray);
}
@media (max-width: 768px) {
  .hero__desc {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .hero__btn-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* === Mid === */
.mid__container {
  align-items: center;
  text-align: center;
}
.mid__text {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .mid__text {
    font-size: 18px;
  }
}

/* === Intro === */
.intro__desc {
  line-height: 1.5;
  color: #777;
}

/* === Process === */
.process__desc {
  line-height: 1.5;
  color: #777;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .process__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.process__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.process__card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .process__card-title {
    margin-bottom: 10px;
  }
}
.process__card-desc {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.5;
}
.process__img-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.process__img-box img {
  width: auto;
  height: auto;
  max-width: 140px;
  max-height: 120px;
}
@media (max-width: 768px) {
  .process__img-box img {
    max-width: 110px;
  }
}

/* === Report === */
.report__container {
  display: flex;
  flex-direction: row !important;
}
.report__container-left {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .report__container {
    flex-direction: column !important;
  }
}

/* === FAQ === */
.faq__item {
  border-bottom: 1px solid var(--border-color);
}
.faq__item.active .faq__header {
  color: var(--color-primary);
}
.faq__item.active .faq__arrow {
  transform: rotate(-135deg);
  border-color: var(--color-primary);
}
.faq__item.active .faq__body {
  max-height: 500px;
  padding-bottom: 20px;
}
.faq__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 768px) {
  .faq__header {
    font-size: 16px;
    padding: 20px 0;
  }
}
.faq__arrow {
  width: 15px;
  height: 15px;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .faq__arrow {
    font-size: 12px;
    width: 10px;
    height: 10px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
}
.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.faq__desc {
  color: var(--color-gray);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .faq__desc {
    font-size: 14px;
  }
}

/* === Asset === */
.asset-guide-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background-color: #f0f7ff;
  border-radius: 5px;
  cursor: pointer;
  max-width: 1120px;
  margin: 20px auto;
}
@media (max-width: 768px) {
  .asset-guide-bar {
    padding: 12px 16px;
    margin: 15px 20px;
  }
}
.asset-guide-bar__text {
  color: #0085ff;
  font-size: 15px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .asset-guide-bar__text {
    font-size: 13px;
  }
}
.asset-guide-bar__icon {
  color: #555;
  display: flex;
  align-items: center;
}
.asset-guide-bar__icon svg {
  width: 18px;
  height: 18px;
}
