/* =============================================
   screen-ui.css
   인증/계정 관련 페이지 통합 스타일
   (login / register / find-account / complete)
   ============================================= */


/* =============================================
   공통 레이아웃
   (site-body, page-wrap, page-inner)
   ============================================= */

/* 모든 페이지 본문 루트 */
.site-body {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--sc-header-height, 60px));
}

/* 콘텐츠 중앙 래퍼 */
.page-wrap {
  flex: 1;
  width: 100%;
  max-width: var(--sc-site-max, 1400px);
  margin: 0 auto;
  padding: 0 0 var(--sc-sp-3xl);
}

/* 상단 패딩이 필요한 페이지 (notice-view 등) */
.page-wrap--has-top {
  padding-top: var(--sc-sp-3xl);
}

/* 공지사항 게시판 — 카운트 + 검색 한 줄 우측 정렬 툴바 */
.nb-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sc-sp-md);
  margin-bottom: var(--sc-sp-md);
}

/* 공지사항 등 콘텐츠 분량과 무관하게 균일한 하단 여백을 유지해야 하는 페이지용 */
.page-wrap--notice {
  flex: initial;
  padding-bottom: var(--sc-sp-3xl);
}
.site-body:has(.page-wrap--notice) {
  min-height: 0;
}

/* 내부 콘텐츠 래퍼 (register 페이지) */
.page-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/* 하단 안내문 섹션 (register-terms) */
.page-notice-section {
  background-color: var(--sc-bg-section);
  border-top: 1px solid var(--sc-border-light);
  padding: var(--sc-sp-3xl) var(--sc-sp-xl);
}

.page-notice-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}


/* =============================================
   login.css — 로그인 페이지
   ============================================= */

.login-page-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDECEA;
  padding: var(--sc-sp-2xl) var(--sc-sp-xl);
  min-height: calc(100vh - var(--sc-header-height) - 80px);
}

/* 2단 레이아웃 */
.login-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sc-sp-xl);
  width: 100%;
  max-width: 1160px;
  align-items: stretch;
}

/* 좌측 소개 패널 */
.login-promo {
  background-color: var(--sc-bg-white);
  border-radius: var(--sc-radius-xl);
  padding: var(--sc-sp-3xl) var(--sc-sp-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--sc-sp-2xl);
  box-shadow: var(--sc-shadow-sm);
}

.login-promo__header {
  display: flex;
  flex-direction: column;
  gap: var(--sc-sp-xs);
}

.login-promo__title,
.login-promo__subtitle {
  font-size: var(--sc-fs-3xl);
  font-weight: var(--sc-fw-bold);
  color: var(--sc-dark);
  letter-spacing: -0.03em;
  line-height: var(--sc-lh-tight);
}

.login-promo__title {
  display: flex;
  align-items: center;
  gap: var(--sc-sp-xs);
}

.login-promo__title-star {
  color: #5C8A3C;
  font-size: var(--sc-fs-2xl);
  line-height: 1;
}

/* 기능 카드 그리드 */
.login-promo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sc-sp-base);
  flex: 1;
}

.promo-card {
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  padding: var(--sc-sp-base) var(--sc-sp-base) var(--sc-sp-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sc-sp-sm);
  background-color: var(--sc-bg-white);
  transition: box-shadow 0.18s, transform 0.15s;
}

.promo-card:hover {
  box-shadow: var(--sc-shadow-md);
  transform: translateY(-2px);
}

.promo-card__label {
  font-size: var(--sc-fs-sm);
  color: var(--sc-text-sub);
  font-weight: var(--sc-fw-semibold);
}

.promo-card__img-wrap {
  flex: 1;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--sc-radius-md);
  overflow: hidden;
}

.promo-card__img {
  max-width: 65%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.promo-card__img[src=""] {
  min-height: 64px;
}

/* 우측 로그인 폼 패널 */
.login-form-panel {
  background-color: var(--sc-bg-white);
  border-radius: var(--sc-radius-xl);
  padding: var(--sc-sp-4xl) var(--sc-sp-3xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sc-sp-xl);
  box-shadow: var(--sc-shadow-sm);
}

.login-form-panel__logo {
  display: flex;
  align-items: center;
  gap: var(--sc-sp-sm);
  margin-bottom: var(--sc-sp-sm);
}

.login-form-panel__logo-text {
  font-size: var(--sc-fs-xl);
  font-weight: var(--sc-fw-bold);
  color: var(--sc-dark);
  letter-spacing: -0.02em;
}

.login-form-panel__logo-text strong {
  color: var(--sc-primary-dark);
}

.login-form-panel__logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* 인풋 필드 그룹 */
.login-field-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sc-sp-sm);
}

/* 인풋 행 (레이블 + 인풋 가로 결합) */
.login-input-row {
  display: flex;
  align-items: center;
  border: 1px solid var(--sc-primary-dark);
  border-radius: var(--sc-radius-md);
  overflow: hidden;
  background-color: var(--sc-bg-white);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.login-input-row:focus-within {
  border-color: var(--sc-primary-dark);
  box-shadow: 0 0 0 3px rgba(92, 138, 60, 0.15);
}

.login-input-label {
  display: flex;
  align-items: center;
  gap: var(--sc-sp-xs);
  padding: 0 var(--sc-sp-base);
  height: 56px;
  background-color: var(--sc-primary-dark);
  color: #fff;
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-medium);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 120px;
  cursor: default;
}

.login-input {
  flex: 1;
  height: 56px;
  border: none;
  outline: none;
  padding: 0 var(--sc-sp-base);
  font-size: var(--sc-fs-md);
  font-family: inherit;
  color: var(--sc-text);
  background: transparent;
}

.login-input::placeholder {
  color: var(--sc-text-placeholder);
}

/* 비밀번호 인풋 래퍼 */
.login-input-pw-wrap {
  flex: 1;
  display: flex;
  align-items: center;
}

.login-input-pw-wrap .login-input {
  flex: 1;
}

/* 비밀번호 표시/숨기기 버튼 */
.login-pw-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 56px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--sc-text-light);
  transition: color 0.15s;
  flex-shrink: 0;
}

.login-pw-toggle:hover {
  color: var(--sc-text-sub);
}

.icon-eye-off.is-hidden,
.icon-eye.is-hidden {
  display: none;
}

/* 접속하기 버튼 */
.login-submit-btn {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sc-sp-sm);
  background: linear-gradient(90deg, #5C8A3C 0%, #7AAD57 100%);
  color: #fff;
  font-size: var(--sc-fs-lg);
  font-weight: var(--sc-fw-semibold);
  font-family: inherit;
  border: none;
  border-radius: var(--sc-radius-full);
  cursor: pointer;
  letter-spacing: -0.02em;
  transition: opacity 0.18s, transform 0.12s, box-shadow 0.18s;
  box-shadow: 0 4px 18px rgba(61, 104, 40, 0.28);
}

.login-submit-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(61, 104, 40, 0.36);
}

.login-submit-btn:active {
  transform: translateY(0);
}

/* 구분선 */
.login-divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--sc-sp-sm);
}

.login-divider__line {
  flex: 1;
  height: 1px;
  background-color: var(--sc-border);
}

.login-divider__text {
  font-size: var(--sc-fs-xs);
  color: var(--sc-text-light);
  white-space: nowrap;
}

/* 하단 보조 버튼 */
.login-sub-btns {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sc-sp-sm);
}

.login-sub-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-medium);
  border-radius: var(--sc-radius-md);
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
  text-decoration: none;
  border: 1px solid transparent;
}

.login-sub-btn--dark {
  background-color: var(--sc-primary-dark);
  color: #fff;
  border-color: var(--sc-primary-dark);
}

.login-sub-btn--dark:hover {
  background-color: var(--sc-primary);
  border-color: var(--sc-primary);
}

.login-sub-btn--outline {
  background-color: var(--sc-bg-white);
  color: var(--sc-text-sub);
  border-color: var(--sc-border);
}

.login-sub-btn--outline:hover {
  border-color: var(--sc-primary);
  color: var(--sc-primary-dark);
}

/* 반응형 */
@media (max-width: 1024px) {
  .login-layout {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .login-promo {
    padding: var(--sc-sp-2xl);
  }
}

@media (max-width: 640px) {
  .login-page-wrap {
    padding: var(--sc-sp-base);
    align-items: flex-start;
  }

  .login-form-panel {
    padding: var(--sc-sp-2xl) var(--sc-sp-xl);
    gap: var(--sc-sp-lg);
  }

  .login-promo__title,
  .login-promo__subtitle {
    font-size: var(--sc-fs-2xl);
  }

  .login-sub-btns {
    grid-template-columns: 1fr;
  }

  .promo-card__img-wrap {
    min-height: 80px;
  }
}


/* =============================================
   register-terms.css / register-info.css 공유
   회원가입 단계 표시 + 공통 입력 컴포넌트
   ============================================= */

/* 단계 표시 (Step Indicator) */
.reg-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--sc-sp-3xl);
}

.reg-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sc-sp-xs);
}

.reg-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--sc-border);
  background-color: var(--sc-bg-white);
  color: var(--sc-text-light);
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.reg-step__label {
  font-size: var(--sc-fs-xs);
  color: var(--sc-text-light);
  font-weight: var(--sc-fw-medium);
  white-space: nowrap;
  transition: color 0.2s;
}

.reg-step.is-active .reg-step__num {
  background-color: var(--sc-primary);
  border-color: var(--sc-primary);
  color: #fff;
}

.reg-step.is-active .reg-step__label {
  color: var(--sc-primary-dark);
  font-weight: var(--sc-fw-semibold);
}

.reg-step.is-done .reg-step__num {
  background-color: var(--sc-primary-light);
  border-color: var(--sc-primary);
  color: var(--sc-primary-dark);
}

.reg-step.is-done .reg-step__label {
  color: var(--sc-primary-dark);
}

.reg-step__line {
  flex: 1;
  height: 1px;
  background-color: var(--sc-border);
  min-width: 60px;
  max-width: 100px;
  margin-bottom: 16px;
}

/* 법인번호/사업자번호 분리 입력 */
.sc-split-group {
  display: flex;
  align-items: center;
  gap: var(--sc-sp-xs);
}

.sc-split-group .sc-input {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.sc-split-sep {
  font-size: var(--sc-fs-base);
  color: var(--sc-text-sub);
  font-weight: var(--sc-fw-bold);
  flex-shrink: 0;
}

/* 사업자번호 행 (인풋 그룹 + 중복확인 버튼) */
.biznum-row {
  display: flex;
  align-items: center;
  gap: var(--sc-sp-sm);
}

.biznum-row .sc-split-group {
  flex: 1;
}

/* 약관 섹션 */
.terms-section {
  margin-top: var(--sc-sp-3xl);
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: var(--sc-sp-xs);
  margin-top: var(--sc-sp-md);
}

/* 안내문 블록 */
.notice-block {
  display: flex;
  flex-direction: column;
  gap: var(--sc-sp-sm);
}

.notice-block__title {
  display: flex;
  align-items: center;
  gap: var(--sc-sp-xs);
  font-size: var(--sc-fs-base);
  font-weight: var(--sc-fw-semibold);
  color: var(--sc-dark);
  margin-bottom: var(--sc-sp-xs);
}

.notice-block__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notice-block__list li {
  font-size: var(--sc-fs-xs);
  color: var(--sc-text-sub);
  line-height: 1.7;
}

.notice-block__sub {
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-medium);
  color: var(--sc-text);
  margin-top: var(--sc-sp-sm);
}

/* register-info — 읽기전용 값 표시 */
.info-readonly-row {
  display: flex;
  align-items: center;
  gap: var(--sc-sp-sm);
}

.info-readonly-val {
  font-size: var(--sc-fs-md);
  color: var(--sc-text-sub);
  font-weight: var(--sc-fw-medium);
}

.info-readonly-val--masked {
  letter-spacing: 2px;
  color: var(--sc-text-light);
}

.info-sep {
  color: var(--sc-text-light);
  font-weight: var(--sc-fw-bold);
}

/* 읽기전용 행 */
tr.is-readonly th,
tr.is-readonly td {
  background-color: var(--sc-bg-section);
  color: var(--sc-text-sub);
}

/* 주소 그룹 */
.address-group {
  display: flex;
  flex-direction: column;
  gap: var(--sc-sp-sm);
}

.address-search-row {
  display: flex;
  gap: var(--sc-sp-sm);
}

.address-search-row .sc-input {
  flex: 1;
}

/* 아이디 + 중복확인 */
.id-check-row {
  display: flex;
  gap: var(--sc-sp-sm);
}

.id-check-row .sc-input {
  flex: 1;
}

/* 반응형 */
@media (max-width: 640px) {
  .reg-step__line {
    min-width: 30px;
  }

  .biznum-row,
  .address-search-row,
  .id-check-row {
    flex-direction: column;
    align-items: stretch;
  }

  .biznum-row .sc-btn,
  .address-search-row .sc-btn,
  .id-check-row .sc-btn {
    width: 100%;
  }
}


/* =============================================
   register-complete.css / account-complete.css /
   password-complete.css
   완료 페이지 공통 스타일
   ============================================= */

.complete-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sc-sp-4xl) var(--sc-sp-xl);
  gap: var(--sc-sp-lg);
  background-color: var(--sc-bg);
  min-height: calc(100vh - 60px - 80px);
}

.complete-img-placeholder {
  margin-bottom: var(--sc-sp-sm);
}

.complete-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
}

.complete-img-placeholder img {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.complete-title {
  font-size: var(--sc-fs-4xl);
  font-weight: var(--sc-fw-bold);
  color: var(--sc-dark);
  text-align: center;
  letter-spacing: -0.03em;
  line-height: var(--sc-lh-tight);
}

.complete-desc {
  font-size: var(--sc-fs-xl);
  color: var(--sc-text-sub);
  text-align: center;
  margin-top: calc(-1 * var(--sc-sp-xs));
  line-height: var(--sc-lh-tight);
}

/* CTA 버튼 */
.complete-cta {
  margin-top: var(--sc-sp-sm);
  padding: var(--sc-sp-base) var(--sc-sp-3xl);
  font-size: var(--sc-fs-lg);
  border-radius: var(--sc-radius-full);
  gap: var(--sc-sp-sm);
  background-color: var(--sc-primary-dark);
  min-width: 300px;
  justify-content: center;
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(92, 138, 60, 0.25);
}

.complete-cta:hover {
  background-color: var(--sc-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92, 138, 60, 0.3);
}

.complete-cta:active {
  transform: translateY(0);
}

/* 가입/계정 정보 카드 */
.join-info-card {
  width: 100%;
  max-width: 480px;
  background-color: var(--sc-bg-white);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-xl);
  padding: var(--sc-sp-xl) var(--sc-sp-2xl);
  box-shadow: var(--sc-shadow-md);
  margin-top: var(--sc-sp-sm);
}

.join-info-card__title {
  display: flex;
  align-items: center;
  gap: var(--sc-sp-sm);
  font-size: var(--sc-fs-base);
  font-weight: var(--sc-fw-semibold);
  color: var(--sc-dark);
  padding-bottom: var(--sc-sp-md);
  border-bottom: 1px solid var(--sc-border-light);
  margin-bottom: var(--sc-sp-md);
}

.join-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--sc-sp-md);
}

.join-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sc-sp-base);
}

.join-info-item__label {
  font-size: var(--sc-fs-sm);
  color: var(--sc-text-light);
  flex-shrink: 0;
}

.join-info-item__value {
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-medium);
  color: var(--sc-text);
  text-align: right;
}

.join-info-item__value--accent {
  color: var(--sc-primary-dark);
  font-weight: var(--sc-fw-semibold);
}

/* 반응형 */
@media (max-width: 640px) {
  .complete-title {
    font-size: var(--sc-fs-3xl);
  }

  .complete-desc {
    font-size: var(--sc-fs-base);
  }

  .complete-cta {
    min-width: 0;
    width: 100%;
    padding: var(--sc-sp-md) var(--sc-sp-xl);
  }

  .join-info-card {
    padding: var(--sc-sp-lg) var(--sc-sp-xl);
  }
}


/* =============================================
   find-account.css / find-password.css /
   change-password.css
   아이디·비밀번호 찾기 페이지 스타일
   ============================================= */

/* 히어로 배너 */
.find-hero {
  width: 100%;
  background: linear-gradient(135deg, #EBF3E4 0%, #E4F0DC 40%, #EFF6E8 70%, #F4F9EF 100%);
  border-bottom: 1px solid var(--sc-border-light);
  padding: var(--sc-sp-3xl) var(--sc-sp-2xl);
}

.find-hero__inner {
  width: 100%;
  max-width: var(--sc-site-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sc-sp-2xl);
}

.find-hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--sc-sp-sm);
}

.find-hero__brand {
  font-size: var(--sc-fs-3xl);
  font-weight: var(--sc-fw-bold);
  color: var(--sc-dark);
  letter-spacing: -0.03em;
  line-height: var(--sc-lh-tight);
}

.find-hero__brand strong {
  color: var(--sc-primary-dark);
}

.find-hero__sub {
  font-size: var(--sc-fs-lg);
  color: var(--sc-text-sub);
  margin-top: var(--sc-sp-xs);
}

.find-hero__page-label {
  font-size: var(--sc-fs-base);
  color: var(--sc-text-light);
  margin-top: var(--sc-sp-md);
  padding-top: var(--sc-sp-md);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.find-hero__illust {
  flex-shrink: 0;
}

.find-hero__illust-fallback {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 24px rgba(61, 104, 40, 0.15));
}

/* 콘텐츠 영역 */
.find-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* 탭 네비게이션 */
.find-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg) var(--sc-radius-lg) 0 0;
  overflow: hidden;
  background-color: var(--sc-bg-white);
}

.find-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sc-sp-base) var(--sc-sp-xl);
  font-size: var(--sc-fs-base);
  font-weight: var(--sc-fw-medium);
  color: var(--sc-text-sub);
  background-color: var(--sc-bg-section);
  border: none;
  cursor: pointer;
  transition: background-color 0.18s, color 0.18s;
  line-height: 1;
  position: relative;
}

.find-tab:first-child {
  border-right: 1px solid var(--sc-border);
}

.find-tab:hover:not(.is-active) {
  background-color: #EFEFEF;
  color: var(--sc-text);
}

.find-tab.is-active {
  background-color: #5C8A3C;
  color: #fff;
  font-weight: var(--sc-fw-semibold);
}

.find-tab.is-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #3D6828;
}

/* 탭 패널 */
.find-tab-panel {
  border: 1px solid var(--sc-border);
  border-top: none;
  border-radius: 0 0 var(--sc-radius-lg) var(--sc-radius-lg);
  background-color: var(--sc-bg-white);
  padding: var(--sc-sp-2xl);
}

.find-tab-panel.is-hidden {
  display: none;
}

/* 탭 패널 내 폼 테이블 커스텀 */
.find-tab-panel .sc-form-table {
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.find-tab-panel .sc-form-table tr {
  border-bottom: 1px solid var(--sc-border-light);
}

.find-tab-panel .sc-form-table tr:first-child th,
.find-tab-panel .sc-form-table tr:first-child td {
  border-top: 1px solid var(--sc-border-light);
}

/* 탭 패널 내 biznum-row */
.find-tab-panel .biznum-row {
  display: flex;
  align-items: center;
  gap: var(--sc-sp-sm);
}

.find-tab-panel .biznum-row .sc-split-group {
  flex: 1;
}

/* 탭 패널 내 하단 버튼 */
.find-tab-panel .sc-form-footer {
  margin-top: var(--sc-sp-xl);
}

/* 비밀번호 찾기 단계별 서브패널 */
.pw-step.is-hidden {
  display: none;
}

.pw-step2-notice {
  font-size: var(--sc-fs-sm);
  color: var(--sc-text-sub);
  text-align: center;
  padding: var(--sc-sp-md) 0 var(--sc-sp-lg);
  border-bottom: 1px solid var(--sc-border-light);
  margin-bottom: var(--sc-sp-md);
}

/* 반응형 */
@media (max-width: 768px) {
  .find-hero {
    padding: var(--sc-sp-2xl) var(--sc-sp-base);
  }

  .find-hero__brand {
    font-size: var(--sc-fs-2xl);
  }

  .find-hero__illust-fallback {
    width: 100px;
    height: 100px;
  }

  .find-hero__illust-fallback svg {
    width: 80px;
    height: 80px;
  }

  .find-tab-panel {
    padding: var(--sc-sp-base);
  }

  .find-tab-panel .biznum-row {
    flex-direction: column;
    align-items: stretch;
  }

  .find-tab-panel .biznum-row .sc-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .find-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .find-hero__illust {
    display: none;
  }

  .find-tab {
    font-size: var(--sc-fs-sm);
    padding: var(--sc-sp-md) var(--sc-sp-base);
  }
}

/* =============================================
   service-subscribe.css
   서비스 구독/결제 페이지 전용 스타일
   screen-ui.css 에 덧붙여 사용
   ============================================= */

/* ── 색상 토큰 (이 파일 전용) ── */
:root {
  --ss-green:        #5C8A3C;
  --ss-green-dark:   #3D6828;
  --ss-green-light:  #EBF3E4;
  --ss-green-muted:  #7AAD57;
  --ss-red:          #C0392B;
  --ss-red-light:    #FDECEA;
  --ss-gold:         #C8B97A;
  --ss-border:       #D8D8D8;
  --ss-border-light: #EBEBEB;
  --ss-bg:           #F5F5F3;
  --ss-bg-white:     #FFFFFF;
  --ss-text:         #222222;
  --ss-text-sub:     #666666;
  --ss-text-light:   #999999;
  --ss-dark:         #1A1A1A;
  --ss-radius-sm:    4px;
  --ss-radius-md:    8px;
  --ss-radius-lg:    12px;
  --ss-shadow-sm:    0 1px 4px rgba(0,0,0,0.07);
  --ss-shadow-md:    0 4px 16px rgba(0,0,0,0.10);
}

/* =============================================
   히어로 배너
   ============================================= */
.ss-hero {
  width: 100%;
  max-width: 1400px;
  margin: 40px auto 40px;
  background-color: var(--ss-green);
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(0,0,0,0.08) 0%, transparent 50%);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 180px;
  overflow: hidden;
  position: relative;
  border-radius: var(--sc-radius-xl, 16px);
}

.ss-hero__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1;
}

.ss-hero__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.ss-hero__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

.ss-hero__illust {
  flex-shrink: 0;
  width: 200px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.ss-hero__illust img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =============================================
   페이지 본문 2단 레이아웃
   ============================================= */
.ss-page {
  background-color: var(--ss-bg);
  padding: 0 40px 80px;
}

.ss-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.ss-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* =============================================
   공통 섹션 카드
   ============================================= */
.ss-card {
  background-color: var(--ss-bg-white);
  border: 1px solid var(--ss-border-light);
  border-radius: var(--ss-radius-lg);
  padding: 28px;
  box-shadow: var(--ss-shadow-sm);
}

.ss-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ss-section-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ss-dark);
  letter-spacing: -0.01em;
}

.ss-section-title__icon {
  display: flex;
  align-items: center;
  color: var(--ss-green);
}

.ss-section-note {
  font-size: 13px;
  color: var(--ss-text-light);
}

/* =============================================
   서비스 선택하기 — 플랜 카드 그리드
   ============================================= */
.ss-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ss-plan-card {
  border: 2px solid var(--ss-border);
  border-radius: var(--ss-radius-md);
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s;
  position: relative;
  background-color: var(--ss-bg-white);
}

.ss-plan-card:hover {
  border-color: var(--ss-green-muted);
  box-shadow: var(--ss-shadow-sm);
}

.ss-plan-card.is-selected {
  border-color: var(--ss-green);
  box-shadow: 0 0 0 1px var(--ss-green);
}

.ss-plan-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ss-green-dark);
  background-color: var(--ss-green-light);
  border: 1px solid var(--ss-green);
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.ss-plan-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ss-dark);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.ss-plan-card__price {
  font-size: 30px;
  font-weight: 800;
  color: var(--ss-dark);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.ss-plan-card__price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--ss-text-sub);
  margin-left: 2px;
}

.ss-plan-card__divider {
  border: none;
  border-top: 1px solid var(--ss-border-light);
  margin: 12px 0;
}

.ss-plan-card__group-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ss-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.ss-plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.ss-plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
  color: var(--ss-text-sub);
  line-height: 1.5;
}

.ss-plan-card__features li::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--ss-green-light);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%235E7D50' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   관리비 납부 기간 선택하기
   ============================================= */
.ss-period-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.ss-period-card {
  border: 2px solid var(--ss-border);
  border-radius: var(--ss-radius-md);
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s;
  background-color: var(--ss-bg-white);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ss-period-card:hover {
  border-color: var(--ss-green-muted);
}

.ss-period-card.is-selected {
  border-color: var(--ss-green);
  box-shadow: 0 0 0 1px var(--ss-green);
  background-color: #FAFCF8;
}

.ss-period-card.is-selected .ss-period-card__btn {
  background-color: var(--ss-green);
  color: #fff;
  border-color: var(--ss-green);
}

/* 연간 구독 (넓은 카드) — 하단 전체폭 */
.ss-period-card--wide {
  grid-column: 1 / -1;
}

.ss-period-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ss-period-card__label {
  font-size: 15px;
  color: var(--ss-text-sub);
  line-height: 1.5;
}

/* 기간 선택 드롭다운 */
.ss-period-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.ss-period-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 4px 22px 4px 8px;
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-sm);
  font-size: 13px;
  font-family: inherit;
  color: var(--ss-text);
  background-color: var(--ss-bg-white);
  cursor: pointer;
  outline: none;
}

.ss-period-select-wrap::after {
  content: '';
  position: absolute;
  right: 6px;
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--ss-text-sub);
}

.ss-period-card__discount {
  font-size: 13px;
  font-weight: 700;
  color: var(--ss-red);
  white-space: nowrap;
}

.ss-period-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.ss-period-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ss-text);
  line-height: 1.4;
}

.ss-period-card__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--ss-dark);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.ss-period-card__price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--ss-text-sub);
  margin-left: 2px;
}

.ss-period-card__btn {
  margin-top: auto;
  width: 100%;
  padding: 9px;
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-sm);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--ss-text-sub);
  background-color: var(--ss-bg-white);
  cursor: pointer;
  transition: background-color 0.18s, color 0.18s, border-color 0.18s;
  letter-spacing: -0.01em;
}

.ss-period-card__btn:hover {
  background-color: var(--ss-green-light);
  border-color: var(--ss-green);
  color: var(--ss-green-dark);
}

/* =============================================
   추가 옵션 선택하기 — 옵션 카드 그리드
   ============================================= */
.ss-option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ss-option-card {
  border: 1px solid var(--ss-border-light);
  border-radius: var(--ss-radius-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: var(--ss-bg-white);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.ss-option-card:hover {
  border-color: var(--ss-green-muted);
  box-shadow: var(--ss-shadow-sm);
}

.ss-option-card.is-selected {
  border-color: var(--ss-green);
}

.ss-option-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ss-dark);
  letter-spacing: -0.01em;
}

.ss-option-card__desc {
  font-size: 16px;
  color: var(--ss-text-sub);
  line-height: 1.6;
  flex: 1;
}

.ss-option-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}

.ss-option-card__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--ss-dark);
  letter-spacing: -0.02em;
}

.ss-option-card__price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--ss-text-sub);
  margin-left: 2px;
}

.ss-option-card__detail {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  color: var(--ss-text-sub);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}

.ss-option-card__detail:hover {
  color: var(--ss-green-dark);
}

.ss-option-card__select-btn {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-sm);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--ss-text-sub);
  background-color: var(--ss-bg-white);
  cursor: pointer;
  transition: background-color 0.18s, color 0.18s, border-color 0.18s;
}

.ss-option-card__select-btn:hover,
.ss-option-card.is-selected .ss-option-card__select-btn {
  background-color: var(--ss-green);
    color: #fff;
    border-color: var(--ss-green);
}

/* =============================================
   나의 장지 시스템 주소 입력
   (input 안에 버튼 + 도메인 suffix)
   ============================================= */
.ss-domain-row {
  display: flex;
  align-items: center;
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-md);
  overflow: hidden;
  background-color: var(--ss-bg-white);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.ss-domain-row:focus-within {
  border-color: var(--ss-green);
  box-shadow: 0 0 0 3px rgba(122, 155, 106, 0.12);
}

.ss-domain-row__input {
  flex: 1;
  height: 46px;
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ss-text);
  background: transparent;
  min-width: 0;
}

.ss-domain-row__input::placeholder {
  color: var(--ss-text-light);
}

.ss-domain-row__suffix {
  padding: 0 12px;
  font-size: 13px;
  color: var(--ss-text-light);
  white-space: nowrap;
  flex-shrink: 0;
  border-left: 1px solid var(--ss-border-light);
  height: 46px;
  display: flex;
  align-items: center;
  background-color: var(--ss-bg);
}

.ss-domain-row__btn {
  height: 46px;
  padding: 0 18px;
  background-color: var(--ss-green);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.18s;
  flex-shrink: 0;
}

.ss-domain-row__btn:hover {
  background-color: var(--ss-green-dark);
}

/* =============================================
   정보 입력하기 — 폼 테이블
   ============================================= */
.ss-info-table {
  width: 100%;
  border-collapse: collapse;
}

.ss-info-table tr {
  border-bottom: 1px solid var(--ss-border-light);
}

.ss-info-table tr:first-child {
  border-top: 1px solid var(--ss-border-light);
}

.ss-info-table th {
  width: 130px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ss-text-sub);
  background-color: var(--ss-bg);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.ss-info-table td {
  padding: 10px 14px;
  vertical-align: middle;
}

.ss-info-input {
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--ss-text);
  background: transparent;
}

.ss-info-input::placeholder {
  color: var(--ss-text-light);
}

/* =============================================
   이용동의하기
   ============================================= */
.ss-agree-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--ss-border-light);
  border-radius: var(--ss-radius-md);
  overflow: hidden;
}

.ss-agree-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--ss-border-light);
  background-color: var(--ss-bg-white);
  transition: background-color 0.15s;
}

.ss-agree-item:last-child {
  border-bottom: none;
}

.ss-agree-item:hover {
  background-color: #FAFAFA;
}

/* 체크 아이콘 (완료 상태) */
.ss-agree-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--ss-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.15s, background-color 0.15s;
  cursor: pointer;
}

.ss-agree-check.is-checked {
  border-color: var(--ss-green);
  background-color: var(--ss-green);
}

.ss-agree-check__icon {
  display: none;
  color: #fff;
}

.ss-agree-check.is-checked .ss-agree-check__icon {
  display: flex;
}

.ss-agree-item__tags {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.ss-agree-item__text {
  flex: 1;
  font-size: 13px;
  color: var(--ss-text);
  line-height: 1.5;
}

.ss-agree-item__detail {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  color: var(--ss-text-light);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
  margin-left: auto;
  flex-shrink: 0;
}

.ss-agree-item__detail:hover {
  color: var(--ss-green-dark);
}

/* 태그 뱃지 */
.ss-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.4;
}

.ss-tag--required {
  background-color: #FEF3C7;
  color: #92400E;
}

.ss-tag--optional {
  background-color: var(--ss-bg);
  color: var(--ss-text-light);
  border: 1px solid var(--ss-border-light);
}

/* 전체 동의 버튼 */
.ss-agree-all-btn {
  width: 100%;
  padding: 15px;
  background-color: var(--ss-green-light);
  border: 2px solid var(--ss-green);
  border-radius: var(--ss-radius-md);
  font-size: 14px;
  font-weight: 700;
  color: var(--ss-green-dark);
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.18s, color 0.18s, border-color 0.18s;
  letter-spacing: -0.01em;
  margin-top: 12px;
}

.ss-agree-all-btn:hover,
.ss-agree-all-btn.is-all-checked {
  background-color: var(--ss-green);
  color: #fff;
  border-color: var(--ss-green);
}

.ss-agree-all-btn__icon {
  display: flex;
  align-items: center;
}

/* =============================================
   결제하기 — 우측 고정 패널
   ============================================= */
.ss-side {
  position: sticky;
  top: calc(var(--sc-header-height, 60px) + 24px);
  align-self: start;
}

.ss-checkout-panel {
  background-color: var(--ss-bg-white);
  border: 1px solid var(--ss-border-light);
  border-radius: var(--ss-radius-lg);
  box-shadow: var(--ss-shadow-md);
  overflow: hidden;
}

/* 패널 헤더 */
.ss-checkout-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--ss-border-light);
}

.ss-checkout-panel__title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ss-dark);
}

.ss-checkout-panel__title-icon {
  display: flex;
  align-items: center;
  color: var(--ss-green);
}

.ss-checkout-panel__print-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--ss-text-sub);
  background-color: var(--ss-bg-white);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  font-family: inherit;
}

.ss-checkout-panel__print-btn:hover {
  border-color: var(--ss-green);
  color: var(--ss-green-dark);
}

/* 선택된 플랜 이름 */
.ss-checkout-plan-name {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--ss-dark);
  padding: 12px 18px;
  border-bottom: 1px solid var(--ss-border-light);
  background-color: #FAFAFA;
  letter-spacing: -0.01em;
}

/* 명세 섹션 그룹 */
.ss-checkout-body {
  padding: 0 18px;
}

.ss-checkout-group {
  padding: 14px 0;
  border-bottom: 1px solid var(--ss-border-light);
}

.ss-checkout-group:last-child {
  border-bottom: none;
}

.ss-checkout-group__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ss-text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ss-checkout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 3px 0;
}

.ss-checkout-row__label {
  font-size: 14px;
  color: var(--ss-text-sub);
}

.ss-checkout-row__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--ss-text);
  text-align: right;
  white-space: nowrap;
}

.ss-checkout-row__value--discount {
  color: var(--ss-red);
}

.ss-checkout-row__value--accent {
  color: var(--ss-green-dark);
}

/* 추가 옵션 행 (수량조절 포함) */
.ss-checkout-option-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 8px;
  padding: 6px 0;
  border-bottom: 1px dotted var(--ss-border-light);
}

.ss-checkout-option-row:last-child {
  border-bottom: none;
}

.ss-checkout-option-row__name {
  font-size: 15px;
  color: var(--ss-text-sub);
  grid-column: 1;
  grid-row: 1;
}

.ss-checkout-option-row__unit {
  font-size: 12px;
  color: var(--ss-text-light);
  grid-column: 1;
  grid-row: 2;
}

.ss-checkout-option-row__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--ss-dark);
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  text-align: right;
  white-space: nowrap;
}

/* 수량 조절 컨트롤 */
.ss-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-sm);
  overflow: hidden;
  margin-top: 4px;
}

.ss-qty-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: var(--ss-bg);
  color: var(--ss-text-sub);
  font-size: 19px;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.15s;
  font-family: inherit;
}

.ss-qty-btn:hover {
  background-color: var(--ss-border-light);
}

.ss-qty-val {
  min-width: 30px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--ss-dark);
  border-left: 1px solid var(--ss-border-light);
  border-right: 1px solid var(--ss-border-light);
  background-color: var(--ss-bg-white);
}

/* 삭제 버튼 */
.ss-opt-del-btn {
  height: 32px;
  padding: 0 8px;
  background-color: var(--ss-red);
  color: #fff;
  border: none;
  border-radius: var(--ss-radius-sm);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: background-color 0.15s;
  white-space: nowrap;
  margin-top: 4px;
}

.ss-opt-del-btn:hover {
  background-color: #A93226;
}

/* 합계 섹션 */
.ss-checkout-total {
  padding: 14px 18px;
  background-color: #FAFAFA;
  border-top: 1px solid var(--ss-border-light);
}

.ss-checkout-total__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ss-checkout-total__label {
  font-size: 15px;
  color: var(--ss-text-sub);
}

.ss-checkout-total__vat {
  font-size: 13px;
  color: var(--ss-text-light);
  text-align: right;
}

.ss-checkout-total__final {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--ss-border-light);
}

.ss-checkout-total__final-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ss-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.ss-checkout-total__final-price {
  font-size: 25px;
  font-weight: 800;
  color: var(--ss-dark);
  letter-spacing: -0.03em;
}

.ss-checkout-total__final-price span {
  font-size: 15px;
  font-weight: 400;
  color: var(--ss-text-sub);
  margin-left: 2px;
}

/* 결제 버튼 */
.ss-pay-btn {
  width: 100%;
  padding: 18px;
  background-color: var(--ss-green);
  color: #fff;
  border: none;
  font-size: 19px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.18s, transform 0.1s;
}

.ss-pay-btn:hover {
  background-color: var(--ss-green);
  transform: translateY(-1px);
}

.ss-pay-btn:active {
  transform: translateY(0);
}

/* 쿠폰 등록 — 우측정렬 쿠폰함 보기 버튼 */
.ss-coupon-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.ss-coupon-applied {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: auto;
  padding: 4px 6px 4px 10px;
  background-color: rgba(122, 155, 106, 0.12);
  border: 1px solid rgba(122, 155, 106, 0.4);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ss-green);
}

.ss-coupon-applied[hidden] {
  display: none;
}

.ss-coupon-applied__name {
  font-weight: 600;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ss-coupon-applied__remove {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: inherit;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
}

.ss-coupon-applied__remove:hover {
  background-color: rgba(122, 155, 106, 0.2);
}

.ss-coupon-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid var(--ss-border);
  background-color: var(--ss-bg-white);
  color: var(--ss-text);
  border-radius: var(--ss-radius-md);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.18s, border-color 0.18s;
}

.ss-coupon-open-btn:hover {
  border-color: var(--ss-dark);
  background-color: #f7f7f7;
}

/* 쿠폰함 모달 */
.ss-coupon-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ss-coupon-modal[hidden] {
  display: none;
}

.ss-coupon-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 25, 0.45);
}

.ss-coupon-modal__dialog {
  position: relative;
  width: min(640px, 94vw);
  /* height: min(780px, 90vh); */
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.ss-coupon-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--ss-border);
}

.ss-coupon-modal__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ss-text);
  margin: 0;
}

.ss-coupon-modal__close {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: var(--ss-text-light);
  cursor: pointer;
  padding: 0;
  border-radius: 6px;
}

.ss-coupon-modal__close:hover {
  color: var(--ss-text);
  background-color: #f3f4f6;
}

.ss-coupon-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 24px 24px;
}

.ss-coupon-modal__section + .ss-coupon-modal__section {
  margin-top: 28px;
}

.ss-coupon-modal__section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ss-text);
  margin: 0 0 10px;
}

.ss-coupon-modal__register {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ss-coupon-modal__input {
  flex: 1;
  height: 44px;
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-md);
  padding: 0 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ss-text);
  background: var(--ss-bg-white);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  min-width: 0;
}

.ss-coupon-modal__input:focus {
  border-color: var(--ss-green);
  box-shadow: 0 0 0 3px rgba(122, 155, 106, 0.12);
}

.ss-coupon-modal__input::placeholder {
  color: var(--ss-text-light);
}

.ss-coupon-modal__register-btn {
  flex-shrink: 0;
  height: 44px;
  padding: 0 18px;
  background-color: var(--ss-dark);
  color: #fff;
  border: none;
  border-radius: var(--ss-radius-md);
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.18s;
}

.ss-coupon-modal__register-btn:hover {
  background-color: #444;
}

.ss-coupon-modal__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 320px;
}

.ss-coupon-modal__empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--ss-text-light);
  margin: 0;
  background-color: #f6f7f9;
  border-radius: 8px;
  padding: 24px;
}

.ss-coupon-modal__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  background-color: #f6f7f9;
  border-radius: 8px;
}

.ss-coupon-modal__item-info {
  min-width: 0;
}

.ss-coupon-modal__item-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ss-text);
  word-break: break-all;
}

.ss-coupon-modal__item-discount {
  font-size: 15px;
  color: var(--ss-text-light);
  margin-top: 4px;
}

.ss-coupon-modal__apply-btn {
  flex-shrink: 0;
  height: 38px;
  padding: 0 16px;
  background-color: var(--ss-dark);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.18s;
}

.ss-coupon-modal__apply-btn:hover {
  background-color: #444;
}

.ss-coupon-modal__apply-btn.is-applied {
  background-color: #94a3b8;
  cursor: default;
}

/* =============================================
   반응형
   ============================================= */
@media (max-width: 1320px) {
  .ss-layout {
    grid-template-columns: 1fr 260px;
  }
}

@media (max-width: 1024px) {
  .ss-layout {
    grid-template-columns: 1fr;
  }

  .ss-side {
    position: static;
    order: -1;
  }

  .ss-hero {
    padding: 36px 28px;
  }

  .ss-hero__illust {
    width: 140px;
    height: 100px;
  }
}

@media (max-width: 640px) {
  .ss-page {
    padding: 24px 16px;
  }

  .ss-plan-grid,
  .ss-option-grid {
    grid-template-columns: 1fr;
  }

  .ss-period-grid {
    grid-template-columns: 1fr;
  }

  .ss-period-card--wide {
    grid-column: auto;
  }

  .ss-hero {
    padding: 28px 20px;
  }

  .ss-hero__illust {
    display: none;
  }

  .ss-hero__title {
    font-size: 22px;
  }
}

/* =============================================
   service-complete.css
   서비스 결제 완료 페이지 전용 스타일
   screen-ui.css → service-subscribe.css →
   이 파일 순서로 link
   ============================================= */


/* =============================================
   완료 페이지 전체 래퍼
   ============================================= */
   .sc2-page {
    background-color: #F5F5F3;
    min-height: calc(100vh - var(--sc-header-height, 60px));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 20px 80px;
  }

  /* register-complete 등 — 컨텐츠를 화면 정중앙으로 + 푸터 포함 풀스크린 */
  .sc2-page--center {
    flex: 1;
    min-height: 0;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
  }

  .sc2-page--center .sc2-hero {
    margin-bottom: 0;
    gap: 12px;
  }

  .sc2-page--center .sc2-hero__illust {
    width: 96px;
    height: 96px;
    margin-bottom: 0;
  }

  /* 완료 페이지 풀스크린: body 를 정확히 100vh 로 고정, footer 까지 한 화면 안에 */
  body.rc-fullscreen {
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
  }

  body.rc-fullscreen .site-body {
    flex: 1;
    min-height: 0;
  }

  body.rc-fullscreen .site-footer {
    flex-shrink: 0;
  }

  /* ── change-password 비밀번호 변경 카드 ── */
  .cp-pw-card {
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .cp-pw-card__title {
    margin: 0;
    text-align: left;
    font-size: 28px;
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.3;
    letter-spacing: -0.03em;
  }

  /* ── 아이디 결과 카드 ── */
  .cp-info-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    padding: 18px 28px;
    background: #F5F8F2;
    border: 1px solid #D6E4C8;
    border-radius: 10px;
  }

  .cp-info-card__label {
    font-size: 14px;
    color: #777;
  }

  .cp-info-card__value {
    font-size: 18px;
    font-weight: 800;
    color: #5C8A3C;
    letter-spacing: -0.01em;
  }

  /* ── 액션 버튼 행 (좌측 outline + 우측 primary) ── */
  .cp-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
  }

  .cp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
  }

  .cp-btn--outline {
    background: #fff;
    color: #555;
    border: 1.5px solid #D8D8D8;
  }

  .cp-btn--outline:hover {
    border-color: #5C8A3C;
    color: #5C8A3C;
  }
  
  
  /* =============================================
     상단 완료 영역 (일러스트 + 타이틀 + CTA)
     ============================================= */
  .sc2-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    text-align: center;
  }
  
  .sc2-hero__illust {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
  }
  
  .sc2-hero__illust img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .sc2-hero__title {
    font-size: 32px;
    font-weight: 800;
    color: #1A1A1A;
    letter-spacing: -0.04em;
    line-height: 1.2;
  }
  
  .sc2-hero__desc {
    font-size: 17px;
    color: #666;
    letter-spacing: -0.01em;
    line-height: 1.5;
    margin-top: -4px;
  }
  
  /* CTA 버튼 */
  .sc2-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: linear-gradient(90deg, #7AAD57 0%, #5C8A3C 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: opacity 0.18s, transform 0.15s, box-shadow 0.18s;
    box-shadow: 0 6px 20px rgba(92, 138, 60, 0.35);
    margin-top: 8px;
  }

  .sc2-cta-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(92, 138, 60, 0.45);
  }
  
  .sc2-cta-btn:active {
    transform: translateY(0);
  }
  
  .sc2-cta-btn__arrow {
    display: flex;
    align-items: center;
    opacity: 0.85;
  }
  
  
  /* =============================================
     영수증 카드 (결제 서비스 + 결제 정보)
     ============================================= */
  .sc2-receipt {
    width: 100%;
    max-width: 680px;
    background-color: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }
  
  
  /* ── 영수증 섹션 헤더 ── */
  .sc2-receipt-section {
    padding: 24px 32px;
  }
  
  .sc2-receipt-section + .sc2-receipt-section {
    border-top: 1px solid #EBEBEB;
  }
  
  .sc2-receipt-section__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
  }

  .sc2-receipt-section__title-icon {
    display: flex;
    align-items: center;
    color: #7A9B6A;
  }

  .sc2-receipt-section__title-icon svg {
    width: 20px;
    height: 20px;
  }
  
  
  /* ── 명세 행 그룹 ── */
  .sc2-detail-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
  }
  
  .sc2-detail-group:last-child {
    margin-bottom: 0;
  }
  
  /* 그룹 내 소제목 */
  .sc2-detail-group__label {
    font-size: 16px;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #F0F0F0;
  }
  
  /* 개별 명세 행 */
  .sc2-detail-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 5px 0;
  }
  
  .sc2-detail-row__key {
    font-size: 16px;
    color: #888;
    flex-shrink: 0;
    min-width: 80px;
  }

  .sc2-detail-row__val {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    text-align: right;
    word-break: break-all;
  }
  
  /* 강조 값 (초록) */
  .sc2-detail-row__val--accent {
    color: #5E7D50;
    font-weight: 700;
  }
  
  /* 할인 값 (빨강) */
  .sc2-detail-row__val--discount {
    color: #C0392B;
    font-weight: 700;
  }
  
  /* 구분선 (그룹 사이) */
  .sc2-detail-divider {
    border: none;
    border-top: 1px dashed #EBEBEB;
    margin: 14px 0;
  }
  
  
  /* ── 총 금액 소계 행 ── */
  .sc2-subtotal-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 5px 0;
  }
  
  .sc2-subtotal-row__key {
    font-size: 16px;
    color: #888;
  }

  .sc2-subtotal-row__val {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: right;
  }
  
  
  /* ── 최종 결제 금액 박스 ── */
  .sc2-total-box {
    margin: 0 32px 24px;
    background-color: #F8F8F6;
    border: 1px solid #E8E8E4;
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  
  .sc2-total-box__label {
    font-size: 16px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .sc2-total-box__label-icon {
    display: inline-flex;
    align-items: center;
    color: #BBBBBB;
  }
  
  .sc2-total-box__price {
    font-size: 32px;
    font-weight: 800;
    color: #1A1A1A;
    letter-spacing: -0.04em;
    line-height: 1.1;
  }
  
  .sc2-total-box__price span {
    font-size: 18px;
    font-weight: 600;
    margin-left: 4px;
  }
  
  
  /* ── 결제 정보 섹션 구분 헤더 ── */
  .sc2-receipt-divider {
    height: 8px;
    background-color: #F5F5F3;
    border-top: 1px solid #EBEBEB;
    border-bottom: 1px solid #EBEBEB;
  }
  
  
  /* =============================================
     반응형
     ============================================= */
  @media (max-width: 768px) {
    .sc2-page {
      padding: 48px 16px 60px;
    }
  
    .sc2-hero__title {
      font-size: 22px;
    }
  
    .sc2-hero__desc {
      font-size: 14px;
    }
  
    .sc2-cta-btn {
      padding: 13px 28px;
      font-size: 14px;
    }
  
    .sc2-receipt-section {
      padding: 20px 20px;
    }
  
    .sc2-total-box {
      margin: 0 20px 20px;
      padding: 16px 18px;
    }
  
    .sc2-total-box__price {
      font-size: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .sc2-detail-row__key {
      min-width: 70px;
      font-size: 15px;
    }

    .sc2-detail-row__val {
      font-size: 15px;
    }
  
    .sc2-hero__illust {
      width: 90px;
      height: 90px;
    }
  }
  
  /* =============================================
   board.css
   공지사항 게시판 · 게시글 뷰 · FAQ 통합 스타일
   screen-ui.css 뒤에 link
   ============================================= */


/* =============================================
   공통 — 페이지 헤더
   ============================================= */

.nb-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sc-sp-xl);
  padding-bottom: var(--sc-sp-xl);
  border-bottom: 2px solid var(--sc-dark);
  margin-bottom: var(--sc-sp-xl);
  flex-wrap: wrap;
}

.nb-page-header__title-row {
  display: flex;
  flex-direction: column;
  gap: var(--sc-sp-xs);
}

.nb-page-header__title {
  font-size: var(--sc-fs-3xl);
  font-weight: var(--sc-fw-bold);
  color: var(--sc-dark);
  letter-spacing: -0.03em;
  line-height: var(--sc-lh-tight);
  margin: 0;
}

.nb-page-header__desc {
  font-size: var(--sc-fs-sm);
  color: var(--sc-text-sub);
  margin: 0;
}


/* =============================================
   공통 — 검색 폼
   ============================================= */

.nb-search-form {
  display: flex;
  gap: var(--sc-sp-sm);
  flex-shrink: 0;
}

.nb-search-input-wrap {
  display: flex;
  align-items: center;
  gap: var(--sc-sp-xs);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-md);
  padding: 0 var(--sc-sp-base);
  background-color: var(--sc-bg-white);
  height: 42px;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.nb-search-input-wrap:focus-within {
  border-color: #5C8A3C;
  box-shadow: 0 0 0 3px rgba(92, 138, 60, 0.15);
}

.nb-search-icon {
  color: var(--sc-text-light);
  flex-shrink: 0;
}

.nb-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: var(--sc-fs-sm);
  font-family: inherit;
  color: var(--sc-text);
  width: 220px;
}

.nb-search-input::placeholder {
  color: var(--sc-text-placeholder, #bbb);
}

.nb-search-btn {
  height: 42px;
  padding: 0 var(--sc-sp-lg);
  background-color: var(--sc-dark);
  color: #fff;
  border: none;
  border-radius: var(--sc-radius-md);
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-semibold);
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.18s;
  white-space: nowrap;
}

.nb-search-btn:hover {
  background-color: #444;
}


/* =============================================
   공통 — 뱃지
   ============================================= */

.nb-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  border-radius: var(--sc-radius-sm);
  font-size: 11px;
  font-weight: var(--sc-fw-bold);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nb-badge--default {
  background-color: #EDECEA;
  color: var(--sc-text-sub);
}

.nb-badge--warning {
  background-color: #FFF3CD;
  color: #9B6B00;
}

.nb-badge--info {
  background-color: #E0E8FF;
  color: #3B5FBF;
}

.nb-badge--accent {
  background-color: #FDECEA;
  color: #B03A2E;
}

/* NEW 뱃지 */
.nb-new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #5C8A3C;
  color: #fff;
  font-size: 10px;
  font-weight: var(--sc-fw-bold);
  margin-left: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}


/* =============================================
   공지사항 게시판 — 테이블
   ============================================= */

.nb-board {
  display: flex;
  flex-direction: column;
  gap: var(--sc-sp-lg);
}

.nb-board__count {
  font-size: var(--sc-fs-sm);
  color: var(--sc-text-sub);
}

.nb-board__count strong {
  color: var(--sc-dark);
  font-weight: var(--sc-fw-semibold);
}

.nb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--sc-fs-sm);
  border-top: 2px solid var(--sc-dark);
}

.nb-table thead {
  background-color: var(--sc-bg-section, #F5F5F3);
}

.nb-table th {
  padding: 11px var(--sc-sp-base);
  font-size: 16px;
  font-weight: var(--sc-fw-semibold);
  color: var(--sc-text-sub);
  text-align: center;
  border-bottom: 1px solid var(--sc-border);
  white-space: nowrap;
}

.nb-table__th--left {
  text-align: left !important;
  padding-left: var(--sc-sp-lg) !important;
}

.nb-table td {
  padding: 13px var(--sc-sp-base);
  border-bottom: 1px solid var(--sc-border-light, #EFEFEF);
  text-align: center;
  color: var(--sc-text-sub);
  vertical-align: middle;
}

/* 고정글 행 */
.nb-table__row.is-pinned {
  background-color: #FAFAF8;
}

.nb-table__row.is-pinned .nb-table__title-link {
  font-weight: var(--sc-fw-semibold);
}

.nb-table__row:hover {
  background-color: #F7F7F5;
}

/* 핀 아이콘 */
.nb-pin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5C8A3C;
}

/* 번호 */
.nb-table__num {
  font-size: 13px;
  color: var(--sc-text-light, #aaa);
}

/* 제목 셀 */
.nb-table__title-cell {
  text-align: left !important;
  padding-left: var(--sc-sp-lg) !important;
}

.nb-table__title-link {
  display: inline-flex;
  align-items: center;
  font-size: var(--sc-fs-sm);
  color: var(--sc-text);
  text-decoration: none;
  transition: color 0.15s;
  max-width: 640px;
  word-break: keep-all;
}

.nb-table__title-link:hover {
  color: #5C8A3C;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nb-table__date {
  font-size: 13px;
  color: var(--sc-text-light, #aaa);
  white-space: nowrap;
}

.nb-table__views {
  font-size: 13px;
  color: var(--sc-text-light, #aaa);
}


/* =============================================
   공통 — 페이지네이션
   ============================================= */

.nb-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nb-pagination__btn,
.nb-pagination__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--sc-radius-md);
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-medium);
  text-decoration: none;
  color: var(--sc-text-sub);
  border: 1px solid var(--sc-border-light, #e8e8e8);
  background-color: var(--sc-bg-white);
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
  cursor: pointer;
}

.nb-pagination__btn:hover,
.nb-pagination__num:hover {
  border-color: #5C8A3C;
  color: #5C8A3C;
}

.nb-pagination__num.is-active {
  background-color: #5C8A3C;
  border-color: #5C8A3C;
  color: #fff;
  font-weight: var(--sc-fw-bold);
}

.nb-pagination__btn.is-disabled {
  color: var(--sc-border, #ddd);
  cursor: default;
  pointer-events: none;
}


/* =============================================
   게시글 뷰 — 브레드크럼
   ============================================= */

.nv-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--sc-fs-xs);
  color: var(--sc-text-light, #aaa);
  margin-bottom: var(--sc-sp-lg);
}

.nv-breadcrumb__link {
  color: var(--sc-text-sub);
  text-decoration: none;
  transition: color 0.15s;
}

.nv-breadcrumb__link:hover {
  color: #5C8A3C;
  text-decoration: underline;
}

.nv-breadcrumb__sep {
  color: var(--sc-border, #ddd);
}

.nv-breadcrumb__cur {
  color: var(--sc-text-light, #aaa);
}


/* =============================================
   게시글 뷰 — 아티클 카드
   ============================================= */

.nv-article {
  background-color: var(--sc-bg-white);
  border: 1px solid var(--sc-border, #e0e0e0);
  border-radius: var(--sc-radius-xl, 12px);
  overflow: hidden;
  margin-bottom: var(--sc-sp-xl);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.nv-article__header {
  padding: var(--sc-sp-2xl) var(--sc-sp-3xl);
  border-bottom: 1px solid var(--sc-border-light, #ebebeb);
  display: flex;
  flex-direction: column;
  gap: var(--sc-sp-sm);
  background-color: #FAFAFA;
}

.nv-article__title {
  font-size: var(--sc-fs-2xl);
  font-weight: var(--sc-fw-bold);
  color: var(--sc-dark);
  letter-spacing: -0.025em;
  line-height: 1.4;
  margin: 0;
}

.nv-article__meta {
  display: flex;
  align-items: center;
  gap: var(--sc-sp-sm);
  flex-wrap: wrap;
  margin-top: var(--sc-sp-xs);
}

.nv-article__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--sc-fs-xs);
  color: var(--sc-text-light, #aaa);
}

.nv-article__meta-sep {
  font-size: 10px;
  color: var(--sc-border, #ddd);
}

/* 본문 */
.nv-article__body {
  padding: var(--sc-sp-3xl);
  font-size: var(--sc-fs-md);
  color: var(--sc-text);
  line-height: 1.8;
}

.nv-article__body p {
  margin: 0 0 var(--sc-sp-md);
}

.nv-article__body p:last-child {
  margin-bottom: 0;
}

/* 본문 내 안내 박스 */
.nv-info-box {
  background-color: #F5F7FF;
  border: 1px solid #DDE4F5;
  border-left: 4px solid #5C8A3C;
  border-radius: var(--sc-radius-md);
  padding: var(--sc-sp-lg) var(--sc-sp-xl);
  margin: var(--sc-sp-xl) 0;
}

.nv-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sc-sp-sm);
}

.nv-info-list li {
  font-size: var(--sc-fs-sm);
  color: var(--sc-text);
  line-height: 1.6;
}

.nv-info-label {
  font-weight: var(--sc-fw-semibold);
  color: #3D6828;
  margin-right: var(--sc-sp-sm);
}


/* =============================================
   게시글 뷰 — 이전글 / 다음글
   ============================================= */

.nv-post-nav {
  border: 1px solid var(--sc-border, #e0e0e0);
  border-radius: var(--sc-radius-lg);
  overflow: hidden;
  margin-bottom: var(--sc-sp-lg);
}

.nv-post-nav__item {
  display: flex;
  align-items: center;
  gap: var(--sc-sp-base);
  padding: var(--sc-sp-md) var(--sc-sp-xl);
  font-size: var(--sc-fs-sm);
  color: var(--sc-text-sub);
  text-decoration: none;
  background-color: var(--sc-bg-white);
  transition: background-color 0.15s;
}

.nv-post-nav__item + .nv-post-nav__item {
  border-top: 1px solid var(--sc-border-light, #ebebeb);
}

.nv-post-nav__item:hover {
  background-color: #F7F7F5;
}

.nv-post-nav__dir {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: var(--sc-fs-xs);
  color: var(--sc-text-light, #aaa);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 60px;
}

.nv-post-nav__title {
  flex: 1;
  color: var(--sc-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 목록으로 버튼 */
.nv-back-row {
  display: flex;
  justify-content: center;
}

.nv-back-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sc-sp-xs);
  height: 40px;
  padding: 0 var(--sc-sp-xl);
  border: 1px solid var(--sc-border, #ddd);
  border-radius: var(--sc-radius-md);
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-medium);
  color: var(--sc-text-sub);
  text-decoration: none;
  background-color: var(--sc-bg-white);
  transition: border-color 0.15s, color 0.15s;
}

.nv-back-btn:hover {
  border-color: #5C8A3C;
  color: #5C8A3C;
}


/* =============================================
   FAQ — 카테고리 탭
   ============================================= */

.faq-cat-tabs {
  display: flex;
  gap: var(--sc-sp-xs);
  flex-wrap: wrap;
  margin-bottom: var(--sc-sp-xl);
}

.faq-cat-tab {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 var(--sc-sp-base);
  border: 1px solid var(--sc-border, #ddd);
  border-radius: var(--sc-radius-full, 999px);
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-medium);
  color: var(--sc-text-sub);
  background-color: var(--sc-bg-white);
  text-decoration: none;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.faq-cat-tab:hover:not(.is-active) {
  border-color: #5C8A3C;
  color: #5C8A3C;
}

.faq-cat-tab.is-active {
  background-color: #5C8A3C;
  border-color: #5C8A3C;
  color: #fff;
  font-weight: var(--sc-fw-semibold);
}


/* =============================================
   FAQ — 아코디언 리스트
   ============================================= */

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--sc-dark);
  margin-bottom: var(--sc-sp-3xl);
}

.faq-item {
  border-bottom: 1px solid var(--sc-border-light, #ebebeb);
  transition: background-color 0.15s;
}

/* Q 버튼 */
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--sc-sp-base);
  padding: var(--sc-sp-lg) var(--sc-sp-xl);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: var(--sc-fs-md);
  color: var(--sc-text);
  font-weight: var(--sc-fw-medium);
  transition: color 0.15s;
}

.faq-item__q:hover {
  color: #3D6828;
}

.faq-item.is-open .faq-item__q {
  color: #3D6828;
}

.faq-item.is-open {
  background-color: #F9FAFE;
}

/* Q 아이콘 */
.faq-item__q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #5C8A3C;
  color: #fff;
  font-size: 13px;
  font-weight: var(--sc-fw-bold);
  flex-shrink: 0;
  transition: background-color 0.15s;
}

.faq-item.is-open .faq-item__q-icon {
  background-color: #3D6828;
}

.faq-item__q-text {
  flex: 1;
  line-height: 1.5;
}

/* 화살표 */
.faq-item__arrow {
  flex-shrink: 0;
  color: var(--sc-text-light, #bbb);
  transition: transform 0.2s;
  display: inline-flex;
  align-items: center;
}

.faq-item.is-open .faq-item__arrow {
  transform: rotate(180deg);
  color: #5C8A3C;
}

/* A 패널 */
.faq-item__a {
  display: flex;
  align-items: flex-start;
  gap: var(--sc-sp-base);
  padding: var(--sc-sp-base) var(--sc-sp-xl) var(--sc-sp-xl);
  padding-left: calc(var(--sc-sp-xl) + 26px + var(--sc-sp-base)); /* Q 아이콘 너비만큼 들여쓰기 */
  border-top: 1px dashed var(--sc-border-light, #ebebeb);
  background-color: #F9FAFE;
}

.faq-item__a-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #EDECEA;
  color: var(--sc-text-sub);
  font-size: 13px;
  font-weight: var(--sc-fw-bold);
  flex-shrink: 0;
  margin-left: calc(-1 * (26px + var(--sc-sp-base))); /* 아이콘 보정 */
  margin-right: var(--sc-sp-base);
}

.faq-item__a-text {
  font-size: var(--sc-fs-sm);
  color: var(--sc-text-sub);
  line-height: 1.75;
  white-space: pre-line;
}

/* 빈 결과 */
.faq-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sc-sp-base);
  padding: var(--sc-sp-4xl) var(--sc-sp-xl);
  color: var(--sc-text-light, #bbb);
}

.faq-empty p {
  font-size: var(--sc-fs-md);
  color: var(--sc-text-light, #bbb);
  margin: 0;
}

.faq-empty__reset {
  font-size: var(--sc-fs-sm);
  color: #5C8A3C;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* =============================================
   FAQ — 하단 문의 CTA
   ============================================= */

.faq-contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sc-sp-xl);
  padding: var(--sc-sp-xl) var(--sc-sp-2xl);
  background-color: var(--sc-bg-section, #F5F5F3);
  border: 1px solid var(--sc-border, #e0e0e0);
  border-radius: var(--sc-radius-xl, 12px);
}

.faq-contact-box__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-contact-box__text strong {
  font-size: var(--sc-fs-base);
  font-weight: var(--sc-fw-semibold);
  color: var(--sc-dark);
  letter-spacing: -0.01em;
}

.faq-contact-box__text span {
  font-size: var(--sc-fs-sm);
  color: var(--sc-text-sub);
}

.faq-contact-box__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sc-sp-xs);
  height: 42px;
  padding: 0 var(--sc-sp-xl);
  background-color: var(--sc-dark);
  color: #fff;
  border-radius: var(--sc-radius-md);
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-semibold);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.18s;
  flex-shrink: 0;
}

.faq-contact-box__btn:hover {
  background-color: #444;
}


/* =============================================
   반응형
   ============================================= */

@media (max-width: 768px) {
  .nb-page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nb-search-form {
    width: 100%;
  }

  .nb-search-input-wrap {
    flex: 1;
  }

  .nb-search-input {
    width: 100%;
    min-width: 0;
  }

  /* 테이블 — 조회수 숨김 */
  .nb-table colgroup col:last-child,
  .nb-table th:last-child,
  .nb-table td:last-child {
    display: none;
  }

  .nv-article__header {
    padding: var(--sc-sp-xl) var(--sc-sp-xl);
  }

  .nv-article__body {
    padding: var(--sc-sp-xl);
  }

  .nv-article__title {
    font-size: var(--sc-fs-xl);
  }

  .faq-contact-box {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sc-sp-base);
  }

  .faq-contact-box__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  /* 날짜 열 숨김 */
  .nb-table colgroup col:nth-child(4),
  .nb-table th:nth-child(4),
  .nb-table td:nth-child(4) {
    display: none;
  }

  .nb-table th,
  .nb-table td {
    padding: 10px var(--sc-sp-sm);
  }

  .nb-table__title-cell,
  .nb-table__th--left {
    padding-left: var(--sc-sp-sm) !important;
  }

  .nv-post-nav__title {
    display: none;
  }

  .faq-item__q {
    padding: var(--sc-sp-md) var(--sc-sp-base);
    font-size: var(--sc-fs-sm);
  }

  .faq-item__a {
    padding: var(--sc-sp-sm) var(--sc-sp-base) var(--sc-sp-lg);
    padding-left: calc(var(--sc-sp-base) + 26px + var(--sc-sp-sm));
  }

  .nb-page-header__title {
    font-size: var(--sc-fs-2xl);
  }
}

/* =============================================
   inquiry.css
   비회원 문의하기 페이지 전용 스타일
   screen-ui.css 뒤에 link
   ============================================= */


/* =============================================
   히어로 배너
   ============================================= */

   .iq-hero {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto 40px;
    background: linear-gradient(135deg, #6B7FBF 0%, #5C8A3C 45%, #8FA5D0 100%);
    padding: 52px 0 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--sc-radius-xl, 16px);
  }

  /* find-account 처럼 폼 영역이 좁은 페이지용 */
  .iq-hero--narrow {
    max-width: 800px;
  }
  
  /* 배경 장식 원 */
  .iq-hero::before,
  .iq-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .iq-hero::before {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    top: -140px;
    right: -80px;
  }
  .iq-hero::after {
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.05);
    bottom: 20px;
    left: -60px;
  }
  
  .iq-hero__inner {
    width: 100%;
    max-width: var(--sc-site-max, 1400px);
    margin: 0 auto;
    padding: 0 var(--sc-sp-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sc-sp-2xl);
    position: relative;
    z-index: 1;
  }
  
  .iq-hero__content {
    display: flex;
    flex-direction: column;
    gap: var(--sc-sp-sm);
  }
  
  .iq-hero__eyebrow {
    font-size: var(--sc-fs-xs);
    font-weight: var(--sc-fw-semibold);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
  }
  
  .iq-hero__title {
    font-size: var(--sc-fs-4xl);
    font-weight: var(--sc-fw-bold);
    color: #fff;
    letter-spacing: -0.04em;
    line-height: var(--sc-lh-tight);
    margin: 0;
  }
  
  .iq-hero__desc {
    font-size: var(--sc-fs-md);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    margin: 0;
    margin-top: 2px;
  }
  
  .iq-hero__illust {
    flex-shrink: 0;
    opacity: 0.9;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.15));
  }
  
  /* 안내 칩 행 */
  .iq-hero__chips {
    display: flex;
    align-items: center;
    gap: var(--sc-sp-sm);
    flex-wrap: wrap;
    width: 100%;
    max-width: var(--sc-site-max, 1400px);
    margin: var(--sc-sp-xl) auto 0;
    padding: var(--sc-sp-md) var(--sc-sp-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
  }
  
  .iq-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: var(--sc-fs-xs);
    font-weight: var(--sc-fw-medium);
    color: rgba(255, 255, 255, 0.85);
  }
  
  .iq-chip + .iq-chip::before {
    content: '·';
    margin-right: 2px;
    color: rgba(255, 255, 255, 0.35);
  }
  
  
  /* =============================================
     2단 레이아웃
     ============================================= */
  
  .iq-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--sc-sp-2xl);
    align-items: start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .iq-main {
    min-width: 0;
  }
  
  .iq-side {
    display: flex;
    flex-direction: column;
    gap: var(--sc-sp-base);
    position: sticky;
    top: calc(var(--sc-header-height, 60px) + 24px);
    align-self: start;
  }
  
  
  /* =============================================
     폼 섹션 카드
     ============================================= */
  
  .iq-section {
    background-color: var(--sc-bg-white);
    border: 1px solid var(--sc-border-light, #ebebeb);
    border-radius: var(--sc-radius-xl, 12px);
    padding: var(--sc-sp-2xl);
    margin-bottom: var(--sc-sp-base);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  }
  
  .iq-section__head {
    display: flex;
    align-items: center;
    gap: var(--sc-sp-xs);
    margin-bottom: var(--sc-sp-xl);
    padding-bottom: var(--sc-sp-md);
    border-bottom: 1px solid var(--sc-border-light, #ebebeb);
  }
  
  .iq-section__icon {
    display: inline-flex;
    align-items: center;
    color: #5C8A3C;
    flex-shrink: 0;
  }
  
  .iq-section__title {
    font-size: var(--sc-fs-base);
    font-weight: var(--sc-fw-bold);
    color: var(--sc-dark);
    letter-spacing: -0.015em;
    margin: 0;
    flex: 1;
  }
  
  .iq-section__required-note {
    font-size: var(--sc-fs-xs);
    color: var(--sc-text-light, #aaa);
    margin-left: auto;
    flex-shrink: 0;
  }
  
  .iq-section__required-note em {
    color: #C0392B;
    font-style: normal;
    margin-right: 2px;
  }
  
  
  /* =============================================
     필드 그리드
     ============================================= */
  
  .iq-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sc-sp-lg) var(--sc-sp-xl);
  }
  
  .iq-field {
    display: flex;
    flex-direction: column;
    gap: var(--sc-sp-xs);
  }
  
  .iq-field--half {
    grid-column: span 1;
  }
  
  .iq-field--full {
    grid-column: span 2;
  }
  
  
  /* =============================================
     레이블
     ============================================= */
  
  .iq-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--sc-fs-sm);
    font-weight: var(--sc-fw-semibold);
    color: var(--sc-dark);
    letter-spacing: -0.01em;
  }
  
  .iq-required {
    color: #C0392B;
    font-style: normal;
    font-size: 13px;
    line-height: 1;
  }
  
  .iq-optional-badge {
    display: inline-flex;
    align-items: center;
    height: 18px;
    padding: 0 6px;
    background-color: var(--sc-bg-section, #F5F5F3);
    border: 1px solid var(--sc-border-light, #ebebeb);
    border-radius: 3px;
    font-size: 12px;
    font-weight: var(--sc-fw-medium);
    color: var(--sc-text-light, #aaa);
    letter-spacing: 0;
  }
  
  
  /* =============================================
     인풋 공통
     ============================================= */
  
  .iq-input,
  .iq-select,
  .iq-textarea {
    width: 100%;
    font-family: inherit;
    font-size: var(--sc-fs-sm);
    color: var(--sc-text);
    background-color: var(--sc-bg-white);
    border: 1px solid var(--sc-border, #d8d8d8);
    border-radius: var(--sc-radius-md, 8px);
    transition: border-color 0.18s, box-shadow 0.18s;
    outline: none;
    box-sizing: border-box;
  }
  
  .iq-input {
    height: 46px;
    padding: 0 var(--sc-sp-base);
  }
  
  .iq-input::placeholder {
    color: var(--sc-text-placeholder, #bbb);
  }
  
  .iq-input:focus {
    border-color: #5C8A3C;
    box-shadow: 0 0 0 3px rgba(92, 138, 60, 0.15);
  }
  
  /* 에러 상태 */
  .iq-field.is-error .iq-input,
  .iq-field.is-error .iq-select,
  .iq-field.is-error .iq-textarea {
    border-color: #C0392B;
  }
  
  .iq-field.is-error .iq-input:focus,
  .iq-field.is-error .iq-select:focus,
  .iq-field.is-error .iq-textarea:focus {
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
  }
  
  /* 에러 메시지 */
  .iq-error-msg {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--sc-fs-xs);
    color: #C0392B;
    margin: 0;
    line-height: 1.4;
  }
  
  .iq-error-msg--indent {
    padding-left: calc(20px + var(--sc-sp-sm));
    margin-top: 4px;
  }
  
  /* 힌트 텍스트 */
  .iq-hint {
    font-size: var(--sc-fs-xs);
    color: var(--sc-text-light, #aaa);
    margin: 0;
    line-height: 1.4;
  }
  
  
  /* =============================================
     셀렉트박스
     ============================================= */
  
  .iq-select-wrap {
    position: relative;
  }
  
  .iq-select {
    height: 46px;
    padding: 0 var(--sc-sp-2xl) 0 var(--sc-sp-base);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
  }
  
  .iq-select:focus {
    border-color: #5C8A3C;
    box-shadow: 0 0 0 3px rgba(92, 138, 60, 0.15);
  }
  
  .iq-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sc-text-light, #aaa);
    pointer-events: none;
    display: inline-flex;
    align-items: center;
  }
  
  
  /* =============================================
     텍스트에어리어
     ============================================= */
  
  .iq-textarea-wrap {
    position: relative;
  }
  
  .iq-textarea {
    height: auto;
    padding: var(--sc-sp-base);
    resize: vertical;
    min-height: 160px;
    line-height: 1.7;
  }
  
  .iq-textarea::placeholder {
    color: var(--sc-text-placeholder, #bbb);
  }
  
  .iq-textarea:focus {
    border-color: #5C8A3C;
    box-shadow: 0 0 0 3px rgba(92, 138, 60, 0.15);
  }
  
  .iq-textarea-count {
    position: absolute;
    right: 12px;
    bottom: 10px;
    font-size: 11px;
    color: var(--sc-text-light, #bbb);
    pointer-events: none;
    background-color: rgba(255,255,255,0.85);
    padding: 1px 4px;
    border-radius: 3px;
  }
  
  
  /* =============================================
     첨부파일
     ============================================= */
  
  .iq-file-wrap {
    display: flex;
    align-items: center;
    gap: var(--sc-sp-sm);
  }
  
  .iq-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
  
  .iq-file-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 var(--sc-sp-base);
    border: 1px solid var(--sc-border, #d8d8d8);
    border-radius: var(--sc-radius-md, 8px);
    font-size: var(--sc-fs-xs);
    font-weight: var(--sc-fw-semibold);
    color: var(--sc-text-sub);
    background-color: var(--sc-bg-section, #F5F5F3);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.15s, color 0.15s, background-color 0.15s;
    flex-shrink: 0;
  }
  
  .iq-file-btn:hover {
    border-color: #5C8A3C;
    color: #5C8A3C;
    background-color: #F0F3FC;
  }
  
  .iq-file-name {
    font-size: var(--sc-fs-xs);
    color: var(--sc-text-light, #aaa);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
  }
  
  
  /* =============================================
     개인정보 동의 박스
     ============================================= */
  
  .iq-privacy-box {
    border: 1px solid var(--sc-border-light, #ebebeb);
    border-radius: var(--sc-radius-md, 8px);
    overflow: hidden;
    margin-bottom: var(--sc-sp-base);
  }
  
  .iq-privacy-table-wrap {
    overflow-x: auto;
  }
  
  .iq-privacy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--sc-fs-xs);
  }
  
  .iq-privacy-table th {
    background-color: var(--sc-bg-section, #F5F5F3);
    padding: 10px 14px;
    font-weight: var(--sc-fw-semibold);
    color: var(--sc-text-sub);
    text-align: left;
    border-bottom: 1px solid var(--sc-border-light, #ebebeb);
    white-space: nowrap;
  }
  
  .iq-privacy-table td {
    padding: 10px 14px;
    color: var(--sc-text-sub);
    border-bottom: 1px solid var(--sc-border-light, #ebebeb);
    line-height: 1.5;
  }
  
  .iq-privacy-table tr:last-child td {
    border-bottom: none;
  }
  
  .iq-privacy-notice {
    font-size: 14px;
    color: var(--sc-text-light, #aaa);
    line-height: 1.6;
    padding: var(--sc-sp-sm) var(--sc-sp-base);
    background-color: #FAFAFA;
    border-top: 1px solid var(--sc-border-light, #ebebeb);
    margin: 0;
  }
  
  .iq-privacy-link {
    color: #5C8A3C;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  
  .iq-privacy-link:hover {
    color: #3D6828;
  }
  
  
  /* =============================================
     동의 체크박스 행
     ============================================= */
  
  .iq-agree-row {
    display: flex;
    align-items: center;
    gap: var(--sc-sp-sm);
    padding: var(--sc-sp-md) var(--sc-sp-base);
    border: 1px solid var(--sc-border, #d8d8d8);
    border-radius: var(--sc-radius-md, 8px);
    cursor: pointer;
    transition: border-color 0.15s, background-color 0.15s;
    background-color: var(--sc-bg-white);
    user-select: none;
  }
  
  .iq-agree-row:hover {
    border-color: #5C8A3C;
    background-color: #F7F9FF;
  }
  
  .iq-agree-row.is-error {
    border-color: #C0392B;
  }
  
  .iq-checkbox-wrap {
    position: relative;
    flex-shrink: 0;
  }
  
  /* 실제 input 숨기기 */
  .iq-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* 커스텀 체크박스 */
  .iq-checkbox-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 2px solid var(--sc-border, #d8d8d8);
    border-radius: 4px;
    background-color: var(--sc-bg-white);
    color: transparent;
    transition: border-color 0.15s, background-color 0.15s, color 0.15s;
    flex-shrink: 0;
  }
  
  .iq-checkbox:checked + .iq-checkbox-custom {
    border-color: #5C8A3C;
    background-color: #5C8A3C;
    color: #fff;
  }
  
  .iq-agree-text {
    font-size: var(--sc-fs-sm);
    color: var(--sc-text);
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .iq-agree-text strong {
    font-weight: var(--sc-fw-semibold);
  }
  
  
  /* =============================================
     제출 영역
     ============================================= */
  
  .iq-submit-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sc-sp-sm);
    padding: var(--sc-sp-xl) 0 var(--sc-sp-3xl);
  }
  
  .iq-submit-error {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--sc-fs-sm);
    color: #C0392B;
    margin: 0;
  }
  
  .iq-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sc-sp-sm);
    width: 100%;
    max-width: 400px;
    height: 54px;
    background: linear-gradient(90deg, #5C8A3C 0%, #8FA5D0 100%);
    color: #fff;
    border: none;
    border-radius: var(--sc-radius-full, 999px);
    font-size: var(--sc-fs-lg);
    font-weight: var(--sc-fw-bold);
    font-family: inherit;
    cursor: pointer;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 18px rgba(100, 120, 210, 0.30);
    transition: opacity 0.18s, transform 0.12s, box-shadow 0.18s;
  }
  
  .iq-submit-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(100, 120, 210, 0.38);
  }
  
  .iq-submit-btn:active {
    transform: translateY(0);
  }
  
  .iq-submit-note {
    font-size: var(--sc-fs-xs);
    color: var(--sc-text-light, #aaa);
    margin: 0;
    text-align: center;
  }
  
  
  /* =============================================
     완료 메시지
     ============================================= */
  
  .iq-complete {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sc-sp-base);
    padding: var(--sc-sp-4xl) var(--sc-sp-xl);
    background-color: var(--sc-bg-white);
    border: 1px solid var(--sc-border-light, #ebebeb);
    border-radius: var(--sc-radius-xl, 12px);
    text-align: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  }
  
  .iq-complete__icon {
    margin-bottom: var(--sc-sp-sm);
  }
  
  .iq-complete__title {
    font-size: var(--sc-fs-3xl);
    font-weight: var(--sc-fw-bold);
    color: var(--sc-dark);
    letter-spacing: -0.03em;
    margin: 0;
  }
  
  .iq-complete__desc {
    font-size: var(--sc-fs-md);
    color: var(--sc-text-sub);
    line-height: 1.7;
    margin: 0;
  }
  
  .iq-complete__desc strong {
    color: var(--sc-dark);
    font-weight: var(--sc-fw-semibold);
  }
  
  .iq-complete__btn {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 var(--sc-sp-2xl);
    margin-top: var(--sc-sp-sm);
    background-color: var(--sc-dark);
    color: #fff;
    border-radius: var(--sc-radius-md, 8px);
    font-size: var(--sc-fs-sm);
    font-weight: var(--sc-fw-semibold);
    text-decoration: none;
    transition: background-color 0.18s;
  }
  
  .iq-complete__btn:hover {
    background-color: #444;
  }
  
  
  /* =============================================
     우측 사이드 카드
     ============================================= */
  
  .iq-side-card {
    background-color: var(--sc-bg-white);
    border: 1px solid var(--sc-border-light, #ebebeb);
    border-radius: var(--sc-radius-lg, 10px);
    padding: var(--sc-sp-lg) var(--sc-sp-xl);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  }
  
  .iq-side-card__head {
    display: flex;
    align-items: center;
    gap: var(--sc-sp-xs);
    font-size: var(--sc-fs-sm);
    font-weight: var(--sc-fw-bold);
    color: var(--sc-dark);
    letter-spacing: -0.01em;
    padding-bottom: var(--sc-sp-base);
    border-bottom: 1px solid var(--sc-border-light, #ebebeb);
    margin-bottom: var(--sc-sp-base);
  }
  
  .iq-side-card__head svg {
    color: #5C8A3C;
    flex-shrink: 0;
  }
  
  /* 정보 목록 */
  .iq-side-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--sc-sp-sm);
  }
  
  .iq-side-info-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--sc-sp-sm);
  }
  
  .iq-side-info__label {
    font-size: 14px;
    color: var(--sc-text-light, #aaa);
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .iq-side-info__value {
    font-size: 14px;
    color: var(--sc-text);
    font-weight: var(--sc-fw-medium);
    text-align: right;
  }
  
  .iq-side-card__notice {
    font-size: 14px;
    color: var(--sc-text-light, #aaa);
    line-height: 1.6;
    margin-top: var(--sc-sp-base);
    padding-top: var(--sc-sp-sm);
    border-top: 1px dashed var(--sc-border-light, #ebebeb);
  }
  
  /* 처리 절차 리스트 */
  .iq-process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .iq-process-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sc-sp-sm);
    padding: var(--sc-sp-sm) 0;
    position: relative;
  }
  
  /* 단계 연결선 */
  .iq-process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 10px;
    top: calc(var(--sc-sp-sm) + 20px);
    width: 1px;
    height: calc(100% - var(--sc-sp-sm));
    background-color: var(--sc-border-light, #ebebeb);
  }
  
  .iq-process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #5C8A3C;
    color: #fff;
    font-size: 10px;
    font-weight: var(--sc-fw-bold);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  
  .iq-process-item div {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  
  .iq-process-item strong {
    font-size: var(--sc-fs-xs);
    font-weight: var(--sc-fw-semibold);
    color: var(--sc-dark);
  }
  
  .iq-process-item p {
    font-size: 13px;
    color: var(--sc-text-light, #aaa);
    margin: 0;
    line-height: 1.4;
  }
  
  /* FAQ 바로가기 배너 */
  .iq-side-faq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sc-sp-sm);
    padding: var(--sc-sp-base) var(--sc-sp-lg);
    background: linear-gradient(135deg, #F0F3FC 0%, #EEF0FB 100%);
    border: 1px solid #DDE4F5;
    border-radius: var(--sc-radius-lg, 10px);
    text-decoration: none;
    transition: box-shadow 0.18s, transform 0.15s;
  }
  
  .iq-side-faq:hover {
    box-shadow: 0 4px 12px rgba(100, 120, 210, 0.15);
    transform: translateY(-1px);
  }
  
  .iq-side-faq__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  
  .iq-side-faq__text strong {
    font-size: var(--sc-fs-xs);
    font-weight: var(--sc-fw-bold);
    color: #3D6828;
    letter-spacing: -0.01em;
  }
  
  .iq-side-faq__text span {
    font-size: 13px;
    color: var(--sc-text-light, #aaa);
  }
  
  .iq-side-faq > svg {
    color: #5C8A3C;
    flex-shrink: 0;
  }
  
  
  /* =============================================
     반응형
     ============================================= */
  
  @media (max-width: 960px) {
    .iq-layout {
      grid-template-columns: 1fr;
    }
  
    /* 사이드는 고정 해제, 순서 반전 */
    .iq-side {
      position: static;
      order: -1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sc-sp-base);
    }
  
    /* FAQ 배너 전체폭 */
    .iq-side-faq {
      grid-column: span 2;
    }
  }
  
  @media (max-width: 768px) {
    .iq-hero__title {
      font-size: var(--sc-fs-3xl);
    }
  
    .iq-hero__desc {
      font-size: var(--sc-fs-sm);
    }
  
    .iq-hero__illust {
      display: none;
    }
  
    .iq-section {
      padding: var(--sc-sp-lg);
    }
  
    .iq-field-grid {
      grid-template-columns: 1fr;
      gap: var(--sc-sp-base);
    }
  
    .iq-field--half,
    .iq-field--full {
      grid-column: span 1;
    }
  }
  
  @media (max-width: 640px) {
    .iq-hero {
      padding: var(--sc-sp-2xl) 0 0;
    }
  
    .iq-hero__inner {
      padding: 0 var(--sc-sp-base);
    }
  
    .iq-hero__chips {
      padding: var(--sc-sp-sm) var(--sc-sp-base);
      gap: var(--sc-sp-xs);
    }
  
    .iq-chip + .iq-chip::before {
      display: none;
    }
  
    .iq-chip {
      font-size: 10px;
    }
  
    .iq-side {
      grid-template-columns: 1fr;
    }
  
    .iq-side-faq {
      grid-column: span 1;
    }
  
    .iq-submit-btn {
      max-width: 100%;
    }
  
    .iq-privacy-table th:nth-child(3),
    .iq-privacy-table td:nth-child(3) {
      display: none;
    }
  }
  
  /* =============================================
   subscribe-intro.css
   서비스 소개·안내 페이지 전용 레이아웃 및 컴포넌트
   색상·글씨·간격 등 모든 토큰은 common.css 변수 상속
   ============================================= */

/* ─────────────────────────────────────────────
   히어로 배너
───────────────────────────────────────────── */
.si-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2E5018 0%, var(--sc-primary-dark) 45%, var(--sc-primary) 100%);
  padding: 0;
}

.si-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--sc-site-max);
  margin: 0 auto;
  padding: 80px var(--sc-sp-2xl) 70px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.si-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(123,175,90,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0,0,0,0.15) 0%, transparent 60%);
  z-index: 1;
}

.si-hero__texts {
  color: #fff;
}

.si-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--sc-radius-full);
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-medium);
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.si-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sc-primary-light);
}

.si-hero__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--sc-fw-bold);
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}

.si-hero__title em {
  font-style: normal;
  color: var(--sc-primary-light);
}

.si-hero__desc {
  font-size: var(--sc-fs-lg);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.si-hero__cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.si-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #fff;
  color: var(--sc-primary-dark);
  font-size: var(--sc-fs-md);
  font-weight: var(--sc-fw-bold);
  border-radius: var(--sc-radius-full);
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.si-hero__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}

.si-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: rgba(255,255,255,0.9);
  font-size: var(--sc-fs-md);
  font-weight: var(--sc-fw-medium);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--sc-radius-full);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.si-hero__btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* 배너 이미지 — 박스 없이 원본 비율 그대로 노출 + PNG 모양 따라 그림자 */
.si-hero__banner-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.35)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.si-hero__banner-placeholder {
  width: 100%;
  height: 340px;
  border-radius: var(--sc-radius-xl);
  background: rgba(255,255,255,0.08);
  border: 1.5px dashed rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: var(--sc-fs-sm);
}

/* 스탯 바 */
.si-hero__stats {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.10);
  border-top: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.si-hero__stats-inner {
  max-width: var(--sc-site-max);
  margin: 0 auto;
  padding: 28px var(--sc-sp-2xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.si-stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.si-stat-item:last-child {
  border-right: none;
}

.si-stat-item__number {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: var(--sc-fw-bold);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.si-stat-item__number span {
  font-size: 0.55em;
  font-weight: var(--sc-fw-semibold);
  color: var(--sc-primary-light);
}

.si-stat-item__label {
  font-size: var(--sc-fs-sm);
  color: rgba(255,255,255,0.65);
}

/* ─────────────────────────────────────────────
   페이지 섹션 공통
───────────────────────────────────────────── */
.si-page {
  background-color: var(--sc-bg);
}

.si-section {
  padding: 80px var(--sc-sp-2xl);
}

.si-section--white {
  background-color: var(--sc-bg-white);
}

.si-section--tinted {
  background-color: var(--sc-bg-section);
}

.si-section__inner {
  max-width: var(--sc-site-max);
  margin: 0 auto;
}

/* 섹션 헤더 */
.si-section-head {
  text-align: center;
  margin-bottom: 56px;
}

.si-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-semibold);
  color: var(--sc-primary);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.si-section__eyebrow-line {
  width: 24px;
  height: 2px;
  background: var(--sc-primary);
  border-radius: 2px;
  display: inline-block;
}

.si-section__title {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: var(--sc-fw-bold);
  color: var(--sc-dark);
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.si-section__title em {
  font-style: normal;
  color: var(--sc-primary);
}

.si-section__desc {
  font-size: var(--sc-fs-base);
  color: var(--sc-text-sub);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────
   ① 서비스 플랜 카드
───────────────────────────────────────────── */
.si-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.si-plan-card {
  background: var(--sc-bg-white);
  border: 1.5px solid var(--sc-border);
  border-radius: var(--sc-radius-xl);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}

.si-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sc-shadow-lg);
  border-color: var(--sc-primary-mid);
}

.si-plan-card.is-featured {
  border-color: var(--sc-primary);
  background: linear-gradient(160deg, var(--sc-bg-white) 0%, var(--sc-bg-section) 100%);
  box-shadow: var(--sc-shadow-md);
}

.si-plan-card.is-featured::before {
  content: '추천';
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--sc-primary);
  color: #fff;
  font-size: var(--sc-fs-xs);
  font-weight: var(--sc-fw-bold);
  padding: 4px 12px;
  border-radius: var(--sc-radius-full);
  letter-spacing: 0.03em;
}

.si-plan-card__level {
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-semibold);
  color: var(--sc-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.si-plan-card__name {
  font-size: var(--sc-fs-2xl);
  font-weight: var(--sc-fw-bold);
  color: var(--sc-dark);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.si-plan-card__summary {
  font-size: var(--sc-fs-md);
  color: var(--sc-text-sub);
  margin-bottom: 28px;
  line-height: 1.55;
}

.si-plan-card__price-block {
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--sc-border-light);
  border-bottom: 1px solid var(--sc-border-light);
}

.si-plan-card__price-label {
  font-size: var(--sc-fs-xs);
  color: var(--sc-text-light);
  margin-bottom: 6px;
}

.si-plan-card__price {
  font-size: var(--sc-fs-4xl);
  font-weight: var(--sc-fw-bold);
  color: var(--sc-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.si-plan-card__price span {
  font-size: var(--sc-fs-md);
  font-weight: var(--sc-fw-medium);
  color: var(--sc-text-sub);
  margin-left: 4px;
}

.si-plan-card__price-note {
  font-size: var(--sc-fs-xs);
  color: var(--sc-text-light);
  margin-top: 10px;
}

.si-plan-card__features-title {
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-semibold);
  color: var(--sc-text-sub);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.si-plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}

.si-plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--sc-fs-md);
  color: var(--sc-text);
  line-height: 1.5;
}

.si-plan-card__features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sc-primary-light);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%235C8A3C' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.si-plan-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  border-radius: var(--sc-radius-lg);
  font-size: var(--sc-fs-md);
  font-weight: var(--sc-fw-semibold);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, transform 0.12s;
  border: none;
  font-family: inherit;
}

.si-plan-card__cta--outline {
  background: transparent;
  color: var(--sc-primary-dark);
  border: 1.5px solid var(--sc-primary);
}

.si-plan-card__cta--outline:hover {
  background: var(--sc-primary-light);
}

.si-plan-card__cta--fill {
  background: var(--sc-primary);
  color: #fff;
  border: 1.5px solid var(--sc-primary);
}

.si-plan-card__cta--fill:hover {
  background: var(--sc-primary-dark);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────
   ② 관리비 납부 기간
───────────────────────────────────────────── */
.si-period-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.si-period-card {
  background: var(--sc-bg-white);
  border: 1.5px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  padding: 30px 26px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.si-period-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sc-shadow-md);
}

.si-period-card.is-best {
  border-color: var(--sc-primary);
  background: linear-gradient(150deg, var(--sc-bg-white) 0%, var(--sc-bg-section) 100%);
}

.si-period-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--sc-primary);
  color: #fff;
  font-size: 11px;
  font-weight: var(--sc-fw-bold);
  padding: 4px 10px;
  border-radius: var(--sc-radius-full);
}

.si-period-card__label {
  font-size: var(--sc-fs-md);
  font-weight: var(--sc-fw-semibold);
  color: var(--sc-text);
  margin-bottom: 6px;
  line-height: 1.4;
}

.si-period-card__sublabel {
  font-size: var(--sc-fs-sm);
  color: var(--sc-text-light);
  margin-bottom: 20px;
}

.si-period-card__discount-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 5px;
  padding: 5px 12px;
  background: var(--sc-primary-light);
  color: var(--sc-primary-dark);
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-bold);
  border-radius: var(--sc-radius-md);
  margin-bottom: 16px;
}

.si-period-card__price {
  font-size: var(--sc-fs-4xl);
  font-weight: var(--sc-fw-bold);
  color: var(--sc-dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.si-period-card__price span {
  font-size: var(--sc-fs-md);
  font-weight: var(--sc-fw-medium);
  color: var(--sc-text-sub);
  margin-left: 3px;
}

.si-period-card__note {
  font-size: var(--sc-fs-xs);
  color: var(--sc-text-light);
  margin-bottom: 20px;
}

.si-period-card__desc {
  font-size: var(--sc-fs-sm);
  color: var(--sc-text-sub);
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px solid var(--sc-border-light);
  margin-top: auto;
}

/* 할인 배지가 없는 카드(월간 납부)는 가격+note+desc를 함께 하단으로 정렬 */
.si-period-card:not(:has(.si-period-card__discount-badge)) .si-period-card__price {
  margin-top: auto;
}
.si-period-card:not(:has(.si-period-card__discount-badge)) .si-period-card__desc {
  margin-top: 0;
}

/* ─────────────────────────────────────────────
   ③ 추가 옵션 카드
───────────────────────────────────────────── */
.si-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.si-option-card {
  background: var(--sc-bg-white);
  border: 1.5px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.si-option-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sc-shadow-md);
  border-color: var(--sc-primary-mid);
}

.si-option-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--sc-radius-lg);
  background: var(--sc-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sc-primary);
  flex-shrink: 0;
}

.si-option-card__name {
  font-size: var(--sc-fs-xl);
  font-weight: var(--sc-fw-bold);
  color: var(--sc-dark);
  letter-spacing: -0.02em;
}

.si-option-card__desc {
  font-size: var(--sc-fs-xs);
  color: var(--sc-text-sub);
  line-height: 1.65;
  flex: 1;
}

.si-option-card__desc-line {
  margin: 0 0 8px;
}

.si-option-card__desc-line:last-child {
  margin-bottom: 0;
}

.si-option-card__img-wrap {
  width: 100%;
  height: 180px;
  border-radius: var(--sc-radius-md);
  overflow: hidden;
  background: var(--sc-bg);
}

.si-option-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.si-option-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sc-border);
}

.si-option-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--sc-border-light);
}

.si-option-card__price {
  font-size: var(--sc-fs-xl);
  font-weight: var(--sc-fw-bold);
  color: var(--sc-primary-dark);
  letter-spacing: -0.03em;
}

.si-option-card__price span {
  font-size: var(--sc-fs-md);
  font-weight: var(--sc-fw-medium);
  color: var(--sc-text-light);
  margin-left: 3px;
}

.si-option-card__detail-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--sc-fs-sm);
  color: var(--sc-primary);
  font-weight: var(--sc-fw-medium);
  transition: color 0.15s, gap 0.15s;
  text-decoration: none;
}

.si-option-card__detail-link:hover {
  color: var(--sc-primary-dark);
  gap: 7px;
}

/* ─────────────────────────────────────────────
   ④ 핵심 기능 지그재그
───────────────────────────────────────────── */
.si-feature-list {
  display: flex;
  flex-direction: column;
}

.si-feature-item__texts {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.si-feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  padding: 70px 0;
  border-bottom: 1px solid var(--sc-border-light);
}

.si-feature-item:last-child {
  border-bottom: none;
}

.si-feature-item.is-reverse {
  direction: rtl;
}

.si-feature-item.is-reverse > * {
  direction: ltr;
}

.si-feature-item__number {
  font-size: 4rem;
  font-weight: var(--sc-fw-bold);
  color: var(--sc-border);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: -10px;
}

.si-feature-item__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sc-primary-light);
  color: var(--sc-primary-dark);
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-semibold);
  padding: 5px 14px;
  border-radius: var(--sc-radius-full);
  margin-bottom: 16px;
}

.si-feature-item__title {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: var(--sc-fw-bold);
  color: var(--sc-dark);
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-bottom: 16px;
}

.si-feature-item__desc {
  font-size: var(--sc-fs-lg);
  color: var(--sc-text-sub);
  line-height: 1.8;
  margin-bottom: 24px;
}

.si-feature-item__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.si-feature-item__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--sc-fs-md);
  color: var(--sc-text);
}

.si-feature-item__bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sc-primary);
  flex-shrink: 0;
}

.si-feature-item__visual {
  border-radius: var(--sc-radius-xl);
  overflow: hidden;
  background: var(--sc-primary-light);
  aspect-ratio: 4/3;
  border: 1px solid rgba(15, 30, 8, 0.08);
  box-shadow: 0 8px 28px rgba(15, 30, 8, 0.08), 0 2px 8px rgba(15, 30, 8, 0.04);
}

.si-feature-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.si-feature-item__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--sc-primary-mid);
  font-size: var(--sc-fs-sm);
  font-weight: var(--sc-fw-medium);
  background: linear-gradient(135deg, var(--sc-primary-light) 0%, var(--sc-bg-section) 100%);
}

/* ─────────────────────────────────────────────
   ⑤ 이용 절차 프로세스
───────────────────────────────────────────── */
.si-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.si-process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 36px);
  right: calc(10% + 36px);
  height: 2px;
  background: linear-gradient(to right, var(--sc-primary-light), var(--sc-primary-mid), var(--sc-primary-light));
  z-index: 0;
}

.si-process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.si-process-item__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--sc-bg-white);
  border: 2.5px solid var(--sc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sc-primary);
  margin-bottom: 20px;
  box-shadow: var(--sc-shadow-sm);
}

.si-process-item.is-active .si-process-item__num {
  background: var(--sc-primary);
  color: #fff;
}

.si-process-item__label {
  font-size: var(--sc-fs-md);
  font-weight: var(--sc-fw-semibold);
  color: var(--sc-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.si-process-item__desc {
  font-size: var(--sc-fs-sm);
  color: var(--sc-text-light);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   ⑥ FAQ 아코디언
───────────────────────────────────────────── */
.si-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.si-faq-item {
  background: var(--sc-bg-white);
  border: 1.5px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}

.si-faq-item.is-open {
  border-color: var(--sc-primary-mid);
}

.si-faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.si-faq-item__q-mark {
  font-size: var(--sc-fs-lg);
  font-weight: var(--sc-fw-bold);
  color: var(--sc-primary);
  flex-shrink: 0;
  width: 28px;
}

.si-faq-item__q-text {
  flex: 1;
  font-size: var(--sc-fs-lg);
  font-weight: var(--sc-fw-semibold);
  color: var(--sc-dark);
  line-height: 1.45;
}

.si-faq-item__q-arrow {
  flex-shrink: 0;
  color: var(--sc-text-light);
  transition: transform 0.25s;
}

.si-faq-item.is-open .si-faq-item__q-arrow {
  transform: rotate(180deg);
  color: var(--sc-primary);
}

.si-faq-item__a {
  display: none;
  padding: 0 24px 22px 68px;
  font-size: var(--sc-fs-md);
  color: var(--sc-text-sub);
  line-height: 1.8;
}

.si-faq-item.is-open .si-faq-item__a {
  display: block;
}

/* ─────────────────────────────────────────────
   ⑦ 하단 CTA 배너
───────────────────────────────────────────── */
.si-cta-banner {
  background: linear-gradient(135deg, #2E5018 0%, var(--sc-primary-dark) 50%, var(--sc-primary) 100%);
  padding: 80px var(--sc-sp-2xl);
  position: relative;
  overflow: hidden;
}

.si-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(123,175,90,0.2) 0%, transparent 70%);
}

.si-cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: var(--sc-site-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.si-cta-banner__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--sc-fw-bold);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 12px;
}

.si-cta-banner__title em {
  font-style: normal;
  color: var(--sc-primary-light);
}

.si-cta-banner__desc {
  font-size: var(--sc-fs-lg);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.si-cta-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-shrink: 0;
  min-width: 200px;
}

.si-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--sc-radius-md);
  font-size: var(--sc-fs-md);
  font-weight: var(--sc-fw-bold);
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  border: none;
}

.si-cta-btn--primary {
  background: #fff;
  color: var(--sc-primary-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.si-cta-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}

.si-cta-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.si-cta-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ─────────────────────────────────────────────
   공통 안내 박스
───────────────────────────────────────────── */
.si-notice-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: var(--sc-bg-section);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-md);
  margin-top: 32px;
}

.si-notice-box__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--sc-primary);
  margin-top: 1px;
}

.si-notice-box__text {
  font-size: var(--sc-fs-sm);
  color: var(--sc-text-sub);
  line-height: 1.7;
}

.si-notice-box__text strong {
  color: var(--sc-dark);
  font-weight: var(--sc-fw-semibold);
}

/* ─────────────────────────────────────────────
   반응형
───────────────────────────────────────────── */
@media (max-width: 1320px) {
  .si-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px var(--sc-sp-2xl) 50px;
  }

  .si-hero__stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .si-stat-item:nth-child(2) { border-right: none; }
  .si-stat-item:nth-child(1),
  .si-stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 20px;
  }
  .si-stat-item:nth-child(3),
  .si-stat-item:nth-child(4) { padding-top: 20px; }

  .si-period-grid { grid-template-columns: 1fr 1fr; }

  .si-process-grid { grid-template-columns: repeat(3, 1fr); }
  .si-process-grid::before { display: none; }

  .si-feature-item {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px 0;
  }
  .si-feature-item.is-reverse { direction: ltr; }

  .si-cta-banner__inner { grid-template-columns: 1fr; gap: 28px; }
  .si-cta-banner__actions { flex-direction: row; min-width: unset; }
}

@media (max-width: 768px) {
  .si-section { padding: 64px var(--sc-sp-base); }
  .si-plan-grid { grid-template-columns: 1fr; }
  .si-period-grid { grid-template-columns: 1fr; }
  .si-option-grid { grid-template-columns: 1fr; }
  .si-process-grid { grid-template-columns: 1fr 1fr; }
  .si-cta-banner__actions { flex-direction: column; }
  .si-faq-item__a { padding-left: 24px; }
}

@media (max-width: 480px) {
  .si-process-grid { grid-template-columns: 1fr; }
  .si-hero__cta-group { flex-direction: column; align-items: flex-start; }
  .si-hero__stats-inner { grid-template-columns: 1fr; }
  .si-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 16px; }
  .si-stat-item:last-child { border-bottom: none; }
}