/* 서브페이지는 메인의 초록색 그라데이션 배경을 쓰지 않고 흰 배경 */
body { background: #fff; }

/* ===================== 애니메이션 ===================== */
@keyframes subFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes subFadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes subFadeLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes subFadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes subPopIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes subBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ===================== 서브 공통 컨테이너 ===================== */
.sub-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================== 페이지 타이틀 + 브레드크럼 ===================== */
.subhead {
  position: relative;
  z-index: 100;
  padding: 156px 0 30px;
}
.subhead__inner {
  position: relative;
  z-index: 100;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.subhead__title {
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -3px;
  color: var(--ink);
  animation: subFadeUp 0.6s ease both;
}

.breadcrumb {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 50px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  animation: subFadeUp 0.6s ease 0.1s both;
}
.breadcrumb__home-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.breadcrumb__home { width: 19px; height: 20px; object-fit: contain; display: block; }
.breadcrumb__select {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 16px;
  color: #333;
  letter-spacing: -0.8px;
  background: none;
  border: none;
  cursor: pointer;
}
.breadcrumb__caret { width: 9px; height: auto; transition: transform 0.2s ease; }
.breadcrumb__divider { width: 1px; height: 17px; background: #ededed; }

/* 브레드크럼 드롭다운 */
.breadcrumb__dd { position: relative; z-index: 110; display: flex; align-items: center; }
.breadcrumb__menu {
  position: absolute;
  top: calc(100% + 20px);
  left: -12px;
  min-width: 170px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.breadcrumb__dd.is-open .breadcrumb__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.breadcrumb__dd.is-open .breadcrumb__caret { transform: rotate(180deg); }
.breadcrumb__menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 15px;
  letter-spacing: -0.6px;
  color: #333;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.breadcrumb__menu a:hover { background: #f2f7f3; color: var(--green); }
.breadcrumb__menu a[aria-current="page"] { color: var(--green); font-weight: 700; }

/* ===================== 인트로 비주얼 배너 ===================== */
.introvisual { padding: 0 0 40px; }
.introvisual__inner {
  position: relative;
  container-type: inline-size;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.introvisual__banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1842 / 585;
}
.introvisual__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.introvisual__dim {
  position: absolute;
  inset: 0;
  background: rgba(11, 36, 20, 0.6);
}
.introvisual__text {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.introvisual__line1 {
  font-size: clamp(18px, 3.2vw, 50px);
  font-weight: 800;
  letter-spacing: -2px;
  animation: subFadeUp 0.7s ease 0.1s both;
}
.introvisual__line2 {
  font-size: clamp(16px, 2.8vw, 45px);
  font-weight: 300;
  letter-spacing: -1.5px;
  margin-top: 6px;
  animation: subFadeUp 0.7s ease 0.22s both;
}
/* couple(z-index:1)은 말풍선(z-index:2)보다 뒤에 위치 */
.introvisual__couple {
  position: absolute;
  z-index: 1;
  right: 12%;
  width: 30%;
  top: 0;
  min-width: 140px;
  animation: subFadeRight 0.7s ease 0.15s both;
}
.introvisual__quote {
  position: absolute;
  z-index: 2;
  right: 10%;
  top: 82.1%;
  width: 52%;
  padding: clamp(22px, 3.2cqw, 36px) clamp(22px, 4cqw, 40px);
  background: #fff;
  border: 2px solid #0cb14b;
  border-radius: clamp(14px, 2cqw, 20px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  animation: subPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s both;
}
.introvisual__quote::after {
  content: "";
  position: absolute;
  right: 22%;
  bottom: -9px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 2px solid #0cb14b;
  border-bottom: 2px solid #0cb14b;
  transform: rotate(45deg);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.04);
}
.introvisual__quote-bg {
  display: none;
}
.introvisual__quote-text {
  position: relative;
  z-index: 1;
  font-size: clamp(14px, 1.75cqw, 23px);
  font-weight: 800;
  letter-spacing: -1.25px;
  line-height: 1.5;
  color: var(--ink);
  word-break: keep-all;
}
.introvisual__heart {
  position: absolute;
  z-index: 3;
  right: 13.5%;
  bottom: 66.7%;
  width: clamp(14px, 2.1cqw, 40px);
  opacity: 0;
  animation: subFadeDown 0.6s ease 0.6s both, subBounce 2.4s ease-in-out 1.2s infinite;
}

/* ===================== 사업소개 본문 ===================== */
.introbody { padding: 90px 0 120px; }
.introbody__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.introbody__row {
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: 20px;
  align-items: start;
}
.introbody__deco {
  position: relative;
  aspect-ratio: 551.76 / 538.08;
}
.introbody__house {
  position: absolute;
  z-index: 2;
  left: 50%;
  width: 37.07%;
  top: -168px;
  animation: subFadeUp 0.6s ease 0.2s both, subBounce 2.8s ease-in-out 0.9s infinite;
}
.introbody__bankbook {
  position: absolute;
  width: 64.84%;
}
.introbody__bankbook--main {
  z-index: 1;
  left: 0;
  top: 48.6%;
  opacity: 0.3;
}
.introbody__bankbook--blur {
  z-index: 0;
  left: 2.32%;
  top: 50.3%;
  opacity: 0.15;
  filter: blur(20px);
}
.introbody__text {
  font-size: 18px;
  letter-spacing: -0.9px;
  line-height: 1.65;
  color: var(--ink);
  word-break: keep-all;
}
.introbody__text p { margin-bottom: 26px; }
.introbody__thanks {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -1.25px;
  line-height: 1.6;
  margin-bottom: 0 !important;
}

/* ===================== 반응형 ===================== */
@media (max-width: 1385px) {
  .introvisual__quote-text-br { display: none; }
}

@media (max-width: 1280px) {
  .subhead__title { font-size: 42px; }
  .introbody__row { grid-template-columns: 30% 1fr; }
}

@media (max-width: 1024px) {
  .subhead { padding-top: 190px; }
  .introvisual__couple { width: 26%; right: 6%; }
  .introvisual__quote { right: 6%; width: 55%; padding: 24px 22px; }
  .introbody__row { grid-template-columns: 1fr; }
  .introbody__deco {
    aspect-ratio: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
  }
  .introbody__house, .introbody__bankbook {
    position: static;
    width: auto;
    max-width: 90px;
  }
  .introbody__bankbook--blur { display: none; }
  .introbody__bankbook--main { max-width: 150px; opacity: 1; filter: none; }
}

@media (max-width: 768px) {
  .subhead { padding-top: 150px; }
  .subhead__inner { flex-direction: column; align-items: flex-start; }
  .subhead__title { font-size: 34px; }
  .breadcrumb {
    width: 100%;
    box-sizing: border-box;
    height: 44px;
    padding: 0 14px;
    gap: 10px;
  }
  .breadcrumb__select { font-size: 14px; }
  .breadcrumb__home { width: 16px; height: 17px; }
  .introvisual__couple { width: 30%; right: 4%; }
  .introvisual__heart { width: clamp(12px, 3cqw, 24px); }
  .introvisual__text { left: 24px; max-width: 62%; }
  /* 말풍선 살리고 신혼부부 사진 위로 올라오도록 */
  .introvisual__quote {
    z-index: 5;
    right: 4%;
    width: 64%;
    padding: 22px 18px;
  }
  .introbody { padding: 44px 0 80px; }
  .introbody__text { font-size: 16px; }
  .introbody__thanks { font-size: 20px; }
}

@media (max-width: 480px) {
  .introbody { padding: 32px 0 64px; }
  .subhead__title { font-size: 28px; }
  .breadcrumb { gap: 8px; padding: 0 12px; }
  .breadcrumb__select { font-size: 13px; gap: 6px; }
  .introvisual__banner { border-radius: 14px; }
  .introvisual__quote { padding: 18px 14px; }
  .introvisual__quote-text { font-size: 12px; }
  .introbody__deco { flex-wrap: wrap; }
}

@media (max-width: 360px) {
  .subhead { padding-top: 150px; }
  .subhead__title { font-size: 24px; }
  .breadcrumb { height: 40px; gap: 6px; padding: 0 10px; }
  .breadcrumb__select { font-size: 12px; }
  .breadcrumb__home { width: 15px; height: 16px; }
  .introvisual__quote-text { font-size: 14px; }
  .introbody__house { max-width: 70px; }
  .introbody__bankbook--main { max-width: 120px; }
  .introbody__text { font-size: 15px; }
  .introbody__thanks { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .subhead__title, .breadcrumb,
  .introvisual__line1, .introvisual__line2, .introvisual__couple,
  .introvisual__quote, .introvisual__heart, .introbody__house,
  .guide-hero__img {
    animation: none;
  }
}

/* ===================== 사업안내 페이지 (sub1_2) ===================== */
html, body { overflow-x: hidden; }

.guide { padding: 20px 0 90px; }
.guide__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- 상단 그린 배너 ---------- */
.guide-hero {
  position: relative;
  background: var(--green);
  border-radius: 20px;
  padding: 40px 280px 40px 48px;
  overflow: visible;
  margin-bottom: 70px;
}
.guide-hero__text {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.9;
  word-break: keep-all;
}
.guide-hero__row { display: inline; }
.guide-hero__hl {
  display: inline-block;
  background: #014c1d;
  border-radius: 0.36em;
  padding: 2px 14px;
  margin: 3px 0;
}
.guide-hero__deco {
  position: absolute;
  right: 24px;
  bottom: -36px;
  width: 220px;
  max-width: 30%;
  aspect-ratio: 210 / 157;
  pointer-events: none;
  z-index: 0;
}
.guide-hero__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  animation: subFadeUp 0.7s ease 0.15s both, guideFloatMoney 3s ease-in-out 0.9s infinite;
}
@keyframes guideFloatMoney {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- 섹션(좌측 라벨 + 우측 콘텐츠) ---------- */
.guide-block {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  padding: 30px 0;
}
.guide-block__label {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--ink);
  padding-top: 4px;
}
.guide-block__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

/* ---------- 카드 ---------- */
.gcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 30px 34px;
}
.gcard__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.gcard__head--inline {
  margin-bottom: 0;
  flex-wrap: wrap;
  gap: 100px;
}
.gcard__head--inline + .gbox { margin-top: 16px; }
.gcard__label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.gcard__check { width: 30px; height: 30px; flex-shrink: 0; }
.gcard__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--ink);
  flex-shrink: 0;
}
.gcard__value {
  margin-left: 0;
}
.gcard__value > li {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.9px;
}
.gcard:has(> .gcard__head--inline:only-child) {
  padding-top: 28px;
  padding-bottom: 28px;
}

/* 회색 안내 박스 */
.gbox {
  background: #f8f8f8;
  border-radius: 15px;
  padding: 18px 22px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.8px;
  color: var(--ink);
  word-break: keep-all;
}
.gbox--plain { background: #f8f8f8; }
.gbox--white {
  background: #fff;
  border: 1px solid var(--line);
}
.gbox strong { font-weight: 800; }

/* 지원금 지급: 거주/혼인/적립 정렬 */
.gcond > li {
  display: grid;
  grid-template-columns: 2.2em auto 1fr;
  column-gap: 6px;
  align-items: start;
  padding-left: 18px;
  font-size: 20px;
  line-height: 2.2;
  letter-spacing: -1px;
}
.gcond > li::before { top: 18px; }
.gcond__label { white-space: nowrap; }
.gcond__sep { white-space: nowrap; }
.gcond__val { min-width: 0; word-break: keep-all; }
.gpay-note {
  margin: 18px 0;
  font-size: 16px;
  letter-spacing: -1px;
  color: var(--ink);
  word-break: keep-all;
}
.gpay-exclude {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: -0.8px;
  color: var(--ink);
  word-break: keep-all;
}

/* 지원방식: 회색 칩 박스 가로 나열 */
.gways {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
}
.gways .gbox {
  display: flex;
  align-items: center;
  width: auto;
  min-height: 58px;
  padding: 14px 22px;
  margin: 0;
}
.gways .glist > li {
  font-size: 16px;
  letter-spacing: -0.8px;
  line-height: 1.7;
  padding-left: 16px;
}
.gways .glist > li::before {
  top: 11px;
  width: 5px;
  height: 5px;
}
.gnote { color: #777; font-size: 14px; line-height: 1.6; }
.gnote--block { display: block; margin-top: 6px; }

/* 불릿 리스트 */
.glist { list-style: none; margin: 0; padding: 0; }
.gbox.glist {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  min-height: 78px;
}
.glist > li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.9px;
  color: var(--ink);
  word-break: keep-all;
}
.glist > li + li { margin-top: 10px; }
.glist > li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}
.glist--lg > li { font-size: 20px; line-height: 1.8; }

/* 3열/다열 컬럼 그리드 (카드 내부) */
.gcols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.gcols--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gcol { display: flex; flex-direction: column; min-width: 0; }
.gcol .gcard__head { margin-bottom: 12px; }
.gcol .gbox { flex: 1; }

/* ---------- 표 ---------- */
.gtable-wrap { width: 100%; overflow-x: auto; }
.gtable {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  letter-spacing: -0.4px;
  min-width: 560px;
}
.gtable th, .gtable td {
  border: 1px solid var(--line);
  padding: 14px 16px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.6;
  word-break: keep-all;
}
.gtable thead th { background: #f8f8f8; font-weight: 700; }
.gtable th:first-child,
.gtable td.is-strong {
  white-space: nowrap;
  min-width: 5.5em;
  font-weight: 700;
}
.gtable td.is-left { text-align: left; }
.gtable .is-orange { color: var(--orange); font-weight: 700; }
.gtable__small { display: block; font-size: 14px; color: #777; margin-top: 2px; }
.gtable__total td { background: var(--tint-orange); border-top: 2px solid var(--orange-border); font-weight: 700; }
.gtable__total .is-strong { color: var(--orange); }

/* 제출서류 5번: 라벨 / : / 내용 열 정렬 */
.gdocs {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
}
.gdocs__num { flex-shrink: 0; line-height: 1.7; }
.gdocs__body { flex: 1; min-width: 0; }
.gdocs__line {
  display: grid;
  grid-template-columns: 5.2em auto 1fr;
  column-gap: 6px;
  align-items: start;
  line-height: 1.7;
}
.gdocs__line + .gdocs__line { margin-top: 0; }
.gdocs__label { white-space: nowrap; }
.gdocs__sep { white-space: nowrap; }
.gdocs__val { min-width: 0; }

/* ---------- CTA 버튼 ---------- */
.guide-cta {
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 46px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 340px;
  height: 72px;
  border: none;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -1.3px;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.gbtn:hover { transform: translateY(-2px); }
.gbtn--fill { background: var(--green); color: #fff; }
.gbtn--fill:hover { box-shadow: 0 10px 22px rgba(12, 177, 75, 0.3); }
.gbtn--outline { background: #fff; color: var(--green); border: 1px solid var(--green); }
.gbtn--outline:hover { box-shadow: 0 10px 22px rgba(12, 177, 75, 0.18); }
.gbtn__icon { width: 26px; height: 26px; }
.gbtn--fill .gbtn__icon { transform: translateX(2px); }

/* ---------- 사업안내 반응형 ---------- */
@media (max-width: 1024px) {
  .guide-block {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
  }
  .guide-block__label {
    font-size: 26px;
    padding: 0 0 4px;
    border-bottom: 3px solid var(--green);
    align-self: flex-start;
  }
  .guide-hero {
    padding: 28px 160px 28px 28px;
    margin-bottom: 40px;
  }
  .guide-hero__deco { right: 8px; bottom: -24px; width: 150px; max-width: 34%; }
}

@media (max-width: 768px) {
  .guide { padding: 8px 0 48px; }
  .guide__inner { padding: 0 16px; }
  .guide-block { padding: 16px 0; gap: 12px; }
  .gcard { padding: 20px 16px; }
  .gcard__head--inline { gap: 16px; }
  .gcols,
  .gcols--2 { grid-template-columns: 1fr; gap: 12px; }
  .gways { flex-direction: column; gap: 10px; }
  .gways .gbox { width: 100%; }
  .guide-block__label { font-size: 22px; }
  .gbtn { min-width: 0; width: 100%; height: 62px; font-size: 18px; }
  .guide-cta { padding-top: 28px; }
  .glist > li { font-size: 16px; }
  .glist--lg > li { font-size: 17px; }
  .guide-hero {
    padding: 20px 16px 20px;
    margin-bottom: 28px;
    border-radius: 16px;
  }
  .guide-hero__br { display: none; }
  .guide-hero__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-right: 88px;
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: -0.5px;
  }
  .guide-hero__row { display: block; }
  .guide-hero__hl {
    margin: 0;
    padding: 5px 10px;
    font-size: 15px;
    line-height: 1.35;
    white-space: normal;
    max-width: 100%;
    word-break: keep-all;
  }
  .guide-hero__deco {
    right: 6px;
    bottom: -14px;
    width: 108px;
    max-width: 32%;
  }
}

@media (max-width: 480px) {
  .guide__inner { padding: 0 14px; }
  .guide-hero {
    padding: 18px 14px 18px;
    margin-bottom: 24px;
  }
  .guide-hero__text {
    gap: 5px;
    padding-right: 76px;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.4px;
  }
  .guide-hero__hl {
    padding: 4px 8px;
    font-size: 13px;
  }
  .guide-hero__deco {
    right: 2px;
    bottom: -12px;
    width: 90px;
    max-width: 28%;
  }
  .gcard { padding: 16px 14px; }
  .gbox { padding: 14px 16px; font-size: 15px; }
  .gtable { font-size: 14px; }
}

/* ===================== FAQ 페이지 (sub3_1) ===================== */
.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.faq {
  padding: 0 0 90px;
}
.faq__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 24px;
  border-top: 1px solid var(--line);
}
.faq__count {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.9px;
  color: #222;
}
.faq__count span {
  color: var(--green);
}
.faq__search {
  position: relative;
  width: min(334px, 100%);
  height: 55px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.faq__search-input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 54px 0 26px;
  font: inherit;
  font-size: 18px;
  letter-spacing: -0.9px;
  color: #222;
}
.faq__search-input::placeholder {
  color: #999;
}
.faq__search-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.faq__search-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.is-open {
  border-color: var(--green);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
}
.faq-item__q {
  margin: 0;
}
.faq-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 85px;
  padding: 24px 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.faq-item__title {
  flex: 1;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #222;
  word-break: keep-all;
}
.faq-item.is-open .faq-item__title {
  color: var(--green);
}
.faq-item__caret {
  flex-shrink: 0;
  width: 12px;
  height: auto;
  transform: rotate(-90deg);
  transition: transform 0.25s ease, filter 0.2s ease;
}
.faq-item.is-open .faq-item__caret {
  transform: rotate(90deg);
  filter: invert(48%) sepia(79%) saturate(467%) hue-rotate(87deg) brightness(95%) contrast(96%);
}
.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}
.faq-item__a {
  overflow: hidden;
  min-height: 0;
  padding: 0 38px;
  font-size: 16px;
  letter-spacing: -0.8px;
  color: #222;
  word-break: keep-all;
  transition: padding 0.35s ease;
}
.faq-item.is-open .faq-item__a {
  padding: 4px 38px 28px;
}
.faq-item__a p {
  margin: 0;
  line-height: 2.0rem;
}

.faq__paging {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -1px;
}
.faq__paging a {
  color: #222;
  text-decoration: none;
}
.faq__paging a.is-current {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1024px) {
  .faq__toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-top: 24px;
  }
  .faq__search { width: 100%; }
  .faq-item__btn { padding: 20px 22px; min-height: 72px; }
  .faq-item__title { font-size: 17px; }
  .faq-item__a { padding: 0 22px; font-size: 15px; }
  .faq-item.is-open .faq-item__a { padding: 4px 22px 22px; }
}

@media (max-width: 768px) {
  .faq { padding-bottom: 60px; }
  .faq__count { font-size: 16px; }
  .faq__search { height: 48px; }
  .faq__search-input { font-size: 15px; padding: 0 48px 0 18px; }
  .faq__search-btn { right: 14px; width: 22px; height: 22px; }
  .faq-item { border-radius: 12px; }
  .faq-item__btn { padding: 16px 16px; gap: 12px; min-height: 64px; }
  .faq-item__title { font-size: 15px; letter-spacing: -0.6px; }
  .faq-item__a { padding: 0 16px; font-size: 14px; }
  .faq-item.is-open .faq-item__a { padding: 4px 16px 16px; }
  .faq-item__caret { width: 9px; }
  .faq__paging { margin-top: 32px; font-size: 18px; gap: 20px; }
}

/* ===================== 게시판 목록 (공지사항) ===================== */
.board { padding: 0 0 90px; }
.board__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.board-table-wrap { width: 100%; overflow-x: auto; }
.board-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 16px;
  letter-spacing: -0.4px;
}
.board-table thead th {
  padding: 18px 16px;
  background: #f8f8f8;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-align: center;
}
.board-table tbody td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
  color: #444;
}
.board-table tbody tr { transition: background 0.15s ease; }
.board-table tbody tr:hover { background: #f9fbf9; }
.board-table tbody tr.is-notice { background: var(--tint-green); }
.board-table tbody tr.is-notice:hover { background: var(--tint-green); }
.board-table td.board-num { color: #999; font-weight: 700; width: 90px; }
.board-table td.board-date,
.board-table td.board-hit { width: 140px; color: #888; }
.board-table td.board-title { text-align: left; }
.board-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 26px;
  padding: 0 12px;
  border-radius: 100px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.board-title__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-weight: 700;
  letter-spacing: -0.6px;
  word-break: keep-all;
}
.board-table tr.is-notice .board-title__link { color: var(--green-dark); }
.board-title__link:hover { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.board-title__clip {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  color: #999;
}

@media (max-width: 1024px) {
  .board-table td.board-date { width: 110px; }
  .board-table td.board-hit { width: 90px; }
}
@media (max-width: 768px) {
  .board { padding-bottom: 60px; }

  /* 목록: 표 대신 카드 1개씩 세로 나열 */
  .board-table-wrap { overflow-x: visible; }
  .board-table { min-width: 0; font-size: 14px; }
  .board-table thead { display: none; }
  .board-table, .board-table tbody, .board-table tr, .board-table td { display: block; width: 100%; }
  .board-table tbody tr {
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }
  .board-table tbody tr:first-child { border-top: 1px solid var(--line); }
  .board-table tbody tr:hover { background: none; }
  .board-table tbody tr.is-notice:hover { background: var(--tint-green); }

  .board-table tbody td { padding: 0; border: 0; text-align: left; }
  .board-table td.board-num { display: none; }
  .board-table tr.is-notice td.board-num { display: block; margin-bottom: 12px; }
  .board-table td.board-title { margin-bottom: 12px; }
  .board-table .board-title__link { font-size: 15px; line-height: 1.5; white-space: normal; color: #222; }
  .board-table td.board-hit { display: none; }
  .board-table td.board-date { font-size: 13px; color: #999; }
}

/* ===================== 게시판 상세보기 (공지사항) ===================== */
.board-view { padding: 0 0 90px; }
.board-view__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.board-view__head {
  padding: 30px 0 24px;
  border-top: 2px solid var(--ink);
}
.board-view__title {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #222;
  word-break: keep-all;
}
.board-view__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin-top: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: #888;
}
.board-view__meta strong { color: #444; font-weight: 700; margin-right: 4px; }

.board-view__body {
  padding: 44px 4px;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  letter-spacing: -0.4px;
  word-break: keep-all;
  border-bottom: 1px solid var(--line);
}
.board-view__body p { margin: 0 0 18px; }
.board-view__body p:last-child { margin-bottom: 0; }
.board-view__body img { max-width: 100%; border-radius: 12px; margin: 24px 0; }

.board-view__files {
  margin: 28px 0 0;
  padding: 22px 26px;
  background: #f8faf8;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.board-view__files-title {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}
.board-view__file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: #333;
}
.board-view__file + .board-view__file { border-top: 1px dashed var(--line); }
.board-view__file-icon { flex-shrink: 0; width: 18px; height: 18px; color: var(--green); }
.board-view__file-name { word-break: break-all; }
.board-view__file-dl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--green);
  transition: background 0.15s ease;
}
.board-view__file-dl svg { width: 18px; height: 18px; }
.board-view__file-dl:hover { background: var(--tint-green); }

.board-view__nav { margin-top: 0; }
.board-view__nav-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}
.board-view__nav-dir {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  width: 90px;
  font-size: 14px;
  font-weight: 700;
  color: #555;
}
.board-view__nav-dir svg { width: 11px; height: 11px; }
.board-view__nav-row a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  color: #333;
}
.board-view__nav-row a:hover { color: var(--green); }
.board-view__nav-row.is-empty a { color: #bbb; pointer-events: none; }

.board-view__actions {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

@media (max-width: 768px) {
  .board-view { padding-bottom: 60px; }
  .board-view__title { font-size: 21px; }
  .board-view__meta { font-size: 13px; gap: 6px 14px; }
  .board-view__body { padding: 28px 2px; font-size: 15px; }
  .board-view__files { padding: 18px 18px; }
  .board-view__nav-dir { width: 70px; font-size: 13px; }
  .board-view__nav-row a { font-size: 14px; }
}

/* ===================== 마이페이지 (0-1) ===================== */
.mypage { padding: 20px 0 90px; }
.mypage__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- 신청상태 요약카드 ---------- */
.mstatus-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 40px;
  margin-bottom: 50px;
}
.mstatus-card__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.mstatus-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.mstatus-card__meta-item {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 12px 18px;
}
.mstatus-card__meta-item dt {
  font-size: 14px;
  color: var(--gray2);
  margin-bottom: 4px;
}
.mstatus-card__meta-item dd {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.mstatus-card__meta-item dd.is-accent { color: var(--green-dark); }

.msaving-view { margin-top: 36px; }

/* ---------- 나의적립현황: 적립 요약 ---------- */
.msaving-summary {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  margin: 0 0 30px;
}
.msaving-summary__item {
  background: #f8f8f8;
  border-radius: 15px;
  padding: 20px 22px;
}
.msaving-summary__item--main { background: var(--tint-green); }
.msaving-summary__item dt { font-size: 14px; color: var(--gray2); margin-bottom: 8px; }
.msaving-summary__item--main dt { color: var(--green-dark); }
.msaving-summary__item dd { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -0.5px; }
.msaving-summary__item--main dd { font-size: 26px; color: var(--green-dark); }
.msaving-summary__item--main dd span { font-size: 16px; font-weight: 700; margin-left: 2px; }
.msaving-summary__sub { margin-top: 6px; font-size: 14px; color: var(--gray2); }

/* ---------- 나의적립현황: 년도별 월별 체크 ---------- */
.myear-check { margin-top: 30px; }
.myear-check__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.myear-check__title {
  position: relative;
  padding-left: 14px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}
.myear-check__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 15px;
  background: var(--green);
  border-radius: 2px;
}
.myear-tabs { display: flex; gap: 6px; }
.myear-tabs__btn {
  height: 34px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray2);
  cursor: pointer;
}
.myear-tabs__btn.is-active { border-color: var(--green); background: var(--green); color: #fff; }
.myear-panel { display: none; }
.myear-panel.is-active { display: block; }
.myear-table th, .myear-table td { text-align: center; }
.myear-table .is-empty { color: #d8d8d8; }
.mcheck-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

/* ---------- 하단: CTA 3버튼 ---------- */
.mbottom__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: 100%;
}
.mbottom__actions .gbtn { min-width: 220px; height: 58px; font-size: 16px; }
.mstatus-card__hint {
  font-size: 14px;
  color: var(--gray2);
  line-height: 1.6;
  max-width: 320px;
  word-break: keep-all;
}

/* 상태 배지 */
.mstatus-badge {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 22px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.8px;
  white-space: nowrap;
}
.mstatus-badge--sm { height: 30px; padding: 0 14px; font-size: 14px; }
.mstatus-badge--received  { background: var(--tint-blue); color: var(--blue); border: 1px solid var(--blue); }
.mstatus-badge--review    { background: var(--tint-orange); color: var(--orange); border: 1px solid var(--orange); }
.mstatus-badge--selected  { background: var(--green); color: #fff; }
.mstatus-badge--rejected  { background: #f2f2f2; color: var(--gray2); border: 1px solid #ccc; }
.mstatus-badge--waiting   { background: var(--tint-blue); color: var(--blue); border: 1px dashed var(--blue); }
.mstatus-badge--paying    { background: var(--green-dark); color: #fff; }
.mstatus-badge--completed { background: var(--ink); color: #fff; }

/* ---------- 탭 ---------- */
.mtabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
  overflow-x: auto;
  overflow-y: hidden;
}
.mtabs__btn {
  flex-shrink: 0;
  padding: 16px 20px;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.9px;
  color: var(--gray2);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.mtabs__btn:hover { color: var(--ink); }
.mtabs__btn.is-active { color: var(--green); border-color: var(--green); }

.mtab-panel { animation: subFadeUp 0.4s ease both; }
.mtab-panel[hidden] { display: none; }

/* ---------- 정보 그리드 ---------- */
.minfo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 30px;
}
.minfo-item {
  background: #f8f8f8;
  border-radius: 15px;
  padding: 20px 24px;
}
.minfo-item dt { font-size: 14px; color: var(--gray2); margin-bottom: 8px; }
.minfo-item dd { font-size: 16px; font-weight: 700; letter-spacing: -0.5px; color: var(--ink); }

/* ---------- 진행률 바 (24개월 블록) ---------- */
.mprogress { margin: 0 0 30px; }
.mprogress__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.mprogress__title {
  position: relative;
  padding-left: 14px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
}
.mprogress__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: var(--green);
  border-radius: 2px;
}
.mprogress__label strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: var(--green-dark);
}
.mprogress__percent {
  font-weight: 800;
  color: var(--green);
  margin-left: 2px;
}

.mprogress__track {
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  grid-template-rows: auto 14px;
  column-gap: 4px;
  row-gap: 8px;
}

/* 진행 마커: 완료된 마지막 칸 위에 배지 + 연결선 */
.mprogress__marker {
  grid-row: 1;
  align-self: end;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mprogress__marker-badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.4px;
  white-space: nowrap;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(12, 177, 75, 0.28);
}
.mprogress__marker-line {
  width: 2px;
  height: 12px;
  background: var(--green);
  margin-top: 2px;
}

.mprogress__blocks {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  column-gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 14px;
}
.mprogress__blocks li {
  background: #eef0f0;
  border-radius: 3px;
}
.mprogress__blocks li.is-filled { background: var(--green); }
.mprogress__blocks li.is-current {
  background: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(13, 114, 52, 0.18);
}

.mnotice-box p + p { margin-top: 8px; }
.mnotice-box strong { display: inline-block; min-width: 7.5em; font-weight: 800; }

/* ---------- 개인정보 변경요청 폼 ---------- */
.mform { display: flex; flex-direction: column; gap: 22px; max-width: 640px; margin-top: 26px; }
.mform__row { display: flex; flex-direction: column; gap: 8px; }
.mform__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: var(--ink);
}
.mform__label small { font-size: 13px; font-weight: 400; color: var(--gray2); margin-left: 6px; }
.mform__input,
.mform__select,
.mform__textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 18px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
}
.mform__input,
.mform__select { height: 52px; }
.mform__select { appearance: none; background-image: url('/design/dalseong-main/images/sub/breadcrumb-caret-82400ccc07b715f902959f4fc9b48bd1.svg'); background-repeat: no-repeat; background-position: right 18px center; background-size: 11px; }
.mform__textarea { min-height: 120px; padding: 14px 18px; resize: vertical; line-height: 1.6; }
.mform__input--locked { background: #f8f8f8; color: var(--gray2); }
.mform__input[type="file"] { padding: 12px 14px; height: auto; }
.mform__submit { align-self: flex-start; min-width: 200px; height: 56px; font-size: 17px; }

/* ---------- 알림/공지 리스트 ---------- */
.mnotice-list { display: flex; flex-direction: column; gap: 10px; }
.mnotice {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 24px;
}
.mnotice__tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
}
.mnotice__tag--kakao { background: var(--tint-orange); color: var(--orange); }
.mnotice__tag--notice { background: var(--tint-blue); color: var(--blue); }
.mnotice__title {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  letter-spacing: -0.6px;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mnotice__date { flex-shrink: 0; font-size: 14px; color: var(--gray2); }

/* ---------- 하단 문의 CTA + 회원탈퇴 ---------- */
.mbottom {
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mbottom__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.mbottom .gbtn { min-width: 260px; height: 60px; font-size: 17px; }
.mwithdraw {
  font: inherit;
  font-size: 14px;
  color: var(--gray2);
  background: none;
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.mwithdraw:hover { color: var(--ink); }

/* ---------- 마이페이지 반응형 ---------- */
@media (max-width: 1024px) {
  .mstatus-card { padding: 26px 28px; }
  .mstatus-card__hint { max-width: 100%; }
  .mtabs__btn { padding: 14px 16px; font-size: 16px; }
}

@media (max-width: 768px) {
  .mypage { padding: 8px 0 60px; }
  .mstatus-card { flex-direction: column; align-items: flex-start; padding: 22px 20px; border-radius: 16px; margin-bottom: 32px; }
  .mstatus-card__left { gap: 16px; }
  .mstatus-card__meta { gap: 18px; }
  .mtabs { gap: 2px; margin-bottom: 26px; }
  .mtabs__btn { padding: 12px 14px; font-size: 15px; }
  .minfo-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }
  .msaving-summary { grid-template-columns: 1fr; gap: 10px; margin-bottom: 24px; }
  .msaving-summary__item--main dd { font-size: 22px; }
  .myear-check__head { flex-direction: column; align-items: flex-start; }

  /* 신청내역조회: 표 대신 카드 1개씩 세로 나열 */
  .gtable--stack { min-width: 0; border: none; }
  .gtable--stack thead { display: none; }
  .gtable--stack, .gtable--stack tbody, .gtable--stack tr, .gtable--stack td { display: block; width: 100%; }
  .gtable--stack tr {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
  }
  .gtable--stack tr:last-child { margin-bottom: 0; }
  .gtable--stack td {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 18px;
    border: none;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }
  .gtable--stack td:last-child { border-bottom: none; }
  .gtable--stack td::before {
    content: attr(data-label);
    font-size: 14px;
    font-weight: 700;
    color: var(--gray2);
  }

  .mprogress { margin-bottom: 24px; }
  .mprogress__label { flex-direction: column; align-items: flex-start; gap: 4px; }
  .mprogress__track, .mprogress__blocks { column-gap: 2px; }
  .mprogress__marker-badge { height: 24px; padding: 0 9px; font-size: 14px; }
  .mnotice { flex-wrap: wrap; padding: 16px 18px; }
  .mnotice__title { flex-basis: 100%; order: 3; white-space: normal; }
  .mbottom { margin-top: 40px; padding-top: 32px; }
  .mbottom .gbtn { width: 100%; min-width: 0; }
}

@media (max-width: 480px) {
  .mstatus-badge { height: 34px; padding: 0 16px; font-size: 14px; }
  .mstatus-card__meta-item dd { font-size: 16px; }
  .gtable { font-size: 13px; }
  .gtable.myear-table { font-size: 14px; }
  .gtable.gtable--stack { font-size: 16px; }
  .mform__submit { width: 100%; }
  .mprogress__track, .mprogress__blocks { column-gap: 1px; }
  .mprogress__blocks { height: 12px; }
  .mprogress__blocks li { border-radius: 2px; }
}

/* ===================== 가입신청 (sub2, 5단계) ===================== */
.apply { padding: 20px 0 100px; }
.apply__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- 스텝 인디케이터 ---------- */
.stepnav { padding: 4px 0 48px; }
.stepnav__inner { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.stepnav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.stepnav__item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
/* 연결선 베이스(회색) - 모든 항목에 항상 표시, 완료된 항목만 위에 초록색이 덧그려짐 */
.stepnav__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: var(--line);
  z-index: 0;
}
/* 완료된 항목: 회색 선 위로 초록색이 왼쪽 → 오른쪽으로 자연스럽게 그어짐 */
.stepnav__item.is-done:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: var(--green);
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}
.stepnav__item.is-done.is-filled:not(:last-child)::after {
  transform: scaleX(1);
}
.stepnav__circle {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  color: var(--gray2);
  font-size: 18px;
  font-weight: 800;
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}
.stepnav__item.is-filled .stepnav__circle {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}
.stepnav__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray2);
  letter-spacing: -0.5px;
  word-break: keep-all;
  transition: color 0.4s ease;
}
.stepnav__item.is-filled.is-done .stepnav__text { color: var(--ink); font-weight: 700; }
.stepnav__item.is-filled.is-current .stepnav__text { color: var(--green-dark); font-weight: 800; }

/* 현재 단계 원 뒤로 연한 원이 커졌다 작아지는 바운스 펄스 - 채우기가 실제로 끝난 뒤 JS가 is-pulsing을 붙이면 시작
   circle 내부 ::after(z-index:-1)로 넣으면 flex 자식 스태킹 문제로 원 배경 위에 그려지는 크로미움 문제가 있어,
   item의 ::after로 분리해 자연스러운 페인트 순서(먼저 그려진 요소가 아래)로 원 뒤에 위치시킨다.
   (::before는 회색 연결선이 항상 표시되어야 하므로 여기서는 사용하지 않는다) */
.stepnav__item.is-current.is-pulsing::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.18;
  animation: stepPulse 1.4s ease-out infinite;
}

@keyframes stepPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.5); }
}

@media (prefers-reduced-motion: reduce) {
  .stepnav__item.is-done:not(:last-child)::after,
  .stepnav__circle,
  .stepnav__text,
  .stepnav__item.is-current.is-pulsing::after {
    transition: none;
    animation: none;
  }
}

/* ---------- 스텝 공통 카드/타이틀 ---------- */
.apply-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 24px;
}
.apply-card__head { margin-bottom: 24px; }
.apply-card__title {
  position: relative;
  padding-left: 14px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
}
.apply-card__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 17px;
  background: var(--green);
  border-radius: 2px;
}
.apply-card__desc {
  margin-top: 8px;
  padding-left: 14px;
  font-size: 14px;
  color: var(--gray2);
  line-height: 1.6;
  word-break: keep-all;
}
.apply-card + .apply-card { margin-top: 24px; }

/* ---------- 폼 공통 요소 ---------- */
.gform { display: flex; flex-direction: column; gap: 20px; }
.gform__row { display: flex; flex-direction: column; gap: 8px; }
.gform__row--2col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.gform__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.gform__label .greq { color: var(--orange); margin-left: 2px; }
.gform__label small { font-size: 13px; font-weight: 400; color: var(--gray2); margin-left: 6px; }
.gform__hint { font-size: 13px; color: var(--gray2); line-height: 1.6; word-break: keep-all; }
.gform__inline { display: flex; gap: 8px; }
.gform__inline .ginput { flex: 1; }

.ginput,
.gselect,
.gtextarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 18px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
}
.ginput,
.gselect { height: 52px; }
.gselect {
  appearance: none;
  background-image: url('/design/dalseong-main/images/sub/breadcrumb-caret-82400ccc07b715f902959f4fc9b48bd1.svg');
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 11px;
}
.gtextarea { min-height: 110px; padding: 14px 18px; resize: vertical; line-height: 1.6; }
.ginput::placeholder,
.gtextarea::placeholder { color: #aaa; }
.ginput--locked { background: #f8f8f8; color: var(--gray2); }
.ginput[type="file"] { padding: 12px 14px; height: auto; }
.ginput:disabled,
.gselect:disabled { background: #f8f8f8; color: var(--gray2); cursor: not-allowed; }

.gbtn--sm { min-width: 0; height: 52px; padding: 0 22px; font-size: 15px; }

/* 라디오/체크 그룹 (신청목적 등) */
.gradio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.gradio-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.gradio-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.gradio-chip:has(input:checked) {
  border-color: var(--green);
  background: var(--tint-green);
  color: var(--green-dark);
}

/* 체크박스 행 (약관동의) */
.gcheck-all {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  background: var(--tint-green);
  border: 1px solid var(--green);
  border-radius: 16px;
  margin-bottom: 16px;
}
.gcheck-all input[type="checkbox"] { width: 24px; height: 24px; cursor: pointer; flex-shrink: 0; }
.gcheck-all label { font-size: 18px; font-weight: 800; color: var(--green-dark); cursor: pointer; }

.gcheck-plain {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.gcheck-plain:has(input:checked) {
  border-color: var(--green);
  background: var(--tint-green);
}
.gcheck-plain + .gcheck-plain { margin-top: 8px; }
.gcheck-plain input[type="checkbox"] { width: 20px; height: 20px; cursor: pointer; flex-shrink: 0; }
.gcheck-plain label { font-size: 15px; color: var(--ink); cursor: pointer; }

/* 체크박스 공통: 브라우저/OS 기본 체크표시 대신 흰색 체크를 직접 그림 */
.gcheck-all input[type="checkbox"],
.gcheck-plain input[type="checkbox"],
.gterms__left input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  margin: 0;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 6px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.gcheck-all input[type="checkbox"]:checked,
.gcheck-plain input[type="checkbox"]:checked,
.gterms__left input[type="checkbox"]:checked {
  background: var(--green);
  border-color: var(--green);
}
.gcheck-all input[type="checkbox"]:checked::after,
.gcheck-plain input[type="checkbox"]:checked::after,
.gterms__left input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 44%;
  width: 32%;
  height: 58%;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.gterms { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.gterms + .gterms { margin-top: 10px; }
.gterms[open] { border-color: var(--green); }
.gterms__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}
.gterms__summary::-webkit-details-marker { display: none; }
.gterms__left { display: flex; align-items: center; gap: 12px; }
.gterms__left input[type="checkbox"] { width: 22px; height: 22px; cursor: pointer; flex-shrink: 0; }
.gterms__label { font-size: 16px; font-weight: 700; color: var(--ink); word-break: keep-all; }
.gterms__label .greq { color: var(--orange); font-weight: 800; font-size: 14px; margin-left: 4px; }
.gterms__label .gopt { color: var(--gray2); font-weight: 700; font-size: 14px; margin-left: 4px; }
.gbtn--full { width: 100%; min-width: 0; }
.gterms__right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; font-size: 14px; color: var(--gray2); }
.gterms__caret { width: 11px; height: auto; transition: transform 0.2s ease; }
.gterms[open] .gterms__caret { transform: rotate(180deg); }
.gterms__body {
  padding: 14px 22px 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.8;
  color: #666;
  max-height: 180px;
  overflow-y: auto;
  word-break: keep-all;
}
.gterms--sensitive { border-color: var(--orange-border); }
.gterms--sensitive .gterms__summary { background: var(--tint-orange); }

/* ---------- 신청자격 자가진단 (예/아니오 질문 카드) ---------- */
.qcheck-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }

/* 필수 제출 서류 목록 (번호 목록) */
.doclist {
  list-style: decimal;
  padding-left: 22px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.doclist li {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
  word-break: keep-all;
}
.adoc-lead { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.adoc-sub { font-size: 15px; color: var(--gray2); margin-bottom: 14px; line-height: 1.6; word-break: keep-all; }
.adoc-desc { margin-top: 22px; font-size: 15px; line-height: 1.8; color: var(--ink); word-break: keep-all; }
.adoc-desc strong { color: var(--green-dark); font-weight: 800; }
.qcheck {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
}
.qcheck__head { display: flex; align-items: flex-start; gap: 14px; }
.qcheck__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--tint-green);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}
.qcheck__body { min-width: 0; }
.qcheck__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.qcheck__desc {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
  word-break: keep-all;
}
.qcheck__note {
  margin-top: 6px;
  font-size: 13px;
  color: var(--gray2);
  line-height: 1.6;
  word-break: keep-all;
}
.qcheck__answer { display: flex; gap: 10px; padding-left: 44px; }
.qcheck__answer .gradio-chip { min-width: 88px; justify-content: center; }

/* ---------- 안내 배너 (인증/계좌 등) ---------- */
.gnotice-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 22px;
  margin-bottom: 20px;
  background: var(--tint-blue);
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  word-break: keep-all;
}
.gnotice-banner strong { color: var(--blue); font-weight: 800; }
.gnotice-banner--orange { background: var(--tint-orange); }
.gnotice-banner--orange strong { color: var(--orange); }

/* ---------- 본인인증 ---------- */
.averify {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 30px 20px;
  text-align: center;
}
.averify__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 18px;
  border-radius: 100px;
  background: #f2f2f2;
  color: var(--gray2);
  font-size: 14px;
  font-weight: 700;
}
.averify__badge.is-done { background: var(--tint-green); color: var(--green-dark); }
.averify__btn {
  min-width: 260px;
  height: 60px;
  font-size: 17px;
}

/* ---------- 가입자격검증: 심사상태 + 주민등록번호 입력 ---------- */
.areview-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  margin-bottom: 20px;
  background: #f8f8f8;
  border-radius: 12px;
}
.areview-status__label { font-size: 14px; font-weight: 700; color: var(--gray2); }
.gform__inline--rrn { align-items: center; }
.gform__inline--rrn span { color: var(--gray2); flex-shrink: 0; }

/* ---------- 문서제출 현황 (행정정보 공동이용 조회 결과) ---------- */
.docstatus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.docstatus {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.docstatus__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
}
.docstatus__body { min-width: 0; }
.docstatus__name { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.4; word-break: keep-all; }
.docstatus__state { font-size: 15px; font-weight: 800; margin-top: 2px; }

.docstatus--done {
  border-color: var(--green);
  background: var(--tint-green);
}
.docstatus--done .docstatus__icon { background: #fff; color: var(--green); }
.docstatus--done .docstatus__state { color: var(--green); }

.docstatus--missing {
  border-color: var(--line);
  background: #f8f8f8;
}
.docstatus--missing .docstatus__icon { background: #f2f2f2; color: var(--gray2); }
.docstatus--missing .docstatus__state { color: var(--gray2); }

.docstatus--checking {
  border-color: var(--blue);
  background: var(--tint-blue);
}
.docstatus--checking .docstatus__icon {
  background: transparent;
  border: 3px solid #fff;
  border-top-color: var(--blue);
  animation: docSpin 0.8s linear infinite;
}
.docstatus--checking .docstatus__state { color: var(--blue); }

.docstatus--fail {
  border-color: var(--orange-border);
  background: var(--tint-orange);
}
.docstatus--fail .docstatus__icon { background: #fff; color: var(--orange); }
.docstatus--fail .docstatus__state { color: var(--orange); }

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

.aresult {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 32px 24px;
  margin-bottom: 20px;
  background: #f8f8f8;
  border-radius: 18px;
}
.aresult__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 800;
  background: var(--orange);
  color: #fff;
}
.aresult.is-pass .aresult__icon {
  background: var(--green);
  color: #fff;
}
.aresult__text {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: -0.5px;
  color: var(--ink);
  word-break: keep-all;
}
.aresult__text strong { color: var(--orange); font-size: 22px; }
.aresult.is-pass .aresult__text strong { color: var(--green-dark); }

/* ---------- 파일 업로드 ---------- */
.gupload { display: flex; flex-direction: column; gap: 14px; }
.gupload__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
}
.gupload__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.gupload__title { font-size: 16px; font-weight: 700; color: var(--ink); }
.gupload__title .greq { color: var(--orange); margin-left: 2px; }
.gupload__spec { font-size: 12px; color: var(--gray2); margin-top: 4px; }
.gupload__control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.gupload__filelabel {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  background: #f8f8f8;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.gupload__filelabel:hover { background: #f0f0f0; }
.gupload__filename { font-size: 14px; color: var(--gray2); word-break: break-all; }
.gupload__input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

/* ---------- 최종확인 요약 ---------- */
.gsummary { display: flex; flex-direction: column; }
.gsummary__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.gsummary__row:last-child { border-bottom: none; }
.gsummary__label { font-size: 14px; font-weight: 700; color: var(--gray2); }
.gsummary__value { font-size: 16px; font-weight: 700; color: var(--ink); word-break: keep-all; }

/* ---------- 완료 히어로 (Step5) ---------- */
.adone {
  position: relative;
  text-align: center;
  padding: 50px 20px 40px;
  overflow: visible;
}
.adone__art {
  position: relative;
  width: 220px;
  height: 150px;
  margin: 0 auto 12px;
}
.adone__piggy {
  position: absolute;
  left: 50%;
  top: 0;
  width: 130px;
  transform: translateX(-50%);
  animation: subPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both, subBounce 3s ease-in-out 0.8s infinite;
}
.adone__hearts {
  position: absolute;
  width: 46px;
  opacity: 0.9;
}
.adone__hearts--1 { left: 6%; top: 8px; animation: subFadeDown 0.6s ease 0.3s both, subBounce 2.6s ease-in-out 1s infinite; }
.adone__title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--ink);
}
.adone__title strong { color: var(--green-dark); }
.adone__desc {
  margin-top: 10px;
  font-size: 15px;
  color: var(--gray2);
  line-height: 1.7;
  word-break: keep-all;
}
.adone__number {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  padding: 20px 40px;
  background: var(--tint-green);
  border-radius: 16px;
}
.adone__number-label { font-size: 13px; font-weight: 700; color: var(--green-dark); }
.adone__number-value { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; color: var(--ink); }

/* ---------- 스텝 하단 이동 버튼 ---------- */
.gstep-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.gstep-actions .gbtn { min-width: 200px; height: 62px; font-size: 17px; }
.gstep-actions--end { justify-content: center; }
.gbtn.is-disabled { opacity: 0.4; pointer-events: none; }

/* ---------- 가입신청 반응형 ---------- */
@media (max-width: 768px) {
  .apply { padding: 8px 0 70px; }
  .apply-card { padding: 26px 22px; border-radius: 16px; }
  .apply-card__title { font-size: 18px; }
  .gform__row--2col { grid-template-columns: 1fr; gap: 16px; }
  .qcheck { padding: 18px 18px; gap: 12px; }
  .qcheck__desc { font-size: 15px; }
  .qcheck__answer { padding-left: 0; }
  .qcheck__answer .gradio-chip { flex: 1 1 50%; min-width: 0; }
  .docstatus-grid { grid-template-columns: 1fr; }
  .docstatus { padding: 14px 16px; }
  .aresult { padding: 24px 18px; }
  .aresult__text { font-size: 15px; }
  .aresult__text strong { font-size: 17px; }
  .gform__inline { flex-wrap: wrap; }
  .gform__inline .gbtn--sm { flex: 1 1 100%; height: 48px; font-size: 15px; }
  .stepnav { padding: 0 0 28px; }
  .stepnav__circle { width: 30px; height: 30px; font-size: 13px; }
  .stepnav__item.is-current.is-pulsing::after { left: calc(50% - 15px); width: 30px; height: 30px; }
  .stepnav__item:not(:last-child)::before { top: 15px; }
  .stepnav__item.is-done:not(:last-child)::after { top: 15px; }
  .stepnav__text { font-size: 11px; }
  .gcheck-all { padding: 18px 18px; gap: 12px; }
  .gcheck-all label { font-size: 15px; }
  .gterms__label { font-size: 14px; }
  .gterms__summary { padding: 14px 16px; }
  .gterms__body { padding: 12px 16px 16px; }
  .gupload__item { padding: 16px 16px; }
  .gupload__control { flex-wrap: wrap; }
  .gsummary__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .gstep-actions { flex-direction: column-reverse; }
  .gstep-actions .gbtn { width: 100%; min-width: 0; height: 48px; border-radius: 12px; font-size: 15px; }
  .adone__title { font-size: 21px; }
  .adone__number { padding: 16px 26px; width: 100%; }
}

@media (max-width: 480px) {
  .stepnav__inner { padding: 0 10px; }
  .stepnav__item { gap: 8px; }
  .stepnav__text {
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: -0.4px;
    padding: 0 2px;
  }
  .apply-card { padding: 22px 16px; }
  .gradio-chip { height: 42px; padding: 0 16px; font-size: 14px; }
}
