/* reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Malgun Gothic", "Segoe UI", "Noto Sans KR",
    sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  padding-block: 0;
  padding-inline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block-start: 0;
  margin-block-end: 0;
}

strong {
  display: inline-block;
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
}

ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  list-style: none;
}

/* layouts */

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f7f7f9;
}

.skip-nav a {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 8px 16px;
  background: #161c26;
  color: #fff;
  z-index: 1000;
}
.skip-nav a:focus {
  left: 16px;
  top: 16px;
}

.bg-cloud {
  position: absolute;
  width: 100%;
  height: 316px;
  top: 0;
  left: 0;
  right: 0;
}

.bg-cloud__inner {
  position: relative;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
}

.bg-cloud .cloud {
  position: absolute;
}

.bg-cloud .cloud--1 {
  width: 105px;
  height: 83px;
  top: 196px;
  left: 0;
  background: url("../images/img-cloud-1_1.png") center center no-repeat;
  background-size: 100% 100%;
}
.bg-cloud .cloud--2 {
  width: 104px;
  height: 60px;
  top: 316px;
  right: 0;
  background: url("../images/img-cloud-2_1.png") center center no-repeat;
  background-size: 100% 100%;
}
.bg-cloud .cloud--3 {
  display: none;
  width: 142px;
  height: 82px;
  background: url("../images/img-cloud-3.png") center center no-repeat;
  background-size: 100% 100%;
}

.site-header {
  z-index: 1;
  position: relative;
  height: 48px;
  background-color: #f7f7f9;
}

.site-header__inner {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 8px 16px 8px 24px;
}

.site-header .logo,
.site-header .logo > img,
.img-logo__header {
  display: block;
  width: 104px;
  height: auto;
}

.site-main {
  z-index: 1;
  flex: 1 0 auto;
  position: relative;
}

.section-wrap--top {
  background-color: #f7f7f9;
}
.section-wrap--bottom {
  background-color: #f7f7f9;
}

.section-wrap--top .section-wrap__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 0 24px;
}

.section-wrap--bottom .section-wrap__inner {
  position: relative;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 8px 24px 24px 24px;
}

.section-hero {
  position: relative;
  margin-bottom: 56px;
}

.section-hero .hero__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-hero .hero__title {
  font-family: "Ok", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.29;
  letter-spacing: -0.84px;
  text-align: left;
  color: #161c26;
}

.section-hero .hero__desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: #545964;
}

.section-features {
  position: relative;
  height: 412px;
}

.section-features .features__content {
  display: flex;
  flex-direction: column;
}

.section-features .features__content-1 + .features__content-2 {
  margin-top: 32px;
}

.section-features .section__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.56;
  text-align: left;
  color: #161c26;
}

.section-features .section__title span {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.33;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: break-word;
  color: #ff571f;
}

.section-features .section__desc {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: #545964;
}

.section-features .img-bank {
  position: absolute;
  width: 188px;
  height: 204px;
  right: 0;
  bottom: 0;
}

.product-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.product-accordion .accordion__header {
  display: flex;
  flex-direction: row;
  align-self: stretch;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 20px;
  border-radius: 16px;
  background-color: #fff;
}

.product-accordion .accordion__trigger {
  display: flex;
  align-items: center;
  width: 100%;
  border: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: #161c26;
  background-color: #fff;
}

.product-accordion .accordion__trigger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  right: 20px;
  background: url("../images/img-plus.png") center center no-repeat;
  background-size: 100% 100%;
}

.product-accordion .accordion__trigger[aria-expanded="true"]::after {
  content: "";
  background: url("../images/img-minus.png") center center no-repeat;
  background-size: 100% 100%;
}

.product-accordion .accordion__panel {
  opacity: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 0;
}

.product-accordion .accordion__panel.is-open {
  opacity: 1;
  max-height: 100%;
  padding: 0 20px 20px 20px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  background-color: #fff;
}

.product-accordion .accordion__header.is-open-header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.product-accordion .accordion__panel strong {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #161c26;
}

.product-accordion .accordion__panel p {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  color: #545964;
}

.product-accordion .accordion__panel p em {
  font-style: normal;
  font-weight: 500;
  color: #161c26;
}

.product-accordion .accordion__panel ul {
  margin-top: 8px;
}

.product-accordion .accordion__panel ul li {
  list-style: none;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  color: #545964;
}

.product-accordion .accordion__panel h4 + p {
	padding-top: 4px;
}

.product-accordion .accordion__panel p + h4 {
	padding-top: 16px;
}

.product-accordion .accordion__panel p + strong,
.product-accordion .accordion__panel strong + strong {
  margin-top: 16px;
}

.product-accordion .accordion__panel ul + p {
  margin-top: 4px;
}

.product-accordion .accordion__panel .img-product {
  width: 80px;
  height: auto;
  padding: 16px 0;
}

.product-tabs {
  display: none;
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

.product-tabs .product-tabs__list {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.product-tabs .product-tabs__list button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  width: 33.3333%;
  height: 56px;
  gap: 10px;
  padding: 12px 16px;
  border: solid 1px #d3d8e4;
  border-collapse: collapse;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #545964;
  background-color: #fff;
}

.product-tabs .product-tabs__list button:nth-child(2),
.product-tabs .product-tabs__list button:nth-child(3) {
	border-left: none;
}

.product-tabs .product-tabs__tab.is-active {
  border-top: solid 2px #161c26;
  border-bottom: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.product-tabs .product-tabs__panel {
  position: relative;
}

.product-tabs .product-tabs__panel .title {
  width: 1200px;
  height: 62px;
  align-self: stretch;
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 24px;
  border-bottom: solid 1px #d3d8e4;
}

.product-tabs .ico-tabs {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.product-tabs .ico-tabs-1 {
  background: url("../images/ico-tabs-1.png") center center no-repeat;
  background-size: 100% 100%;
}
.product-tabs .ico-tabs-2 {
  background: url("../images/ico-tabs-2.png") center center no-repeat;
  background-size: 100% 100%;
}
.product-tabs .ico-tabs-3 {
  background: url("../images/ico-tabs-3.png") center center no-repeat;
  background-size: 100% 100%;
}
.product-tabs .ico-tabs-4 {
  background: url("../images/ico-tabs-4.png") center center no-repeat;
  background-size: 100% 100%;
}

.product-tabs .product-tabs__panel .desc {
  position: relative;
  padding: 24px;
}

.product-tabs .product-tabs__panel .desc strong {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #161c26;
}

.product-tabs .product-tabs__panel .desc p {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  color: #545964;
}

.product-tabs .product-tabs__panel .desc p em {
  font-style: normal;
  font-weight: 500;
  color: #161c26;
}

.product-tabs .product-tabs__panel .desc ul {
  margin-top: 8px;
}

.product-tabs .product-tabs__panel .desc ul li {
  list-style: none;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  color: #545964;
}

.product-tabs .product-tabs__panel .desc h4 + strong {
	padding-top: 4px;
}

.product-tabs .product-tabs__panel .desc strong + h4 {
	padding-top: 16px;
}

.product-tabs .product-tabs__panel .desc ul + p {
  margin-top: 4px;
}

.product-tabs .product-tabs__panel .desc .img-product {
  display: inline-block;
  width: 100px;
  height: auto;
  padding: 16px 16px 0 0;
}

.section-legal {
  position: relative;
  padding: 48px 4px 0 4px;
}

.section-legal li {
  font-size: 10px;
  line-height: 1.8;
  text-align: left;
  color: #545964;
}

.cta-sticky::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.cta-sticky {
  z-index: 50;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
}

.cta-sticky .btn--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 48px);
  height: 56px;
  margin: 0 24px 24px;
  padding: 0;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.44;
  text-align: center;
  color: #fff;
  background-color: #ff571f;
}

.cta-primary {
  display: none;
}

.cta-primary .btn--cta {
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 312px;
  height: 62px;
  margin-top: 52px;
  padding: 16px;
  border-radius: 16px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.36;
  text-align: center;
  color: #fff;
  background-color: #ff571f;
}

.site-footer {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: 104px;
  background-color: #e9ebf0;
}

.site-footer__inner {
  padding: 32px 24px 48px 24px;
}

.site-footer .logo > img,
.img-logo__footer {
  width: 91px;
  height: auto;
}

.site-footer__content {
  margin-top: 8px;
}

.site-footer__text {
  font-size: 12px;
  color: #545964;
  line-height: 1.5;
}

.site-footer__text span {
  display: none;
}

.site-footer__text + .site-footer__text {
  margin-top: 4px;
}

.site-footer__copyright {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  color: #4d5764;
}

@media (min-width: 360px) and (max-width: 768px) {
  .section-features {
    height: 438px;
  }

  .section-features .img-bank {
    width: 212px;
    height: 230px;
  }
}

@media (min-width: 768px) {
  .site-header {
    height: 82px;
  }
  .site-header__inner {
    max-width: 1280px;
    padding: 32px 32px 0;
  }

  .site-header .logo,
  .site-header .logo > img,
  .img-logo__header {
    width: 160px;
    height: 50px;
  }

  .section-wrap--top .section-wrap__inner {
    padding: 84px 32px 0 32px;
  }

  .section-wrap--bottom .section-wrap__inner {
    padding: 72px 32px 32px 32px;
  }

  .bg-cloud .cloud--1 {
    width: 116px;
    height: 92px;
    top: 104px;
    left: 0;
  }
  .bg-cloud .cloud--2 {
    width: 114px;
    height: 66px;
    top: 190px;
    right: 0;
  }
  .bg-cloud .cloud--3 {
    display: block;
    width: 142px;
    height: 82px;
    top: 44px;
    left: 430px;
  }

  .section-hero .hero__title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.17;
    letter-spacing: -1.92px;
  }

  .section-hero .hero__desc {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.33;
  }

  .section-hero .hero__desc br {
    display: none;
  }

  .section-features {
    height: auto;
  }

  .section-features .features__content {
    flex-direction: row;
    position: relative;
  }

  .section-features .features__content-1,
  .section-features .features__content-2 {
    width: 220px;
  }

  .section-features .features__content-1 + .features__content-2 {
    margin-top: 0;
    margin-left: 57px;
  }

  .section-features .features__content-1 + .features__content-2::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 70px;
    top: 50%;
    left: 232px;
    transform: translateY(-50%);
    background-color: #c8cbd5;
  }

  .section-features .section__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
  }

  .section-features .section__title span {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.42;
  }

  .section-features .section__desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
  }

  .section-features .img-bank {
    width: 200px;
    height: 218px;
    top: -38px;
    right: 0;
  }

  .product-accordion {
    gap: 16px;
  }

  .accordion__trigger {
    font-weight: 600;
  }

  .section-legal {
    padding-top: 36px;
  }

  .section-legal li {
    font-size: 12px;
    line-height: 1.67;
  }

  .cta-sticky {
    display: none;
  }

  .cta-primary {
    display: block;
  }

  .site-footer {
    margin-bottom: 0;
  }

  .site-footer__inner {
    max-width: 1280px;
    padding: 32px 32px 48px 32px;
  }

  .site-footer__text br {
    display: none;
  }

  .site-footer__text span {
    display: inline-block;
  }
}

@media (min-width: 1024px) {
  .site-header__inner {
    padding: 32px 64px 0;
  }

  .section-wrap--top .section-wrap__inner {
    padding: 84px 64px 0 64px;
  }

  .section-wrap--bottom .section-wrap__inner {
    padding: 72px 64px 32px 64px;
  }

  .section-features .features__content-1,
  .section-features .features__content-2 {
    width: 270px;
  }

  .section-features .features__content-1 + .features__content-2::before {
  	left: 269px;
  }

  .site-footer__inner {
    padding: 32px 64px 48px 64px;
  }
}

@media (min-width: 1280px) {
  .page-wrap {
    background-color: #fff;
  }

  .site-header__inner {
    width: 1280px;
    padding: 32px 0 0 40px;
  }

  .bg-cloud .cloud--1 {
    width: 182px;
    height: 92px;
    top: 104px;
    left: 10px;
    background: url("../images/img-cloud-1_2.png") center center no-repeat;
    background-size: 100% 100%;
  }
  .bg-cloud .cloud--2 {
    width: 130px;
    height: 66px;
    top: 190px;
    right: 10px;
    background: url("../images/img-cloud-2_2.png") center center no-repeat;
    background-size: 100% 100%;
  }
  .bg-cloud .cloud--3 {
    display: block;
    width: 142px;
    height: 82px;
    top: 40px;
    left: 810px;
  }

  .section-wrap--top .section-wrap__inner {
    padding: 84px 64px 94px 64px;
  }

  .section-wrap--bottom {
    background-color: #fff;
  }

  .section-wrap--bottom .section-wrap__inner {
    width: 100%;
    margin: 0 auto;
    padding: 48px 64px 32px 64px;
  }

  .product-accordion {
    display: none;
  }

  .product-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .section-legal {
    width: 1200px;
    height: 80px;
    margin: 0 auto;
    padding: 8px 24px 32px;
  }

  .site-footer__inner {
    width: 1280px;
    margin: 0 auto;
    padding: 32px 40px 120px;
  }
}
