@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");



html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family:
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.layout-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
  line-height: 36.982px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  line-height: normal;
  word-break: keep-all;
}

li,
a {
  word-break: keep-all;
}

a {
  cursor: pointer;
}

textarea {
  resize: none;
}

button:hover {
  cursor: pointer;
  opacity: 0.8;
}

.btn-start {
  display: flex;
  width: 110px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #4483f9;
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.site-header {
  background-color: #fff;
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 999;
  width: 100%;
}

.header-inner {
  display: flex;
  height: 80px;
  padding: 10px 22px;
  align-items: center;
  justify-content: space-between;

  max-width: 1440px;
  margin: 0 auto;
}

.header-inner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.header-inner .header-left {
  display: flex;
  align-items: center;
  gap: 70px;
}

.header-inner .logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #000;
  line-height: normal;
  display: flex;
  align-items: center;
}

.header-inner .main-nav {
  display: flex;
  gap: 40px;
}

.header-inner .main-nav a {
  color: rgba(51, 65, 85, 0.50);
  font-size: 14px;
  padding: 10px;
  font-weight: 600;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* border-bottom: 1px solid #4483F9;
        color: #334155;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px; */

.header-inner .main-nav a.active {
  border-bottom: 1px solid #4483F9;
  color: #000;
  font-weight: 600;
}

.header-inner .main-nav a:first-child::before {
  display: none;
}

.header-inner .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-consult {
  color: #171719;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  display: flex;
  padding: 7px 14px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

/* 모바일 메뉴 토글 버튼 */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #222;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* 모바일 네비게이션 */
.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1.5px solid #e5e7eb;
  flex-direction: column;
  padding: 0;
  z-index: 998;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  display: none;
}

.mobile-nav a {
  padding: 15px 20px;
  color: #364153;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a.active {
  color: #000;
  font-weight: 600;
}

/* footer */
.site-footer {
  /* background: #1a1a1a; */
  background: #f4f3f6;
  color: #334155;
  padding: 88px 0;
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 400;
  line-height: 24px;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-info__row {
  display: flex;
  gap: 10px 100px;
}

.footer-info__row:last-child {
  gap: 20px;
}

.footer-info__row:last-child .info-item {
  width: fit-content;
}

.footer-info__row .info-item {
  width: 345px;
  color: #334155;
  font-size: 14px;
  font-weight: 400;
  line-height: 23.99px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 0;
  margin-top: 40px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.3); */
  border-top: 1px solid #334155;
}

.footer-bottom__links {
  display: flex;
  gap: 15px;
}

.footer-bottom__links a,
.footer-bottom__copyright {
  text-decoration: none;
  line-height: normal;
  color: #334155;
  font-size: 14px;
  font-weight: 400;
}

.footer-bottom__links a.highlight {
  font-weight: 700;
}



.section-header {
  text-align: center;
  padding: 0;
}

/* --- 공통 타이틀 & 서브타이틀 (Hero, Section01 제외) --- */
.section-header__title {
  color: #1c1c1c;
  font-size: 48px;
  font-weight: 700;
  line-height: 72px;
  margin-bottom: 28px;
}

.section-header__subtitle {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 24px;
  font-weight: 600;
}

.section-header__desc {
  color: #757575;
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 30px;
  font-size: 20px;
}

.section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 40px;
}

.required {
  color: #F00;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

@media (max-width: 1280px) {
  .section-header__desc {
    font-size: 18px;
    line-height: 24px;
  }

  .mobile-nav.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .site-footer {
    padding: 0;
  }

  .footer-container {
    padding: 62px 24px;
  }

  .footer-info__row {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-bottom__links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .section-header__desc {
    font-size: 16px;
    line-height: 20px;
  }

  .partner-list {
    flex-direction: column;
  }
}

main {
  position: relative;
  padding-top: 80px;
}

/* 홈으로 돌아가기 버튼 */
.back-button-section {
  background: #fff;
  padding: 59px 0 52px 0;
}

.back-to-home {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.back-to-home span {
  color: #3182f6;
  font-size: 20px;
  line-height: 32px;
}

/* --- 브레드크럼 --- */
.breadcrumbs {
  display: none;
  padding: 120px 0 60px 0;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 9px;
}

.breadcrumbs-home {
  color: #4a5565;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
}

.breadcrumbs-separator {
  color: #4a5565;
  font-size: 18px;
  line-height: 26px;
}

.breadcrumbs-page {
  color: #62748e;
  font-size: 18px;
  line-height: 27px;
}

.section-container,
.page-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 20px;
}

.section-container.reverse {
  flex-direction: row-reverse;
}

.page-container {
  padding: 0 20px;
  width: 100%;
}

.page-container h2 {
  font-weight: 500;
  line-height: normal;
  color: #0a0a0a;
  font-size: 40px;
  margin-bottom: 20px;
}

.page-container p {
  color: #4a5565;
  text-align: center;
  font-size: 24px;
  line-height: 37px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
}

/* --- page intro image --- */
.page-intro-image {
  position: relative;
  height: 600px;
}

.page-intro-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-intro-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;

  /* IE 11 대응 */
  /* height: 400px; */
  /* 모던 브라우저 대응 */
  /* height: clamp(400px, 40.62vw, 960px); */
  /* height: 960px; */
}

.page-intro-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  z-index: 3;
  user-select: none;
}

.page-intro-title h2 {
  letter-spacing: -0.6px;
  display: flex;
  flex-direction: column;
  gap: 20px;

  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.page-intro-title h2 .title-desc {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 300;
  line-height: normal;
  padding: 0 20px;
}

.page-intro-title h2 .title-desc.highlight {
  font-weight: 600;
}

.highlight {
  font-weight: 700;
}

.btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-spinner {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s;
}

.loading-spinner span {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#header-placeholder {
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 999;
  width: 100%;
}

/* =================================
 * 서비스 비교 섹션 (Comparison Section)
 * ================================= */
.section-comparison {
  background: linear-gradient(0deg, #fff -4.16%, #f4f3f6 94.19%);
}

.section-comparison .section-container {
  flex-direction: column;
  align-items: center;
  padding: 145px 20px;
}

.section-comparison__header {
  text-align: center;
  margin-bottom: 45px;
}

.btn-comparison-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 33px;
  background: #4483f9;
  color: #fff !important;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  margin: 0 auto;
  margin-bottom: 45px;
  width: fit-content;
  transition: all 0.3s ease;
  line-height: normal;
}

.btn-comparison-cta:hover {
  background: #3366cc;
  box-shadow: 0 8px 20px rgba(68, 131, 249, 0.3);
}

.comparison-table {
  width: 100%;
  max-width: 1200px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.comparison-row {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row--last .comparison-cell:first-child {
  border-radius: 0 0 0 30px;
}

.comparison-row--last .comparison-cell:last-child {
  border-radius: 0 0 30px 0;
}

.comparison-cell {
  min-height: 90px;
  flex: 1;
  padding: 19px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #1c1c1c;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  gap: 2px;
}

.comparison-cell__value {
  width: fit-content;
  text-align: left;
  min-width: 87px;
  padding-left: 10px;
}

.comparison-cell__value span {
  color: #1c1c1c;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
}

.comparison-cell__desc {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 24px;
}

.comparison-cell:first-child {
  flex: 1.2;
  font-size: 16px;
}

.comparison-cell--highlight {
  background: rgba(68, 131, 249, 0.5);
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  position: relative;
  padding-left: 30px;
}

.comparison-row--header .comparison-cell {
  color: #1c1c1c;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.comparison-row--header .comparison-cell--highlight {
  background: #4483f9;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}

.check-icon {
  position: relative;
  color: #fff;
  padding-left: 20px;
  text-align: center;
}

.check-icon span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 24px;
}

.check-icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%234483F9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
}

/* =================================
 * CTA 섹션 스타일
 * ================================= */
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
}

.btn-cta {
  display: flex;
  height: 42px;
  padding: 8px 33px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background: #4483f9;
  color: #fff;
  font-size: 16.614px;
  font-weight: 700;
  line-height: 24.922px;
}

.cta-text {
  color: #1b1e26;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}

.cta-text a {
  color: #235bf5;
  padding: 0 3px;
}

/* =================================
 * 자주 묻는 질문 (FAQ Global)
 * ================================= */
.section-faq {
  background: #fff;
}

.section-faq .section-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 0;
}

.faq-title {
  color: #1c1c1c;
  font-size: 48px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 20px;
}

.faq-filters {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-filter {
  padding: 8px 12px;
  border-radius: 100px;
  border: 1px solid #4483f9;
  background: #fff;
  color: #4483f9;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-filter:hover {
  background: rgba(68, 131, 249, 0.05);
}

.faq-filter.active {
  background: #4483f9;
  color: #fff;
}

.faq-accordion {
  width: 100%;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  width: 100%;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question span {
  color: #0f172b;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.2px;
}

.arrow-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  background: #e1ecf9;
}

.faq-item.active .arrow-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer-content {
  padding: 36px 32px;
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.faq-answer__label {
  font-weight: 700;
  color: #4483f9;
  font-size: 18px;
}

.faq-answer__text {
  text-align: left;
  padding-right: 44px;
}

.faq-answer-content p {
  color: #0f172b;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.2px;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}


.faq-link {
  color: #225cee;
  font-weight: 400;
}

.hl-blue {
  color: #225cee;
}

.text-highlight {
  font-weight: 400;
}

/* =================================
 * 상담 신청 폼 (Global Consult Form)
 * ================================= */
.consult-form-box {
  width: 100%;
  max-width: 520px;
  background-color: #ffffff;
  padding: 36px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.consult-form__title {
  color: #101828;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 25px;
  text-align: left;
}

.consult-form__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consult-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.consult-form__label {
  font-size: 13px;
  font-weight: 700;
  color: #364153;
  padding-left: 5px;
}

.consult-form__input-wrapper {
  position: relative;
  width: 100%;
}

.consult-form__input {
  width: 100%;
  padding: 12px 16px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
  min-height: 47px;
}

.consult-form__input.is-invalid {
  border-color: #f04438 !important;
  background-color: #fffbfa !important;
}

.consult-form__error-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #f04438;
  display: none;
  pointer-events: none;
}

.consult-form__input.is-invalid~.consult-form__error-icon {
  display: block;
}

.consult-form__error-message {
  font-size: 12px;
  color: #f04438;
  margin-top: 2px;
  padding-left: 5px;
  display: none;
  text-align: left;
}

.consult-form__group.is-invalid .consult-form__error-message {
  display: block;
}

.consult-form__input::placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.consult-form__input:focus {
  outline: none;
  border-color: #4483f9;
  background-color: #ffffff;
}

.consult-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2399a1af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.consult-form__submit {
  width: 100%;
  height: 54px;
  background-color: #4483f9;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  font-family: 'Pretendard', sans-serif;
  position: relative;
  overflow: hidden;
}

.consult-form__submit:disabled {
  background-color: #b2ccff;
  cursor: not-allowed;
}

.btn-text {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}

.consult-form__submit svg {
  transition: opacity 0.2s;
}

.consult-form__submit:hover {
  background-color: #2b65f0;
}

.consult-form__footer {
  margin-top: 16px;
  word-break: keep-all;
  color: #99A1AF;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

/* Common Consultation CTA Section */
.consult-section {
  padding: 160px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F5FF 100%);
}

.consult-section.membership {
  background: linear-gradient(180deg, #FFF 0%, #F5F0FF 100%);
}

.consult-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.consult-section__info {
  flex: 1;
  text-align: left;
  max-width: 480px;
  min-width: 250px;
}

.consult-section__tagline {
  font-size: 13px;
  font-weight: 700;
  color: #4483f9;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.consult-section__title {
  color: #101828;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.consult-section__desc {
  font-size: 16px;
  color: #6a7282;
  line-height: 24px;
  margin-bottom: 32px;
  word-break: keep-all;
}

.consult-section__benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.consult-section__benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.consult-section__benefit-icon {
  width: 44px;
  height: 44px;
  background-color: #eef3ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4483f9;
  flex-shrink: 0;
}

.consult-section.membership .consult-section__benefit-icon {
  background: #FAF5FF;
}

.consult-section__benefit-icon img,
.consult-section__benefit-icon svg {
  width: 20px;
  height: 20px;
}

.consult-section__benefit-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.consult-section__benefit-title {
  font-size: 15px;
  font-weight: 700;
  color: #101828;
}

.consult-section__benefit-desc {
  font-size: 13px;
  color: #6a7282;
  margin: 0;
}

.consult-form__privacy {
  margin: 20px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 4px;
}

.consult-form__privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.consult-form__privacy-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.consult-form__privacy input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid #d0d5dd;
  border-radius: 6px;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  background-color: #ffffff;
}

.consult-form__privacy input[type="checkbox"]:checked {
  background-color: #4483f9;
  border-color: #4483f9;
}

.consult-form__privacy input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consult-form__privacy-label span {
  font-size: 14px;
  color: #475467;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.consult-form__privacy-toggle {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #98A2B3;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  border-radius: 50%;
}

.consult-form__privacy-toggle:hover {
  background-color: #F2F4F7;
  color: #667085;
}

.consult-form__privacy-toggle img {
  width: 20px;
  height: 20px;
  display: block;
}

.consult-form__privacy-toggle.active {
  transform: rotate(180deg);
}

.consult-form__privacy-content {
  display: none;
  background-color: #F9FAFB;
  border: 1px solid #EAECF0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #667085;
  line-height: 1.6;
  text-align: left;
}

.consult-form__privacy-content p {
  margin-bottom: 12px;
  line-height: 2;
}

.consult-form__privacy-content p:last-child {
  margin-bottom: 0;
}

.consult-form__privacy-content strong {
  display: block;
  color: #344054;
  margin-bottom: 4px;
  font-weight: 600;
}

.link-login {
  color: #334155;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}


@media (max-width: 1280px) {

  /* 선택자 간소화 */
  .main-nav,
  .header-right .link-login {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .btn-consult {
    display: none;
    margin-right: 10px;
  }

  .text-break {
    display: block;
  }

  .section-header__title {
    font-size: 40px;
    margin-bottom: 28px;
    line-height: 1.5;
  }

  .section-header__subtitle {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 28px;
  }

  .section-cta .section-container {
    padding: 48px;
  }

  .cta-title {
    margin: 0;
    line-height: normal;
  }

  .cta-content {
    gap: 40px;
  }

  .cta-text {
    font-size: 15px;
  }

  .section-comparison .section-container {
    padding: 66px 20px;
  }

  .btn-comparison-cta {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .page-intro-title h2 {
    font-size: 38px;
  }

  .section-faq {
    padding: 80px 20px;
  }

  .page-intro-title h2 .title-desc {
    font-size: 26px;
  }

  .page-intro-title h2 .title-desc br {
    display: none;
  }
}

@media (max-width: 768px) {
  .consult-form-box {
    padding: 24px;
    border-radius: 12px;
  }

  .section-faq .section-container {
    padding: 0 20px;
  }

  .section-faq {
    padding: 80px 0;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer-content {
    padding: 24px;
    font-size: 15px;
  }

  .faq-title {
    font-size: 24px;
  }

  .faq-filter {
    padding: 8px 10px;
    font-size: 12px;
  }

  h3,
  h4,
  h5,
  h6,
  p {
    line-height: 1.4;
  }

  /* 모바일 헤더 스타일 (1280px 위로 이동됨) */
  .site-header .header-left {
    gap: 20px;
  }

  .back-button-section {
    padding: 30px 0;
  }

  .breadcrumbs {
    padding: 60px 0;
  }

  .page-container {
    padding: 0 20px;
    max-height: unset;
  }

  .page-container h2 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .page-container p {
    font-size: 16px;
    line-height: 1.8;
  }

  .section-header__title {
    font-size: 26px;
  }

  .footer-content {
    flex-direction: column;
    gap: 0;
  }

  .footer-item,
  .footer-logo {
    display: none;
  }

  .footer-logo img {
    width: 50%;
  }

  .footer-logo p {
    font-size: 15px;
  }

  .footer-contact {
    width: 100%;
    gap: 0;
  }

  .footer-contact .item-data {
    line-height: 32px;
  }

  .footer-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .footer-content-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 10px;
    gap: 20px;
  }

  .footer-content-item ul {
    gap: 15px;
    margin-top: 10px;
  }

  .footer-contact-wrapper {
    flex-wrap: wrap-reverse;
    gap: 50px;
  }

  .footer-copyright {
    width: 100%;
    align-items: flex-start;
  }

  .footer-copyright p {
    font-size: 13px;
    font-weight: 300;
  }

  .item-title {
    line-height: 1.4;
  }

  .quick-menu-list .item-data {
    font-weight: 500;
    line-height: 32px;
    width: max-content;
  }

  .page-intro-image-wrapper::before,
  .page-intro-image,
  .page-intro-image img {
    height: 400px;
  }

  .section-container,
  .page-section {
    height: auto;
  }

  .page-section {
    padding: 50px 0;
  }

  .page-intro-title h2 {
    font-size: 25px;
    gap: 5px;
  }

  .page-intro-title h2 .title-desc {
    margin-top: 15px;
    font-size: 20px;
    padding: 0 20px;
    line-height: 1.4;
  }

  .footer-content-item-inner {
    flex-wrap: wrap;
    gap: 50px;
    justify-content: flex-start;
  }

  .footer-quick-menu {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
  }

  .mobile-break {
    display: block;
  }

  .comparison-table {
    margin-top: 40px;
  }

  .comparison-cell {
    padding: 15px 10px;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .comparison-row--header .comparison-cell {
    font-size: 14px;
    font-weight: 700;
  }

  .comparison-cell:first-child {
    justify-content: flex-start;
    text-align: left;
    padding-left: 15px;
    flex: 1.2;
    align-items: center;
    justify-content: center;
  }

  .comparison-cell__value {
    font-size: 13px;
    line-height: 1.4;
    min-width: unset;
    padding-left: 0;
  }

  .comparison-cell--highlight .comparison-cell__value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .check-icon::before {
    left: 0;
    width: 18px;
    height: 18px;
  }

  .check-icon {
    padding-left: 22px;
  }

  .comparison-cell__desc {
    font-size: 11px;
    display: block;
    margin-top: 2px;
    opacity: 0.8;
  }

  .btn-comparison-cta {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .consult-section {
    padding: 80px 0;
  }

  .consult-section__container {
    padding: 0 20px;
    gap: 40px;
  }

  .consult-section__title {
    font-size: 26px;
    line-height: 1.3;
  }

  .consult-section__desc {
    font-size: 14px;
  }
}
