@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

/* ============================================================
   빌러블 법률사무소 · 의뢰인용 모바일 웹 디자인 시스템
   client.css  (Phase 1 고객 접점 화면 공유)
   톤: 신뢰 · 안심 · 투명  /  화이트 + 네이비/블루
   모바일 우선 · 콘텐츠 컬럼 max 460px 중앙 카드
   ============================================================ */

/* -------------------------------------------------------
   1. 디자인 토큰
   ------------------------------------------------------- */
:root {
  /* 주색: 신뢰감 있는 블루/네이비 */
  --brand:        #1b3a6b;   /* 메인 네이비 */
  --brand-700:    #234b87;
  --brand-600:    #2c5aa0;   /* 강조 블루 */
  --brand-500:    #3a6fc4;
  --brand-300:    #8fb2e3;
  --brand-100:    #e3edfb;   /* 연한 블루 배경 */
  --brand-50:     #f1f6fd;

  /* 잉크(텍스트) 단계 */
  --ink-900:      #16202e;   /* 제목 */
  --ink-700:      #2f3b4c;   /* 본문 */
  --ink-600:      #475467;   /* 진한 보조 */
  --ink-500:      #5b677a;   /* 보조 텍스트 */
  --ink-400:      #828d9c;   /* 캡션/플레이스홀더 */
  --ink-300:      #aab3c0;

  /* 라인 · 배경 */
  --line:         #e6eaf0;   /* 구분선 */
  --line-strong:  #d3dae3;
  --bg-page:      #eef1f6;   /* 페이지 바깥 배경 */
  --bg-card:      #ffffff;   /* 카드 */
  --bg-soft:      #f5f7fb;   /* 연한 섹션 박스 */

  /* 상태색 */
  --success:      #1f9d6b;   /* 성공/완료 그린 */
  --success-bg:   #e6f6ef;
  --warning:      #c9881f;   /* 경고/주의 */
  --warning-bg:   #fbf2df;
  --danger:       #d24b46;   /* 환불불가 등 */
  --danger-bg:    #fbeceb;
  --neutral:      #5b677a;
  --neutral-bg:   #eef1f6;

  /* 라운드 */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* 그림자 */
  --sh-1: 0 1px 2px rgba(22,32,46,.06);
  --sh-2: 0 2px 10px rgba(22,32,46,.08);
  --sh-3: 0 8px 28px rgba(22,32,46,.12);
  --sh-cta: 0 -2px 16px rgba(22,32,46,.10);

  /* 간격 스케일 (4px 베이스) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-7: 32px;
  --s-8: 40px;

  /* 타입 스케일 */
  --t-xs:  12px;
  --t-sm:  13px;
  --t-base:15px;
  --t-md:  16px;
  --t-lg:  18px;
  --t-xl:  22px;
  --t-2xl: 26px;
  --t-3xl: 32px;

  --app-w: 460px;
  --cta-h: 84px;   /* 하단 고정 CTA 높이(패딩 계산용) */
}

/* -------------------------------------------------------
   2. 베이스 / 리셋
   ------------------------------------------------------- */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Pretendard", "Pretendard Variable", -apple-system,
               BlinkMacSystemFont, system-ui, "Apple SD Gothic Neo",
               "Malgun Gothic", sans-serif;
  font-size: var(--t-base);
  line-height: 1.55;
  color: var(--ink-700);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
}

a { color: var(--brand-600); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, p { margin: 0; }

/* -------------------------------------------------------
   3. 레이아웃 래퍼  (.app 중앙 컬럼 + 하단 CTA 여백)
   ------------------------------------------------------- */
.app {
  position: relative;
  width: 100%;
  max-width: var(--app-w);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg-page);
  /* 하단 고정 CTA 가림 방지용 기본 여백 */
  padding-bottom: calc(var(--cta-h) + env(safe-area-inset-bottom, 0px));
}

/* CTA가 없는 일반 화면은 .app--plain 으로 여백 축소 */
.app--plain { padding-bottom: var(--s-7); }

/* 본문 컨텐츠 패딩 영역 */
.page {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

/* 데스크탑: 가운데 카드처럼 단정하게 */
@media (min-width: 600px) {
  body { padding: var(--s-7) 0; }
  .app {
    min-height: auto;
    margin: 0 auto;
    border-radius: var(--r-xl);
    box-shadow: var(--sh-3);
    overflow: hidden;
    background: var(--bg-card);
    min-height: calc(100vh - var(--s-7) * 2);
  }
}

/* -------------------------------------------------------
   4. 상단 앱바
   ------------------------------------------------------- */
.appbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: var(--s-2);
  height: 56px;
  padding: 0 var(--s-3);
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.appbar__btn {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 0; background: transparent;
  border-radius: var(--r-sm);
  color: var(--ink-700);
}
.appbar__btn:active { background: var(--bg-soft); }
.appbar__title {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
  font-size: var(--t-md);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -.2px;
  white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.appbar__title small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-400);
  letter-spacing: 0;
}

/* -------------------------------------------------------
   5. 진행 스텝퍼  (예약 → 상담 → 결제)
   ------------------------------------------------------- */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: var(--s-4) var(--s-4) var(--s-2);
  background: var(--bg-card);
  border-bottom: 1px solid var(--line);
}
.steps__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  font-size: var(--t-xs);
  color: var(--ink-400);
  text-align: center;
}
.steps__dot {
  width: 26px; height: 26px;
  border-radius: var(--r-pill);
  display: grid; place-items: center;
  background: var(--neutral-bg);
  color: var(--ink-400);
  font-size: var(--t-xs);
  font-weight: 700;
  border: 2px solid transparent;
  z-index: 1;
}
/* 연결선 */
.steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--line-strong);
  z-index: 0;
}
.steps__item.is-done .steps__dot   { background: var(--brand-100); color: var(--brand-600); }
.steps__item.is-done::after        { background: var(--brand-300); }
.steps__item.is-active .steps__dot { background: var(--brand); color: #fff; border-color: var(--brand-100); box-shadow: 0 0 0 4px var(--brand-50); }
.steps__item.is-active            { color: var(--brand); font-weight: 700; }

/* -------------------------------------------------------
   6. 카드 · 섹션 · row · 구분선
   ------------------------------------------------------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  padding: var(--s-5);
}
.card--flush { padding: 0; overflow: hidden; }
.card--brand {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-700) 100%);
  border: 0;
  color: #fff;
}
.card--brand .sec-title,
.card--brand .row__label { color: rgba(255,255,255,.78); }
.card--brand .row__value { color: #fff; }

.sec-title {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -.3px;
  margin-bottom: var(--s-3);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.sec-sub {
  font-size: var(--t-sm);
  color: var(--ink-400);
  margin-top: -6px;
  margin-bottom: var(--s-3);
}

/* 라벨-값 행 */
.row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-3) 0;
}
.row + .row { border-top: 1px solid var(--line); }
.row__label {
  flex: 0 0 auto;
  color: var(--ink-500);
  font-size: var(--t-base);
}
.row__value {
  flex: 1 1 auto;
  text-align: right;
  color: var(--ink-900);
  font-weight: 600;
}
.row--stack { flex-direction: column; align-items: stretch; gap: 4px; }
.row--stack .row__value { text-align: left; }

.divider { height: 1px; background: var(--line); border: 0; margin: var(--s-3) 0; }
.divider--dash { background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px); }

/* -------------------------------------------------------
   7. 금액 강조 · 영수증
   ------------------------------------------------------- */
.amount {
  font-weight: 700;
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
}
.amount-lg {
  font-size: var(--t-2xl);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -.5px;
  font-variant-numeric: tabular-nums;
}
.amount-lg small { font-size: var(--t-md); font-weight: 700; color: var(--ink-500); }
.amount--minus { color: var(--success); }   /* 예약금 공제 등 차감 */

/* 영수증 */
.receipt { padding: var(--s-2) 0; }
.receipt .ln {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-3);
  padding: var(--s-2) 0;
  font-size: var(--t-base);
  color: var(--ink-700);
}
.receipt .ln span:last-child {
  font-weight: 600;
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
}
.receipt .ln--muted { color: var(--ink-400); }
.receipt .ln--muted span:last-child { color: var(--ink-400); font-weight: 500; }
.receipt .ln--minus span:last-child { color: var(--success); }
.receipt .ln--sep { border-top: 1px dashed var(--line-strong); margin-top: var(--s-2); padding-top: var(--s-3); }
.receipt .ln--total {
  margin-top: var(--s-2);
  padding-top: var(--s-3);
  border-top: 2px solid var(--ink-900);
}
.receipt .ln--total span:first-child {
  font-size: var(--t-md);
  font-weight: 700;
  color: var(--ink-900);
}
.receipt .ln--total span:last-child {
  font-size: var(--t-xl);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -.5px;
}

/* 투명성 요금표 (전화상담 15분 단위 등) */
.ratetable {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--t-base);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.ratetable th, .ratetable td {
  padding: 10px var(--s-3);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.ratetable thead th {
  background: var(--bg-soft);
  color: var(--ink-500);
  font-weight: 600;
  font-size: var(--t-sm);
}
.ratetable td { font-variant-numeric: tabular-nums; }
.ratetable td:last-child { font-weight: 700; color: var(--ink-900); }
.ratetable tr:last-child td { border-bottom: 0; }

/* -------------------------------------------------------
   8. 안내 / 주의 박스 · 접이식
   ------------------------------------------------------- */
.notice {
  display: flex;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  line-height: 1.5;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  color: var(--brand-700);
}
.notice__icon { flex: 0 0 auto; font-size: var(--t-md); line-height: 1.4; }
.notice strong { font-weight: 700; }
.notice--warn   { background: var(--warning-bg); border-color: #f0dcae; color: #8a5d11; }
.notice--danger { background: var(--danger-bg);  border-color: #f3cfcd; color: #a3322d; }
.notice--success{ background: var(--success-bg); border-color: #c4e9d8; color: #157a52; }

/* 더 연한 안내 박스(취소규정 본문 등) */
.notice-soft {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-4);
  font-size: var(--t-sm);
  color: var(--ink-500);
  line-height: 1.6;
}
.notice-soft ul { margin: 0; padding-left: 1.1em; }
.notice-soft li { margin: 4px 0; }

/* 접이식(아코디언) */
.accordion {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-card);
  overflow: hidden;
}
.accordion + .accordion { margin-top: var(--s-2); }
.accordion > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--ink-900);
}
.accordion > summary::-webkit-details-marker { display: none; }
.accordion > summary::after {
  content: "";
  width: 9px; height: 9px;
  border-right: 2px solid var(--ink-400);
  border-bottom: 2px solid var(--ink-400);
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-right: 4px;
}
.accordion[open] > summary::after { transform: rotate(-135deg); }
.accordion__body {
  padding: 0 var(--s-4) var(--s-4);
  font-size: var(--t-sm);
  color: var(--ink-500);
  line-height: 1.6;
}
.accordion__body ul { margin: 0; padding-left: 1.1em; }

/* -------------------------------------------------------
   9. 칩 / 배지
   ------------------------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 26px;
  padding: 0 10px;
  border-radius: var(--r-pill);
  font-size: var(--t-xs);
  font-weight: 600;
  background: var(--neutral-bg);
  color: var(--ink-500);
  border: 1px solid transparent;
  white-space: nowrap;
}
.chip--brand   { background: var(--brand-100); color: var(--brand-700); }
.chip--success { background: var(--success-bg); color: var(--success); }
.chip--warn    { background: var(--warning-bg); color: #8a5d11; }
.chip--line    { background: #fff; border-color: var(--line-strong); color: var(--ink-500); }
.chip--lg      { height: 30px; padding: 0 12px; font-size: var(--t-sm); }

/* -------------------------------------------------------
   10. 결제수단 선택 (라디오형 카드)
   ------------------------------------------------------- */
.pay-opts { display: flex; flex-direction: column; gap: var(--s-2); }
.pay-opt {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4);
  min-height: 56px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--bg-card);
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.pay-opt input { position: absolute; opacity: 0; pointer-events: none; }
.pay-opt__radio {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  display: grid; place-items: center;
  transition: border-color .15s;
}
.pay-opt__radio::after {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brand);
  transform: scale(0);
  transition: transform .15s ease;
}
.pay-opt__icon { flex: 0 0 auto; font-size: var(--t-xl); line-height: 1; width: 26px; text-align: center; }
.pay-opt__label { flex: 1 1 auto; font-size: var(--t-base); font-weight: 600; color: var(--ink-900); }
.pay-opt__label small { display: block; font-size: var(--t-xs); font-weight: 500; color: var(--ink-400); }
.pay-opt:has(input:checked) {
  border-color: var(--brand);
  background: var(--brand-50);
  box-shadow: 0 0 0 3px var(--brand-50);
}
.pay-opt:has(input:checked) .pay-opt__radio { border-color: var(--brand); }
.pay-opt:has(input:checked) .pay-opt__radio::after { transform: scale(1); }

/* -------------------------------------------------------
   11. 버튼 · 하단 고정 CTA 바
   ------------------------------------------------------- */
.btn-primary, .btn-ghost, .btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  width: 100%;
  min-height: 52px;
  padding: 0 var(--s-5);
  border-radius: var(--r-md);
  font-size: var(--t-md);
  font-weight: 700;
  letter-spacing: -.2px;
  border: 1.5px solid transparent;
  transition: transform .05s, filter .15s, background .15s;
}
.btn-primary:active, .btn-ghost:active, .btn-line:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--brand-600), var(--brand));
  color: #fff;
  box-shadow: 0 4px 14px rgba(27,58,107,.28);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-primary:disabled { background: var(--ink-300); box-shadow: none; cursor: not-allowed; }

.btn-ghost {
  background: var(--bg-soft);
  color: var(--ink-700);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--neutral-bg); }

.btn-line {
  background: #fff;
  color: var(--brand-600);
  border-color: var(--brand-300);
}
.btn-line:hover { background: var(--brand-50); }

.btn--sm { min-height: 40px; font-size: var(--t-sm); padding: 0 var(--s-4); width: auto; }

/* 하단 고정 CTA 바 */
.cta-bar {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--app-w);
  z-index: 40;
  padding: var(--s-3) var(--s-4) calc(var(--s-3) + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: var(--sh-cta);
}
.cta-bar__amount {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--s-2);
}
.cta-bar__amount .label { font-size: var(--t-sm); color: var(--ink-500); }
.cta-bar__amount .val   { font-size: var(--t-xl); font-weight: 800; color: var(--brand); letter-spacing: -.5px; font-variant-numeric: tabular-nums; }

/* -------------------------------------------------------
   12. 보조 링크 리스트 · 지도 · 아바타
   ------------------------------------------------------- */
.linklist {
  list-style: none;
  margin: 0; padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.linklist > li + li { border-top: 1px solid var(--line); }
.linklist a, .linklist button {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  width: 100%;
  padding: var(--s-4);
  min-height: 56px;
  background: transparent;
  border: 0;
  text-align: left;
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--ink-900);
}
.linklist a:active, .linklist button:active { background: var(--bg-soft); }
.linklist__ico { flex: 0 0 auto; width: 22px; text-align: center; font-size: var(--t-lg); }
.linklist__txt { flex: 1 1 auto; min-width: 0; }
.linklist__txt small { display: block; font-size: var(--t-xs); font-weight: 500; color: var(--ink-400); }
.linklist__arrow { flex: 0 0 auto; color: var(--ink-300); }
.linklist__arrow::after {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

/* 지도 placeholder (이미지 금지 → CSS/SVG) */
.map {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: var(--r-md);
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(27,58,107,.04), rgba(27,58,107,.04)),
    repeating-linear-gradient(0deg, #e8edf4 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, #e8edf4 0 1px, transparent 1px 28px),
    #f3f6fb;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.map__pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--brand);
  font-weight: 700;
  font-size: var(--t-sm);
  text-shadow: 0 1px 0 #fff;
}
.map__pin .dot {
  width: 30px; height: 30px;
  border-radius: 50% 50% 50% 0;
  background: var(--danger);
  transform: rotate(-45deg);
  box-shadow: var(--sh-2);
  position: relative;
}
.map__pin .dot::after {
  content: ""; position: absolute; inset: 9px;
  background: #fff; border-radius: 50%;
}

/* 아바타 */
.avatar {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand-100);
  color: var(--brand);
  font-weight: 700;
  font-size: var(--t-lg);
  overflow: hidden;
}
.avatar--lg { width: 76px; height: 76px; font-size: var(--t-xl); }
.avatar--sm { width: 40px; height: 40px; font-size: var(--t-base); }

/* 담당 변호사 헤더 묶음 */
.lawyer {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.lawyer__name { font-size: var(--t-lg); font-weight: 700; color: var(--ink-900); }
.lawyer__role { font-size: var(--t-sm); color: var(--ink-400); }

/* -------------------------------------------------------
   13. 하단 신뢰표시 · 푸터
   ------------------------------------------------------- */
.trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: var(--s-3);
  font-size: var(--t-xs);
  color: var(--ink-400);
  font-weight: 500;
}
.trust__lock {
  display: inline-grid; place-items: center;
  width: 16px; height: 16px;
  color: var(--success);
}
.trust b { color: var(--ink-500); font-weight: 700; }

.foot {
  padding: var(--s-5) var(--s-4) var(--s-7);
  font-size: var(--t-xs);
  line-height: 1.7;
  color: var(--ink-400);
  background: var(--bg-page);
  border-top: 1px solid var(--line);
}
.foot__name { font-weight: 700; color: var(--ink-500); margin-bottom: 4px; font-size: var(--t-sm); }
.foot p { margin: 2px 0; }
.foot a { color: var(--ink-500); }

/* -------------------------------------------------------
   14. 유틸리티
   ------------------------------------------------------- */
.stack    { display: flex; flex-direction: column; }
.stack-2  { gap: var(--s-2); }
.stack-3  { gap: var(--s-3); }
.stack-4  { gap: var(--s-4); }
.cluster  { display: flex; align-items: center; flex-wrap: wrap; gap: var(--s-2); }
.between  { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); }
.center   { text-align: center; }
.muted    { color: var(--ink-400); }
.small    { font-size: var(--t-sm); }
.xsmall   { font-size: var(--t-xs); }
.strong   { font-weight: 700; color: var(--ink-900); }
.nowrap   { white-space: nowrap; }
.mt-2 { margin-top: var(--s-2); } .mt-3 { margin-top: var(--s-3); } .mt-4 { margin-top: var(--s-4); }
.mb-2 { margin-bottom: var(--s-2); } .mb-3 { margin-bottom: var(--s-3); } .mb-4 { margin-bottom: var(--s-4); }

/* 완료 화면용 성공 아이콘 */
.success-mark {
  width: 72px; height: 72px;
  margin: var(--s-4) auto;
  border-radius: 50%;
  background: var(--success-bg);
  color: var(--success);
  display: grid; place-items: center;
  font-size: 36px;
  box-shadow: 0 0 0 8px rgba(31,157,107,.08);
}
