
.mainWrap{
	position:relative;
	width:100%;
	margin:0;
}

/*-----------------------------------------
# 메인 공통
-------------------------------------------*/
/* ----- Head ----- */
.cont__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}


.cont__linet {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
font-family: pretendard-700;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1.4px;
  color: #c99e67;
}

.cont__linet-bar {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #c99e67;
  flex-shrink: 0;
}
@media (max-width: 767px) {
	 /* Head */
  .cont__head {
	gap: 10px;
  }
	
	.cont__linet { display: none; }   
}

/*-----------------------------------------
# 메인 비주얼
-------------------------------------------*/
/* ===== Base : PC (intro_pc 1920px 기준) ===== */
.intro {
  position: relative;
  width: 100%;
  padding: 60px clamp(40px, 12.5vw, 240px) 0;
  background: #ffffff;
  color: #0c1c38;
font-family: pretendard-400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

.intro *,
.intro *::before,
.intro *::after { box-sizing: border-box; }

.intro__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ----- Hero Card (PC: row, Mo: col) ----- */
.intro__hero-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background: #ffffff;
}

/* ----- Visual : image + hero text + stats ----- */
.intro__visual {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  
      background-image: url(/public/img/main/intro_bg.webp);
      background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

/* BG : absolute fill inside visual on PC */
.intro__bg {
	display:none;
    opacity: 0;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: 16px 0 0 16px;
    pointer-events: none;
}

.intro__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.intro__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 28, 56, 0.8) 20.86%,
    rgba(12, 28, 56, 0) 66.33%
  );
}

/* Hero text block */
.intro__hero {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.intro__tag {
  display: inline-block;
  padding: 6px 10px;
  background: #c99e67;
  border-radius: 4px;
  color: #0c1c38;
font-family: pretendard-700;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  white-space: nowrap;
}

/* .intro__title { */
  /* margin: 0; */
/* font-family: pretendard-700; */
  /* font-weight: 700; */
  /* font-size: clamp(26px, 2.083vw, 40px); */
  /* line-height: 1.3;  */
  /* color: #ffffff; */
  /* word-break: keep-all; */
/* } */
.intro__title {
    line-height: 52px;
    margin: 0;
    font-family: pretendard-700;
    font-weight: 700;
    font-size: 40px;
    color: #ffffff;
    word-break: keep-all;
}
.intro__title-line { display: block; }

.intro__subtitle {
  margin: 0;
font-family: pretendard-500;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.75);
  word-break: keep-all;
}
.intro__subtitle-line { display: inline; }
.intro__subtitle-line--mo { display: none; }

/* Stats bar */
.intro__stats {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 28px 30px;
  border-radius: 10px;
  background: rgba(28, 45, 76, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  gap: 2px;
  width: 100%;
}

.intro__stat {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px;
}
.intro__stat:first-child { padding-left: 0; padding-right: 20px; }
.intro__stat:last-child { padding-right: 0; }

.intro__stat-title {
font-family: pretendard-800;
  font-weight: 800;
  font-size: clamp(16px, 1.146vw, 22px);
  line-height: 26px;
  color: #c99e67;
  white-space: nowrap;
}

.intro__stat-desc {
font-family: pretendard-500;
  font-weight: 500;
  font-size: clamp(14px, 0.833vw, 16px);
  line-height: 24px;
  color: #ffffff;
  white-space: nowrap;
}

/* ----- Form panel (right on PC) ----- */
.intro__form {
  flex: 0 0 420px;
  width: 420px;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.intro__form-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.intro__form-title {
  margin: 0;
font-family: pretendard-600;
  font-weight: 600;
  font-size: 26px;
  line-height: 38px;
  color: #0c1c38;
  word-break: keep-all;
}

.intro__form-sub {
  margin: 0;
font-family: pretendard-400;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #888888;
}

.intro__form-body {
  display: flex;
  flex-direction: column;
  gap: 0px;
  width: 100%;
}

.intro__form-fields {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.intro__field {
  display: block;
  width: 100%;
}

.intro__field input {
  display: block;
  width: 100%;
  padding: 16px;
  border: 0;
  border-radius: 10px;
  background: #f4f4f4;
font-family: pretendard-400;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #0c1c38;
  outline: none;
  box-sizing: border-box;
  transition: background-color .2s ease, box-shadow .2s ease;
}
.intro__field input::placeholder { color: #6c7280; }
.intro__field input:focus { background: #ffffff; box-shadow: inset 0 0 0 1px #0c1c38; }



.inq_priCheckArea {
    position: Relative;
    margin: 16px 0 8px 0;
}
.inq_priCheckArea input[type="checkbox"]{ 
	position:absolute; 
    width:1px; 
    height:1px; 
    padding:0; 
    margin:-1px; 
    overflow:hidden; 
    clip:rect(0,0,0,0); 
    border:0; 
}
.inq_priCheckArea input[type="checkbox"] + label {
    display: flex;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    text-align: left;
    color: #444;
    font-family: pretendard-500;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height:24px;
    justify-content: space-between;
    align-items: center;
}
.inq_priCheckArea input[type="checkbox"] + label:before{ 
	content:''; 
    position:absolute; 
    left:0; 
    top:0;
    width:24px;
    height:24px;
    text-align:center; 
    background:#fff; 
    border:none; 
    box-sizing:border-box; 
	background:url(../img/common/check_before.png) no-repeat center/cover;
}
.inq_priCheckArea input[type="checkbox"]:checked + label:after{ 
	content: ''; 
	position:absolute; 
	top:0;
	left:0; 
	width:24px;
	height:24px;
	background:url(../img/common/check_after.png) no-repeat center/cover;
}

/* Submit button */
.intro__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 18px;
  border: 0;
  border-radius: 10px;
  background: #0c1c38;
  color: #ffffff;
font-family: pretendard-700;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  cursor: pointer;
  transition: opacity .2s ease;
}
.intro__submit:hover { opacity: 0.92; }

.intro__submit-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: #ffffff;
  -webkit-mask: url('/public/img/main/icon_arrow_right.png') no-repeat center / contain;
  mask: url('/public/img/main/icon_arrow_right.png') no-repeat center / contain;
}

/* ----- Contacts bar ----- */
.intro__contacts {
  list-style: none;
  margin: 0;
  padding: 40px;
  background: #f7f5f1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.intro__contact {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  overflow: hidden;
}

.intro__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #ffffff;
  position: relative;
}
.intro__contact-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  background: #0c1c38;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.intro__contact-icon--phone::before    { -webkit-mask-image: url('/public/img/main/icon_phone.png');           mask-image: url('/public/img/main/icon_phone.png'); }
.intro__contact-icon--email::before    { -webkit-mask-image: url('/public/img/main/icon_email.webp');           mask-image: url('/public/img/main/icon_email.webp'); }
.intro__contact-icon--location::before { -webkit-mask-image: url('/public/img/main/icon_spot.webp'); mask-image: url('/public/img/main/icon_spot.webp'); }
.intro__contact-icon--clock::before    { -webkit-mask-image: url('/public/img/main/icon_clock.webp');           mask-image: url('/public/img/main/icon_clock.webp'); }

.intro__contact-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1 1 auto;
}

.intro__contact-label {
font-family: pretendard-500;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #6c7280;
}

.intro__contact-value {
font-family: pretendard-600;
  font-weight: 600;
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: 28px;
  color: #0c1c38;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1800px) {
	.intro {
		padding: 60px 40px 0 40px;
	}
}
@media (max-width: 1600px) {
	.intro {
		padding: 60px 40px 0 40px;
	}
	
	
	.intro__contacts {
		flex-wrap: wrap;
		gap: 20px;
	}
	.intro__contact {
		flex: 0 0 calc(50% - 1.1rem);
	}
}
@media (max-width: 1300px) {
	.intro {
		padding: 60px 30px 0 30px;
	}
}
@media (max-width: 1100px) {
	.intro__visual {
		background-position: 90%;
	}
	.intro__form {
		flex: 0 0 340px;
		width: 340px;
		padding: 30px;
		gap: 20px;
	}
}
@media (max-width: 991px) {
	.intro__title {
		line-height: 44px;
		font-size: 34px;
	}
}
/* ===== Mobile : max-width 767px (intro_mo 375px 기준) ===== */
@media (max-width: 767px) {

  /* Section : full-bleed, 40px top */
  .intro {
    padding: 40px 0 0;
  }

  .intro__inner {
    gap: 0;
  }

  /* BG : becomes section-wide top background, 570px tall */
  .intro__bg {
	  	display:block;
    opacity: 1;
    position: absolute;
    inset: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 570px;
    border-radius: 0;
    z-index: 0;
  }

  .intro__bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.30) 40%,
      rgba(0, 0, 0, 0.55) 100%
    );
  }

  /* Hero card : column, no rounded, no shadow */
  .intro__hero-card {
    flex-direction: column;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    background: transparent;
    position: relative;
    z-index: 1;
  }

  /* Visual : becomes a transparent flex column wrapper */
  .intro__visual {
    flex: none;
    min-height: 0;
    padding: 0;
    justify-content: flex-start;
    background: transparent;
  }

  /* Hero text : centered, white, gap 16 */
  .intro__hero {
    padding: 0 20px;
    align-items: center;
    text-align: center;
    gap: 16px;
    /* Push stats bar down so background image is visible between them */
    margin-bottom: 260px;
  }

  .intro__tag {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.4;
  }

  .intro__title {
    font-size: 26px;
    line-height: 1.4;
    text-align: center;
    color: #ffffff;
    width: 100%;
  }

  .intro__subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    width: 100%;
  }
  .intro__subtitle-line { display: block; }
  .intro__subtitle-line--pc { display: none; }
  .intro__subtitle-line--mo { display: block; }

  /* Stats : rounded top, full-width, centered items, overlaps form by -16 */
	 .intro__stats {
		border-radius: 16px 16px 0 0;
		padding: 4px 16px 16px 16px;
		gap: 13px;
		margin: 0;
		z-index: 2;
	}

  .intro__stat {
    align-items: center;
    text-align: center;
    padding: 20px 0;
    gap: 4px;
  }
  .intro__stat:first-child,
  .intro__stat:last-child { padding-left: 0; padding-right: 0; }

  .intro__stat-title {
    font-size: 16px;
    line-height: 20px;
  }
  .intro__stat-desc {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
  }

  /* Form : full-width, rounded top, padding 20 */
	 .intro__form {
		margin: -16px 0 0 0;
		flex: none;
		width: 100%;
		padding: 20px;
		border: 0;
		border-radius: 16px 16px 0 0;
		gap: 14px;
		background: #ffffff;
		position: relative;
		z-index: 2;
	}

  .intro__form-head { gap: 0; }
  .intro__form-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
  }
  .intro__form-sub { display: none; }   /* not in mobile design */

  .intro__form-body { gap: 0; }
  .intro__form-fields { gap: 4px; }

  .intro__field input {
    padding: 16px;
    border-radius: 8px;
    background: #f7f7f7;
    font-size: 16px;
  }
  .intro__field input::placeholder { color: #999ea8; }
	.inq_priCheckArea {
		margin: 14px 0 6px 0;
	}
  .intro__submit {
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    gap: 8px;
  }

  /* Contacts : stacked, soft bg */
  .intro__contacts {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		padding: 30px 20px;
		border-radius: 0;
		justify-content: flex-start;
	}

  .intro__contact {
		flex: initial;
		width: 100%;
		gap: 10px;
	}

  .intro__contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
  .intro__contact-icon::before {
    width: 18px;
    height: 18px;
  }

  .intro__contact-label {
    font-size: 13px;
    line-height: 16px;
  }

  .intro__contact-value {
    font-size: 16px;
    line-height: 24px;
    white-space: normal;
  }
}

/* ===== Optional reveal animation ===== */
.intro .is-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.intro .is-reveal.is-in { opacity: 1; transform: none; }


/*-----------------------------------------
# 메인 지금 단지에서 이런 문제 겪고 계신가요?
-------------------------------------------*/
/* ----- Base (PC) ----- */
.danji {
  --brand-main: #0c1c38;
  --brand-sub:  #c99e67;
  --bg-soft:    #f7f5f1;
  --bg-white:   #ffffff;
  --text-strong:#0c1c38;
  --text-muted: #6c7280;

  width: 100%;
  box-sizing: border-box;
  padding: clamp(60px, 6.25vw, 120px) clamp(40px, 12.5vw, 240px);
  background: var(--bg-soft);
font-family: pretendard-400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.danji *,
.danji *::before,
.danji *::after { box-sizing: border-box; }

/* ----- Inner : 좌 타이틀(flex) + 우 그리드(952px) ----- */
.danji__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
}

/* ----- Head (타이틀 영역) ----- */
.danji__head {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;   /* TitleRow : 하단 정렬 */
  gap: 16px;
}

.danji__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.danji__eyebrow-bar {
  width: 30px;
  height: 2px;
  background: var(--brand-sub);
  flex-shrink: 0;
}
.danji__eyebrow-text {
font-family: pretendard-700;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1.4px;
  color: var(--brand-sub);
  white-space: nowrap;
}

.danji__title {
  margin: 0;
font-family: pretendard-800;
  font-weight: 800;
  font-size: 50px;
  line-height: 66px;
  color: var(--text-strong);
  word-break: keep-all;
}
.danji__title-line { display: block; }
.danji__title-line--accent { color: var(--brand-sub); }

.danji__subtitle {
  margin: 0;
font-family: pretendard-400;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  color: var(--text-muted);
  word-break: keep-all;
}

/* ----- Grid (우측) ----- */
.danji__grid {
  flex: 0 1 952px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 카드 4개 : 2 x 2 */
.danji__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* 카드 */
.danji__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 20px;
  row-gap: 20px;
  background: var(--bg-white);
  border-radius: 16px;
  padding: 30px;
  overflow: hidden;
}

.danji__qbadge {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: start;
  display: inline-block;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--brand-sub);
  color: #fff;
font-family: pretendard-800;
  font-weight: 800;
  font-size: 16px;
  line-height: 16px;
  white-space: nowrap;
}

.danji__qicon {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 10px 10px 15px rgba(12, 28, 56, 0.3);
}
.danji__qicon img {
  display: block;
  width: 26px;
  height: 26px;
}

.danji__card-text {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
font-family: pretendard-600;
  font-weight: 600;
  font-size: 22px;
  line-height: 36px;
  color: var(--text-strong);
  word-break: keep-all;
}

/* CTA */
.danji__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 32px;
  border: 1px solid var(--brand-main);
  border-radius: 10px;
  background: var(--bg-white);
  text-decoration: none;
  transition: background-color .2s ease;
}
.danji__cta-text {
font-family: pretendard-500;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: -0.36px;
  color: var(--brand-main);
  white-space: nowrap;
}
.danji__cta-br { display: none; }       /* PC : 한 줄 */
.danji__cta-arrow {
  flex-shrink: 0;
  display: inline-flex;
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}
.danji__cta-arrow img { display: block; width: 14px; height: 14px; }
.danji__cta:hover { background: #fbf9f4; }
.danji__cta:hover .danji__cta-arrow { transform: translateX(4px); }

@media (max-width: 1800px) {
	.danji {
		padding: 120px 40px;
	}
	.danji__inner {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		gap: 40px;
		flex-direction: column;
	}
	.danji__head {
		width: 100%;
	}
	.danji__grid {
		width: 100%;
		flex: 0 0 calc(100% - 0rem);
	}
}

@media (max-width: 1600px) {
	.danji {
		padding: 120px 40px;
	}
}
@media (max-width: 1300px) {
	.danji {
		padding: 100px 30px;
	}
}

/* =========================================================
   Mobile : max-width 768px (danji_mo 기준)
   ========================================================= */
@media (max-width: 768px) {
  .danji {
    padding: 50px 20px;
  }

  .danji__inner {
	  display: block;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }

  /* Head */
  .danji__head {
    gap: 10px;
    justify-content: flex-start;
  }
  .danji__eyebrow { display: none; }          /* 모바일 미표시 */

  .danji__title {
    font-size: 24px;
    line-height: 32px;
  }
  /* "이런 문제 겪고 계신가요?" 한 줄로 */
  .danji__title-seg { display: inline; }

  .danji__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  /* Grid */
  .danji__grid { margin:30px 0 0 0;gap: 20px; }

  /* 카드 : 1열 */
  .danji__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* 카드 : 좌(뱃지+텍스트) / 우 아이콘 */
  .danji__card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 16px;
    border-radius: 10px;
  }
  .danji__qbadge {
    align-self: flex-start;
    padding: 4px 8px;
    font-size: 10px;
    line-height: 12px;
  }
  .danji__qicon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    box-shadow: 6px 6px 10px rgba(12, 28, 56, 0.3);
  }
  .danji__qicon img {
    width: 17.33px;
    height: 17.33px;
  }
  .danji__card-text {
    font-size: 18px;
    line-height: 24px;
  }

  /* CTA : 2줄 + 좌측 정렬 */
  .danji__cta {
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  .danji__cta-text {
    flex: 1 1 0;
    min-width: 0;
    font-family: pretendard-400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    white-space: normal;
  }
  .danji__cta-br { display: inline; }         /* 모바일 : 줄바꿈 */
}

/* ----- (선택) 스크롤 등장 애니메이션 : JS와 연동 ----- */
.danji .is-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.danji .is-reveal.is-in {
  opacity: 1;
  transform: none;
}

/*-----------------------------------------
# 메인 소송, 꼭 안 하셔도 괜찮습니다.
-------------------------------------------*/
/* ----- Base (PC) ----- */
.soreq {
  --bg-dark:   #0c1c38;
  --brand-sub: #c99e67;
  --text-white:#ffffff;

  width: 100%;
  box-sizing: border-box;
  padding: clamp(60px, 6.25vw, 120px) clamp(40px, 12.5vw, 240px);
  background: var(--bg-dark);
font-family: pretendard-400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.soreq *,
.soreq *::before,
.soreq *::after { box-sizing: border-box; }

.soreq__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ----- Header ----- */
.soreq__head {
  display: flex;
  flex-direction: column;
}

.soreq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.soreq__eyebrow-bar {
  width: 30px;
  height: 2px;
  background: var(--brand-sub);
  flex-shrink: 0;
}
.soreq__eyebrow-text {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1.4px;
  color: var(--brand-sub);
  white-space: nowrap;
}

.soreq__title {
  margin: 0;
font-family: pretendard-800;
  font-weight: 800;
  font-size: 50px;
  line-height: 66px;
  color: var(--text-white);
  word-break: keep-all;
}

.soreq__lead {
  margin: 20px 0 0;
font-family: pretendard-300;
  font-weight: 300;            /* Light */
  font-size: 32px;
  line-height: 44px;
  color: var(--brand-sub);
  word-break: keep-all;
}

/* ----- Steps : 3 columns ----- */
.soreq__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 54px;
  align-items: stretch;
}

.soreq__step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-top: 1px solid var(--text-white);
  padding-top: 30px;
}

.soreq__step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.soreq__step-num {
    letter-spacing: 1.92px;
    font-family: pretendard-700;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    /* letter-spacing: 1.6px; */
    color: var(--brand-sub);
    white-space: nowrap;
}
.soreq__step-check {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-sub);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.soreq__step-check svg {
  display: block;
  width: 14px;
  height: 14px;
}

.soreq__step-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.soreq__step-title {
  margin: 0;
font-family: pretendard-700;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  color: var(--text-white);
  word-break: keep-all;
}
.soreq__step-desc {
  margin: 0;
font-family: pretendard-400;
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
  color: var(--text-white);
  word-break: keep-all;
}
@media (max-width: 1800px) {
	.soreq {
		padding: 120px 40px;
	}
}
@media (max-width: 1300px) {
	.soreq {
		padding: 100px 30px;
	}
}
/* =========================================================
   Mobile : max-width 768px (soreq_mo 기준)
   ========================================================= */
@media (max-width: 768px) {
  .soreq {
    padding: 50px 20px;
  }

  .soreq__inner {
    gap: 30px;
  }

  /* Header */
  .soreq__eyebrow { display: none; }          /* 모바일 미표시 */

  .soreq__title {
    font-size: 24px;
    line-height: 32px;
  }
  .soreq__lead {
    margin-top: 10px;
    font-weight: 500;          /* Medium */
    font-size: 16px;
    line-height: 24px;
  }

  /* Steps : 1열 */
  .soreq__steps {
    flex-direction: column;
    gap: 24px;
  }
  .soreq__step {
    gap: 16px;
    padding-top: 16px;
  }
  .soreq__step-num {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 1.28px;
  }
  .soreq__step-body {
    gap: 10px;
  }
  .soreq__step-title {
    font-size: 20px;
    line-height: 28px;
  }
  .soreq__step-desc {
    font-size: 16px;
    line-height: 24px;
  }
  
  .soreq__step-check {
		width: 36px;
		height: 36px;
	}
}

/* ----- (선택) 스크롤 등장 애니메이션 : JS와 연동 ----- */
.soreq .is-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.soreq .is-reveal.is-in {
  opacity: 1;
  transform: none;
}


/*-----------------------------------------
# 메인 왜 많은 분들이 법무법인 정의 설명회를 먼저 찾을까요?
-------------------------------------------*/
/* ===== Base : PC (sulmy_pc 1920px 기준) ===== */
.sulmy {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(60px, 6.25vw, 120px) clamp(40px, 12.5vw, 240px);
  background: #ffffff;
  color: #0c1c38;
font-family: pretendard-400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

.sulmy *,
.sulmy *::before,
.sulmy *::after { box-sizing: border-box; }

/* ----- BG (top-right decorative) ----- */
.sulmy__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 67.7%;          /* 1300 / 1920 */
  max-width: 1300px;
  height: 730px;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.sulmy__bg-sky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
  display: block;
}

.sulmy__bg-building {
  position: absolute;
  top: 9.6%;             /* 70 / 730 */
  left: 31.5%;           /* (1030-620) / 1300 */
  width: 41.5%;          /* 540 / 1300 */
  height: auto;
  display: block;
}

.sulmy__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(255,255,255,0) 60%, rgba(255,255,255,1) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

/* ----- Inner ----- */
.sulmy__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* ----- Head ----- */
.sulmy__head { width: 100%; }

.sulmy__title {
  margin: 0;
font-family: pretendard-800;
  font-weight: 800;
  font-size: clamp(34px, 2.6vw, 50px);
  line-height: 1.32;                   /* 66/50 */
  color: #0c1c38;
  word-break: keep-all;
}

.sulmy__title-line { display: block; }
.sulmy__title-line--accent { color: #c99e67; }

/* ----- Cards ----- */
.sulmy__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.sulmy__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 350px;
  padding: 36px;
  border-radius: 16px 40px 16px 16px;  /* top-right 40, others 16 */
}

/* PC color pattern : 01-dark / 02-soft / 03-soft / 04-dark */
.sulmy__card--01,
.sulmy__card--04 {
  background: #0c1c38;
  color: #ffffff;
}
.sulmy__card--02,
.sulmy__card--03 {
  background: #f7f5f1;
  color: #0c1c38;
  border: 1px solid rgba(12, 28, 56, 0.06);
}

.sulmy__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.sulmy__num {
font-family: pretendard-700;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 1.6px;
  color: #c99e67;
  white-space: nowrap;
}

.sulmy__icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 14px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sulmy__icon img {
  width: 30px;
  height: 30px;
  display: block;
}

.sulmy__card-body {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.sulmy__card-title {
  margin: 0;
font-family: pretendard-700;
  font-weight: 700;
  font-size: clamp(24px, 1.77vw, 34px);
  line-height: 1.35;                   /* 46/34 */
  color: inherit;
  word-break: keep-all;
}

.sulmy__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sulmy__bullets li {
  display: flex;
  align-items: center;
  gap: 6px;
font-family: pretendard-400;
  font-weight: 400;
  font-size: clamp(15px, 0.94vw, 18px);
  line-height: 1.4;                    /* 24-25 / 18 */
  color: inherit;
  white-space: nowrap;
}

.sulmy__dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 3px;
  background: #c99e67;
  flex-shrink: 0;
}
@media (max-width: 1800px) {
	.sulmy {
		padding: 120px 40px;
	}
}
@media (max-width: 1300px) {
	.sulmy {
		padding: 100px 30px;
	}
}
/* ===== Mobile : max-width 767px (sulmy_mo 375px 기준) ===== */
@media (max-width: 767px) {
  .sulmy {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  /* Re-flow children of inner into the section's flex flow */
  .sulmy__inner { display: contents; }

  .sulmy__head   { order: 1; }
  .sulmy__bg     { order: 2; }
  .sulmy__cards  { order: 3; }

  /* Title */
  .sulmy__title {
    font-size: 24px;
    line-height: 32px;
  }

  /* BG : in-flow, edge-to-edge, overlaps cards by -50px */
  .sulmy__bg {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% + 40px);
    max-width: none;
    height: auto;
    aspect-ratio: 375 / 238;            /* 375 × 238 from Figma */
    margin: 10px -20px -50px;           /* mb -50 = overlap into cards */
    overflow: hidden;
  }

  .sulmy__bg-sky {
    inset: auto;
    width: 147.89%;                     /* w-[147.89%] */
    height: 131.07%;                    /* h-[131.07%] */
	left:0;
    /* left: -23.95%; */
    top: -0.02%;
  }

  .sulmy__bg-building {
    top: 12.6%;                         /* 30 / 238 */
    left: 22.67%;                       /* 85 / 375 */
    width: 61.3%;                       /* 230 / 375 */
  }

  .sulmy__bg-overlay {
    background:
      linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
  }

  /* Cards : single column, 12px gap */
  .sulmy__cards {
    grid-template-columns: 1fr;
    gap: 12px;
    position: relative;
    z-index: 1;
  }

  /* Mobile color pattern : 01-dark / 02-soft / 03-dark / 04-soft */
  .sulmy__card--03 {
    background: #0c1c38;
    color: #ffffff;
    border: none;
  }
  .sulmy__card--04 {
    background: #f7f5f1;
    color: #0c1c38;
    border: 1px solid rgba(12, 28, 56, 0.06);
  }

  /* Card metrics */
  .sulmy__card {
    min-height: 0;
    padding: 16px;
    gap: 20px;
    border-radius: 10px 28px 10px 10px;
  }

  .sulmy__num {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 1.28px;
  }

  .sulmy__icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
  }
  .sulmy__icon img {
    width: 24px;
    height: 24px;
  }

  .sulmy__card-body {
    flex: none;
    justify-content: flex-start;
    gap: 20px;
  }

  .sulmy__card-title {
    font-size: 22px;
    line-height: 30px;
  }

  .sulmy__bullets { gap: 4px; }
  .sulmy__bullets li {
    font-size: 15px;
    line-height: 20px;
    white-space: normal;                /* allow wrap on narrow phones */
  }
}

/* ===== Optional reveal animation ===== */
.sulmy .is-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.sulmy .is-reveal.is-in { opacity: 1; transform: none; }


/*-----------------------------------------
# 메인 설명회 신청 절차
-------------------------------------------*/
/* ===== Base : PC (sulpre_pc 1920px 기준) ===== */
.sulpre {
  width: 100%;
  padding: clamp(60px, 6.25vw, 120px) clamp(40px, 12.5vw, 240px);
  background: #f7f5f1;
  color: #0c1c38;
font-family: pretendard-400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

.sulpre *,
.sulpre *::before,
.sulpre *::after { box-sizing: border-box; }

.sulpre__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* ----- Head ----- */
.sulpre__head { width: 100%; }

.sulpre__title {
  margin: 0;
font-family: pretendard-800;
  font-weight: 800;
  font-size: clamp(32px, 2.6vw, 50px);
  line-height: 1.32;     /* 66/50 */
  color: #0c1c38;
  word-break: keep-all;
}

.sulpre__title-part--accent { color: #c99e67; }

/* ----- Body ----- */
.sulpre__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ----- Steps : 4 columns on PC ----- */
.sulpre__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.sulpre__step {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.sulpre__pill-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 50px;
}

.sulpre__pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #c99e67;
  color: #ffffff;
font-family: pretendard-800;
  font-weight: 800;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.sulpre__step-title {
  margin: 0 0 10px;
font-family: pretendard-700;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.43;     /* 40/28 */
  color: #0c1c38;
  word-break: keep-all;
}

.sulpre__step-desc {
  margin: 0 0 30px;
font-family: pretendard-400;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;     /* 26/18 */
  color: #3d4760;
  word-break: keep-all;
}

.sulpre__step-progress {
  display: flex;
  gap: 4px;
  width: 100%;
}

.sulpre__step-progress span {
  flex: 1 1 0;
  min-width: 0;
  height: 4px;
  border-radius: 2px;
  background: #eeeeee;
  display: block;
}

.sulpre__step--01 .sulpre__step-progress span:nth-child(1),
.sulpre__step--02 .sulpre__step-progress span:nth-child(2),
.sulpre__step--03 .sulpre__step-progress span:nth-child(3),
.sulpre__step--04 .sulpre__step-progress span:nth-child(4) {
  background: #c99e67;
}

/* ----- CTA Card ----- */
.sulpre__cta {
  background: #0c1c38;
  color: #ffffff;
  border-radius: 16px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.sulpre__cta-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sulpre__cta-title {
  margin: 0;
font-family: pretendard-700;
  font-weight: 700;
  font-size: clamp(24px, 1.77vw, 34px);
  line-height: 1.35;     /* 46/34 */
  color: #ffffff;
  word-break: keep-all;
}

.sulpre__cta-line { display: block; }
.sulpre__cta-line--accent { color: #c99e67; }

.sulpre__cta-sub {
  margin: 0;
font-family: pretendard-400;
  font-weight: 400;
  font-size: clamp(16px, 1.146vw, 22px);
  line-height: 1.36;     /* 30/22 */
  color: #ffffff;
  white-space: nowrap;
}

.sulpre__mo-only { display: none; }
.sulpre__br-mo   { display: none; }

/* CTA actions : right column, content-sized, equal-width buttons */
.sulpre__cta-actions {
  flex: 0 0 auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  width: max-content;
}

.sulpre__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 20px 30px;
  border-radius: 99px;
  width: 100%;
  white-space: nowrap;
  text-decoration: none;
font-family: pretendard-700;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  transition: opacity .2s ease, background-color .2s ease, color .2s ease;
  cursor: pointer;
}

.sulpre__btn--primary {
  background: #c99e67;
  color: #0c1c38;
  border: 2px solid transparent;
}
.sulpre__btn--primary:hover { opacity: .9; }

.sulpre__btn--outline {
  background: transparent;
  color: #c99e67;
  border: 2px solid #c99e67;
}
.sulpre__btn--outline:hover { background: rgba(201, 158, 103, 0.1); }

.sulpre__btn-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.sulpre__btn-icon--arrow {
  background: #0c1c38;     /* arrow color on gold button */
  -webkit-mask-image: url('/public/img/main/icon_arrow_right.png');
  mask-image: url('/public/img/main/icon_arrow_right.png');
}

.sulpre__btn-icon--phone {
  background: #c99e67;     /* phone color on outline button */
  -webkit-mask-image: url('/public/img/main/icon_phone.png');
  mask-image: url('/public/img/main/icon_phone.png');
}
@media (max-width: 1800px) {
	.sulpre {
		padding: 120px 40px;
	}
}
@media (max-width: 1300px) {
	.sulpre {
		padding: 100px 30px;
	}
	.sulpre__steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
/* ===== Mobile : max-width 767px (sulpre_mo 375px 기준) ===== */
@media (max-width: 767px) {

  .sulpre {
    padding: 50px 20px;
  }

  .sulpre__inner {
    gap: 30px;
  }

  /* Head */
  .sulpre__title {
    font-size: 24px;
    line-height: 32px;
  }

  /* Body : steps stack + CTA */
  .sulpre__body {
    gap: 12px;
  }

  .sulpre__steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Step card */
  .sulpre__step {
    border-radius: 10px;
    padding: 16px;
  }

  .sulpre__pill-wrap {
    align-items: center;
    margin-bottom: 30px;
  }

  .sulpre__pill {
    padding: 4px 8px;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0;
  }

  .sulpre__step-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 6px;
  }

  .sulpre__step-desc {
    font-size: 15px;
    line-height: 20px;
    color: #0c1c38;
    margin-bottom: 16px;
  }

  .sulpre__step-progress {
    gap: 3px;
  }
  .sulpre__step-progress span {
    height: 3px;
    background: #e6e3dd;
  }

  /* CTA */
  .sulpre__cta {
    flex-direction: column;
    align-items: stretch;
    border-radius: 10px;
    padding: 20px;
    gap: 30px;
  }

  .sulpre__cta-text {
    flex: none;
    gap: 10px;
  }

  .sulpre__cta-title {
    font-size: 24px;
    line-height: 30px;
  }

  .sulpre__cta-sub {
    font-size: 16px;
    line-height: 24px;
    white-space: normal;
  }

  /* Show mobile-only content */
  .sulpre__mo-only { display: inline; }
  .sulpre__br-mo   { display: inline; }

  /* Buttons : full-width stacked */
  .sulpre__cta-actions {
    width: 100%;
    gap: 8px;
    align-self: auto;
  }

  .sulpre__btn {
    padding: 14px 20px;
    font-size: 16px;
    line-height: 22px;
    gap: 6px;
  }
}

/* ===== Optional reveal animation ===== */
.sulpre .is-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.sulpre .is-reveal.is-in { opacity: 1; transform: none; }


/*-----------------------------------------
# 메인 전국 곳곳에서 진행된 200여 건 이상의 설명회
-------------------------------------------*/
/* ===== Base : PC (junsul_pc 1920px 기준) ===== */
.junsul {
  width: 100%;
  padding: clamp(60px, 6.25vw, 120px) clamp(40px, 12.5vw, 240px);
  background: #ffffff;
  color: #0c1c38;
font-family: pretendard-400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

.junsul *,
.junsul *::before,
.junsul *::after { box-sizing: border-box; }

.junsul__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
}




.junsul__title {
  margin: 0;
font-family: pretendard-800;
  font-weight: 800;
  font-size: clamp(32px, 2.6vw, 50px);
  line-height: 1.32;       /* 66/50 */
  color: #0c1c38;
  word-break: keep-all;
}

.junsul__title-line { display: block; }
.junsul__title-line--accent { color: #c99e67; }

.junsul__subtitle {
  margin: 0;
font-family: pretendard-400;
  font-weight: 400;
  font-size: clamp(16px, 1.146vw, 22px);
  line-height: clamp(24px, 1.66vw, 32px);
  color: #6c7280;
  word-break: keep-all;
}

/* ----- Body ----- */
.junsul__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

/* ----- Cards Grid : 3 × 3 on PC ----- */
.junsul__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 24px;          /* row 40, column 24 */
  width: 100%;
}

.junsul__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f7f5f1;
  border-radius: 16px;
  overflow: hidden;
}

/* .junsul__card-image { */
  /* position: relative; */
  /* width: 100%; */
  /* height: 280px; */
  /* border: 1px solid rgba(0, 0, 0, 0.06); */
  /* border-radius: 16px; */
  /* background: #f7f5f1; */
  /* overflow: hidden; */
/* } */
/* .junsul__card-image img { */
  /* position: absolute; */
  /* inset: 0; */
  /* width: 100%; */
  /* height: 100%; */
  /* object-fit: cover; */
  /* display: block; */
/* } */

.junsul__card-image {
    position: Relative;
    width: 100%;
    padding-bottom: 59.914%;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.junsul__card-image img {
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Placeholder for cards waiting for image */
.junsul__card-image--placeholder {
  background: #0c1c38;
  display: flex;
  align-items: center;
  justify-content: center;
}
.junsul__card-image--placeholder span {
font-family: pretendard-400;
  font-weight: 400;
  font-size: 13px;
  color: #6c7280;
}

.junsul__card-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 0 24px 24px;
  white-space: nowrap;
}

.junsul__card-title {
  flex: 0 1 auto;
  min-width: 0;
font-family: pretendard-700;
  font-weight: 700;
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: 32px;
  color: #0c1c38;
}

.junsul__card-desc {
  flex: 0 0 auto;
font-family: pretendard-400;
  font-weight: 400;
  font-size: clamp(15px, 0.94vw, 18px);
  line-height: 32px;
  color: #3d4760;
}

/* ----- CTA Card (Q & A) ----- */
.junsul__cta {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  padding: 40px 46px;
  background: #f7f5f1;
  border-radius: 16px;
}

.junsul__cta-q {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.junsul__qbadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #c99e67;
  color: #ffffff;
font-family: pretendard-700;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  flex-shrink: 0;
}

.junsul__qtext {
  margin: 0;
font-family: pretendard-500;
  font-weight: 500;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 50px;
  letter-spacing: -0.48px;
  color: #0c1c38;
  white-space: nowrap;
}

.junsul__cta-divider {
  flex: 1 1 0;
  min-width: 0;
  align-self: center;
  height: 2px;
  background: #0c1c38;
  display: block;
}

.junsul__cta-a {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.junsul__atitle {
  margin: 0;
font-family: pretendard-800;
  font-weight: 800;
  font-size: clamp(26px, 2.03vw, 39px);
  line-height: 50px;
  color: #0c1c38;
  text-align: center;
}

.junsul__adesc {
  margin: 0;
font-family: pretendard-400;
  font-weight: 400;
  font-size: clamp(15px, 0.94vw, 18px);
  line-height: 22px;
  color: #0c1c38;
}

@media (max-width: 1800px) {
	.junsul {
		padding: 120px 40px;
	}
}
@media (max-width: 1300px) {
	.junsul {
		padding: 100px 30px;
	}
	.junsul__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
/* ===== Mobile : max-width 767px (junsul_mo 375px 기준) ===== */
@media (max-width: 767px) {

  .junsul {
    padding: 50px 20px;
  }

  .junsul__inner {
    gap: 30px;
  }


  .junsul__title {
    font-size: 24px;
    line-height: 32px;
  }

  .junsul__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  /* Body */
  .junsul__body {
    gap: 20px;
  }

  /* Cards : single column, 12px gap */
  .junsul__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .junsul__card {
    border-radius: 10px;
    gap: 14px;
  }

  .junsul__card-image {
    height: 202px;
    border-radius: 10px;
  }

  .junsul__card-text {
    padding: 0 16px 16px;
    align-items: flex-start;
    gap: 10px;
  }

  .junsul__card-title {
    font-size: 20px;
    line-height: 28px;
    flex: 1 0 0;
  }

  .junsul__card-desc {
    font-size: 14px;
    line-height: 22px;
  }

  /* CTA : stack vertically + vertical divider */
  .junsul__cta {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 20px;
    border-radius: 10px;
  }

  .junsul__cta-q {
    gap: 10px;
    justify-content: center;
  }

  .junsul__qbadge {
    width: 31px;
    height: 31px;
    border-radius: 99px;
    font-size: 16px;
  }

  .junsul__qtext {
    font-size: 20px;
    line-height: 31px;
    letter-spacing: -0.4px;
  }

  .junsul__cta-divider {
    flex: 0 0 auto;
    width: 1px;
    height: 30px;
  }

  .junsul__cta-a {
    width: 100%;
    gap: 6px;
  }

  .junsul__atitle {
    font-size: 28px;
    line-height: 36px;
  }

  .junsul__adesc {
    font-size: 16px;
    line-height: 22px;
  }
}

/* ===== Optional reveal animation ===== */
.junsul .is-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.junsul .is-reveal.is-in { opacity: 1; transform: none; }


/*-----------------------------------------
# 메인 설명회가 처음이신가요?
-------------------------------------------*/
/* ===== Base : PC (sulfaq_pc 1920px 기준) ===== */
.sulfaq {
  width: 100%;
  padding: clamp(60px, 6.25vw, 120px) clamp(40px, 12.5vw, 240px);
  background: #f7f5f1;
  color: #0c1c38;
font-family: pretendard-400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

.sulfaq *,
.sulfaq *::before,
.sulfaq *::after { box-sizing: border-box; }

.sulfaq__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* ----- Aside (left on PC) ----- */
.sulfaq__head {
  flex: 0 0 428px;
  width: 428px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 40px;
}

.sulfaq__head-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.sulfaq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
font-family: pretendard-700;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1.4px;
  color: #c99e67;
}

.sulfaq__eyebrow-bar {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #c99e67;
  flex-shrink: 0;
}

.sulfaq__title {
  margin: 0;
font-family: pretendard-800;
  font-weight: 800;
  font-size: clamp(32px, 2.6vw, 50px);
  line-height: 1.32;       /* 66/50 */
  color: #0c1c38;
  word-break: keep-all;
}
.sulfaq__title-line { display: block; }

.sulfaq__desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.sulfaq__desc-p {
  margin: 0;
font-family: pretendard-400;
  font-weight: 400;
  font-size: clamp(16px, 1.146vw, 22px);
  line-height: 1.45;     /* 32/22 */
  color: #3d4760;
  word-break: keep-all;
}

.sulfaq__desc-highlight {
  display: inline;
font-family: pretendard-600;
  font-weight: 600;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.58;     /* 38/24 */
  color: #0c1c38;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.sulfaq__desc-note {
  margin: 0;
font-family: pretendard-400;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #3d4760;
}

/* CTA pill button */
.sulfaq__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 30px;
  background: #0c1c38;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
font-family: pretendard-700;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.36px;
  white-space: nowrap;
  align-self: flex-start;
  transition: opacity .2s ease;
}
.sulfaq__cta:hover { opacity: 0.92; }

.sulfaq__cta-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: #ffffff;
  -webkit-mask: url('/public/img/main/icon_pagelink.webp') no-repeat center / contain;
  mask: url('/public/img/main/icon_pagelink.webp') no-repeat center / contain;
}

/* ----- FAQ list (right on PC) ----- */
.sulfaq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.sulfaq__item {
  border-top: 1px solid #e6e3dd;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sulfaq__item:last-child { border-bottom: 1px solid #e6e3dd; }

/* Q row : button */
.sulfaq__qrow {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.sulfaq__qbadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 99px;
  background: #0c1c38;
  color: #ffffff;
font-family: pretendard-700;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
}

.sulfaq__qtext {
  flex: 1 1 0;
  min-width: 0;
font-family: pretendard-600;
  font-weight: 600;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 34px;
  color: #0c1c38;
  text-align: left;
  word-break: keep-all;
}

/* +/- toggle drawn with two bars */
.sulfaq__toggle {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.sulfaq__toggle::before,
.sulfaq__toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #0c1c38;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity .25s ease, transform .25s ease;
}
.sulfaq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.sulfaq__item[data-open="true"] .sulfaq__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* A panel */
.sulfaq__apanel {
  display: none;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  width: 100%;
}
.sulfaq__item[data-open="true"] .sulfaq__apanel { display: flex; }

.sulfaq__abadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 99px;
  background: #c99e67;
  color: #ffffff;
font-family: pretendard-700;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
}

.sulfaq__atext {
  flex: 1 1 0;
  min-width: 0;
font-family: pretendard-400;
  font-weight: 400;
  font-size: clamp(15px, 0.94vw, 18px);
  line-height: 34px;
  color: #0c1c38;
  word-break: keep-all;
}

.sulfaq__atext p {
  margin: 0;
}
.sulfaq__atext p + p,
.sulfaq__atext p + ul,
.sulfaq__atext ul + p,
.sulfaq__atext p + ol,
.sulfaq__atext ol + p {
  margin-top: 0;
}

.sulfaq__bullets,
.sulfaq__steps {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.sulfaq__bullets li {
  position: relative;
  padding-left: 14px;
}
.sulfaq__bullets li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: 700;
}
.sulfaq__steps {
  counter-reset: step;
  padding-left: 0;
}
.sulfaq__steps li {
  counter-increment: step;
  position: relative;
  padding-left: 24px;
}
.sulfaq__steps li::before {
  content: counter(step) ".";
  position: absolute;
  left: 0;
  font-weight: 500;
}
@media (max-width: 1800px) {
	.sulfaq {
		padding: 120px 40px;
	}
}
@media (max-width: 1300px) {
	.sulfaq {
		padding: 100px 30px;
	}
}
@media (max-width: 991px) {
	.sulfaq__inner {
		width: 100%;
		max-width: 1440px;
		margin: 0 auto;
		display: flex;
		gap: 0px;
		align-items: flex-start;
		flex-direction: column;
	}
	.sulfaq__head {
		position: relative;
		top: 0;
		width: 100%;
	}
	.sulfaq__list {
		width: 100%;
	}
}
/* ===== Mobile : max-width 767px (sulfaq_mo 375px 기준) ===== */
@media (max-width: 767px) {

  .sulfaq {
    padding: 50px 20px;
  }

  /* Inner stacks */
  .sulfaq__inner {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }

  /* Head : full-width, no sticky */
  .sulfaq__head {
    flex: none;
    width: 100%;
    gap: 20px;
    position: static;
    top: auto;
  }

  .sulfaq__head-top {
    gap: 8px;
  }

  .sulfaq__eyebrow { display: none; }   /* mobile design hides eyebrow */

  .sulfaq__title {
    font-size: 24px;
    line-height: 32px;
  }

  .sulfaq__desc {
    gap: 6px;
  }

  .sulfaq__desc-p {
    font-size: 16px;
    line-height: 24px;
  }

  .sulfaq__desc-highlight {
    font-size: 18px;
    line-height: 26px;
  }

  .sulfaq__desc-note {
    font-size: 14px;
    line-height: 18px;
    color: #3d4760;
  }

  /* CTA : full-width on mobile */
  .sulfaq__cta {
    align-self: stretch;
    width: 100%;
    padding: 16px;
    gap: 8px;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
  }

  /* FAQ list : white card style, gap 8 */
  .sulfaq__list {
    gap: 8px;
  }

  .sulfaq__item {
    border-top: none;
    background: #ffffff;
    border-radius: 10px;
    padding: 14px;
    gap: 14px;
  }
  .sulfaq__item:last-child { border-bottom: none; }

  /* Q row */
  .sulfaq__qrow {
    align-items: flex-start;
    gap: 8px;
  }

  .sulfaq__qbadge {
    width: 26px;
    height: 26px;
    font-size: 12px;
    line-height: 18px;
  }

  .sulfaq__qtext {
    font-family: pretendard-500;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
  }

  /* Toggle : smaller, 10×26 area */
  .sulfaq__toggle {
    width: 10px;
    height: 26px;
  }
  .sulfaq__toggle::before,
  .sulfaq__toggle::after {
    width: 10px;
    height: 2px;
  }

  /* A panel : flat with top divider, no bg */
  .sulfaq__apanel {
    background: transparent;
    padding: 14px 0 0 0;
    border-top: 1px solid #eeeeee;
    border-radius: 0;
    gap: 8px;
    align-items: flex-start;
  }

  .sulfaq__abadge {
    width: 26px;
    height: 26px;
    font-size: 12px;
    line-height: 18px;
  }

  .sulfaq__atext {
    font-family: pretendard-400;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #3d4760;
  }
}

/* ===== Optional reveal animation ===== */
.sulfaq .is-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.sulfaq .is-reveal.is-in { opacity: 1; transform: none; }
