html,
body {
  font-family: var(--font-SUIT);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding-top: 80px;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
}

section {
  width: 100%;
  position: relative;
  padding-bottom: 200px;
}

/* header */

#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #d0d5dd;
}

.header_inner {
  width: 100%;
  max-width: 1400px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

#header .logo a {
  display: block;
  width: 110px;
  height: 30px;
  background: url("../../assets/img/common/logo_color.svg") center no-repeat;
  background-size: cover;
}

#header .right {
  display: flex;
  align-items: center;
}

/* nav */

#pc_gnb > .floor1 {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

#pc_gnb > .floor1 > li > a {
  display: inline-block;
  font-weight: 400;
  color: #000;
  font-size: 16px;
  letter-spacing: -0.02em;
  transition: all 0.5s;
}

#pc_gnb > .floor1 > li:not(.color) > a:hover {
  text-shadow: 0 8px 4px rgba(0, 0, 0, 0.25);
}

#pc_gnb > .floor1 > li.color > a {
  color: var(--main-brand-color);
  font-weight: 700;
}

#header .main_login {
  margin-left: 40px;
}

#header .main_login > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid rgba(208, 213, 221, 1);
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.03em;
  transition: all 0.3s;
}

#header .main_login > a:hover {
  border-color: var(--main-brand-color);
  background-color: var(--main-brand-color);
  color: #fff;
}

/* freetrial_btn */

.freetrial_btn {
  position: fixed;
  right: 60px;
  bottom: 60px;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease,
    visibility 1s ease;
}

.freetrial_btn.is-visible {
  opacity: 1;
  visibility: visible;
}

.freetrial_btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--main-brand-color);
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.freetrial_btn a:hover {
  background: #4a4ae8;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(91, 91, 245, 0.45);
}

.freetrial_btn .ico_gift {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/common/ico_gift.svg") center/contain no-repeat;
}

.freetrial_btn a span {
  display: inline-block;
}

/* inc_freeTrial */

#inc_freeTrial {
  padding: 80px 0;
  background: url("../img/common/inc_freeTrial_bg.png") center no-repeat;
  background-size: cover;
  font-family: var(--font-Pretendard);
}

#inc_freeTrial .ift_tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#inc_freeTrial .ift_tit h2 {
  font-size: 44px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: rgba(51, 61, 75, 1);
  font-weight: 700;
}

#inc_freeTrial .ift_tit h2 em {
  color: var(--main-brand-color);
}

#inc_freeTrial .ift_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

#inc_freeTrial .ift_list li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  font-weight: 500;
  letter-spacing: -0.02em;
}

#inc_freeTrial .ift_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8.5L6.5 12L13 4.5' stroke='%236454ED' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center no-repeat;
  background-size: contain;
}

#inc_freeTrial .ift_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px auto 0;
  padding: 18px 48px;
  width: max-content;
  background: var(--main-brand-color);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-radius: 12px;
  transition: background 0.2s ease;
}

#inc_freeTrial .ift_btn:hover {
  background: rgba(80, 66, 210, 1);
}

/* ===== Footer ===== */
#footer {
  display: block;
  width: 100%;
  background: rgba(16, 24, 40, 1);
  color: rgba(152, 162, 179, 1);
}

#footer .footer_inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 55px 0 45px 0;
}

#footer .footer_logo {
  width: 96px;
  height: 24.66px;
  margin-bottom: 60px;
  background: url("../img/common/logo_color.svg") no-repeat left center /
    contain;
}

#footer .footer_body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

#footer .footer_info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#footer .info_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

#footer .info_row li {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
}

#footer .info_row li + li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(71, 84, 103, 1);
}

#footer .copyright {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
}

#footer .footer_links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-shrink: 0;
}

#footer .footer_links a {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  transition: opacity 0.3s;
}

#footer .footer_links a:hover {
  opacity: 0.7;
}

.main_vis_txt {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 80px;
}

.main_vis_txt .cate {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--main-brand-color);
  margin-bottom: 20px;
}

.main_vis_txt h2 {
  font-size: clamp(28px, 5.5vw, 72px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 30px;
}

.main_vis_txt h2 strong {
  color: var(--main-brand-color);
}

.main_vis_txt p {
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.6;
  color: rgba(71, 84, 103, 1);
  letter-spacing: -0.02em;
  font-weight: 500;
}

/* 섹션 공통 타이틀 */

.sec_tit {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}

.sec_tit .cate,
.sec_subTit .cate {
  display: inline-flex;
  width: max-content;
  font-size: clamp(13px, 1.35vw, 16px);
  padding: 10px 14px;
  border-radius: 999px;
  text-align: center;
  background: rgba(240, 238, 255, 1);
  text-transform: uppercase;
  color: var(--main-brand-color);
  font-weight: 800;
}

.cate.type02 {
  font-family: var(--font-Pretendard);
  text-transform: none;
  color: rgba(193, 21, 116, 1);
  background: rgba(253, 242, 250, 1);
  font-weight: 500;
}

.sec_tit h2 {
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #000;
  font-weight: 700;
}

.sec_tit.type2 {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
}

.sec_tit.type2 .txt_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.sec_tit.type2 h2 {
  text-align: left;
}

.sec_tit h2 em {
  color: var(--main-brand-color);
}

.sec_tit.type2 .more_btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 282px;
  height: 60px;
  border-radius: 10px;
  background: var(--main-brand-color);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: all 0.3s;
}

.sec_tit.type2 .more_btn:hover {
  opacity: 0.9;
}

.sec_tit p {
  font-weight: 500;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: rgba(71, 84, 103, 1);
}
