/* ============== WEB FONTS ============== */
@font-face {
  font-family: 'KoPubBatang';
  src: url('./fonts/KoPubBatang-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'KoPubBatang';
  src: url('./fonts/KoPubBatang-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'KoPubBatang';
  src: url('./fonts/KoPubBatang-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============== RESET & BASE ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1f2e;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

:root {
  --navy-900: #0a1628;
  --navy-800: #0f1f3a;
  --navy-700: #1a2d4f;
  --navy-600: #243b66;
  --gold-500: #f5b800;
  --gold-600: #e0a800;
  --blue-500: #2c5fb5;
  --blue-600: #1e4a8f;
  --soft-bg: #f5f7fb;
  --light-bg: #fafbfc;
  --border: #e5e8ef;
  --text: #1a1f2e;
  --text-soft: #5a6478;
  --text-mute: #8b94a8;
}

/* ============== LAYOUT ============== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 880px; }
.center { text-align: center; }
.section { padding: 140px 0; scroll-margin-top: 120px; }
.section--light { background: #fff; }
.section--soft { background: var(--soft-bg); }
.section--dark { background: var(--navy-900); color: #fff; }

/* ============== TYPOGRAPHY ============== */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-500);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  position: relative;
  padding: 0 14px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--blue-500);
}
.eyebrow::before { right: 100%; }
.eyebrow::after { left: 100%; }
.eyebrow--gold { color: var(--gold-500); }
.eyebrow--gold::before, .eyebrow--gold::after { background: var(--gold-500); }
.eyebrow--gold-soft {
  color: #b88a3a;
  font-weight: 700;
}
.eyebrow--gold-soft::before, .eyebrow--gold-soft::after { display: none; }

.accent-blue { color: var(--blue-500); font-weight: 700; }
.accent-deep { color: #0C1E3C; font-weight: 700; }

.divider-line {
  width: 1px;
  height: 60px;
  background: #d8dde6;
  margin: 36px auto 24px;
}

.section__desc strong {
  color: var(--text);
  font-weight: 700;
}

.section__title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.section__lead {
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 600;
  margin: 36px 0 16px;
  color: var(--text);
}
.section__desc {
  color: var(--text-soft);
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.85;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--navy-800); color: #fff; }
.btn--primary:hover { background: var(--navy-700); transform: translateY(-1px); }
.btn--gold { background: var(--gold-500); color: var(--navy-900); }
.btn--gold:hover { background: var(--gold-600); }
.btn--outline {
  background: #fff;
  color: var(--navy-800);
  border: 1.5px solid var(--navy-800);
  margin-top: 28px;
}
.btn--outline:hover { background: var(--navy-800); color: #fff; }
.btn--ghost { background: rgba(0,0,0,0.04); color: var(--navy-800); }
.btn--ghost:hover { background: rgba(0,0,0,0.08); }
.btn--block { width: 100%; padding: 16px; font-size: 16px; }

/* ============== HEADER ============== */
.header {
  background: #fff;
  color: var(--text);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.logo__img { height: 36px; width: auto; display: block; }

.nav { display: flex; gap: 40px; }
.nav a {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  transition: color .2s;
}
.nav a:hover { color: var(--blue-500); }

.header__cta { display: flex; align-items: center; gap: 16px; }
.header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: #192D54;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s;
}
.header__phone:hover { background: #213b6e; }
.header__phone img {
  width: 16px; height: 16px;
  object-fit: contain;
  display: block;
}

.header__live {
  display: flex; align-items: stretch;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  background: linear-gradient(180deg, #1f3866 0%, #15294d 100%);
  overflow: hidden;
  position: relative;
}
.live-label {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}
.live-label__icon {
  width: 22px; height: 22px;
  display: block;
  animation: live-pulse 1.6s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

.live-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 80px), transparent 100%);
}
.live-marquee {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  padding: 11px 30px;
  white-space: nowrap;
  animation: marquee 70s linear infinite;
  will-change: transform;
}
.live-track:hover .live-marquee { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.live-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}
.live-item b { color: #fff; font-weight: 700; margin-right: 2px; }
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.dot--blue  { background: #4a8de8; box-shadow: 0 0 6px rgba(74,141,232,0.6); }
.dot--green { background: #5fcf80; box-shadow: 0 0 6px rgba(95,207,128,0.6); }
.dot--gold  { background: var(--gold-500); box-shadow: 0 0 6px rgba(245,184,0,0.6); }

/* ============== HERO ============== */
.hero {
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
  padding: 180px 0 140px;
  min-height: 0;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.hero__copy { padding-top: 20px; }
.hero__tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero__title-soft { font-weight: 400; }
.hero__desc {
  color: rgba(255,255,255,0.75);
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.85;
  margin-bottom: 60px;
}
.hero__mobile-cta { display: none; }

/* 데스크톱/모바일 전용 줄바꿈 */
.br-m { display: none; }
.br-d { display: inline; }

/* ============== MOBILE BOTTOM BAR (default hidden) ============== */
.mobile-bar { display: none; }

/* ============== PC QUICK CONSULT BAR (히어로 하단 내장) ============== */
.pc-quick {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 28px;
  background: #1A2A54;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
}
.pc-quick__label {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  padding-right: 22px;
  border-right: 1px solid rgba(255,255,255,0.14);
  height: 36px;
}
.pc-quick__chat { width: 22px; height: 22px; object-fit: contain; display: block; }
.pc-quick__fields { display: flex; gap: 10px; flex-shrink: 0; }
.pc-quick__input {
  width: 180px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #fff;
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font-size: 13.5px;
  font-family: inherit;
}
.pc-quick__input::placeholder { color: var(--text-mute); }
.pc-quick__input:focus {
  outline: none;
  border-color: var(--gold-500);
}
.pc-quick__agree {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  user-select: none;
}
.pc-quick__submit { margin-left: auto; }
.pc-quick__agree input { width: 16px; height: 16px; accent-color: var(--gold-500); }
.pc-quick__submit {
  height: 40px;
  padding: 0 48px;
  background: #04143E;
  color: #fff;
  border-radius: 24.16px;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  transition: background .2s;
}
.pc-quick__submit:hover { background: #0a1f5c; }

/* PC FLOATING CIRCLES (바 우측 끝) */
.pc-floats {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.pc-floats__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform .15s ease;
}
.pc-floats__btn:hover { transform: translateY(-2px); }
.pc-floats__btn img { width: 20px; height: 20px; object-fit: contain; }
.pc-floats__btn--kakao { background: #FEE500; }
.pc-floats__btn--call { background: #20387A; }
.pc-floats__btn--call img { filter: brightness(0) invert(1); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stats .stat { text-align: center; }
.stat__num {
  font-family: 'KoPubBatang_Pro', 'KoPub Batang Pro', 'KoPubBatang', serif;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.stat__num span { font-size: clamp(18px, 2.2vw, 24px); margin-left: 2px; font-weight: 500; }
.stat__label {
  font-size: clamp(12px, 1.3vw, 13px);
  color: rgba(255,255,255,0.6);
}

/* Hero Form */
.hero-form {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  color: var(--text);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  border-top: 4px solid var(--gold-500);
}
.hero-form__head { text-align: left; margin-bottom: 22px; }
.hero-form__head h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 10px;
  color: var(--text);
}
.hero-form__sub {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-mute);
}
.badge-time {
  display: inline-block;
  padding: 3px 9px;
  background: var(--navy-800);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.field { display: block; margin-bottom: 14px; }
.field span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.field input,
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fafbfc;
  color: var(--text);
  transition: border-color .2s, background .2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%238b94a8' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field input { background-image: none; padding-right: 14px; }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-500);
  background-color: #fff;
}
.form-note {
  font-size: 11.5px;
  color: var(--text-mute);
  margin: 8px 0 18px;
  line-height: 1.5;
}
.hero-form .btn--gold {
  height: 56px;
  padding: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #D4A843 0%, #F0C060 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(212,168,67,0.28);
}
.hero-form .btn--gold:hover {
  background: linear-gradient(180deg, #c89a37 0%, #e5b450 100%);
}
.form-foot {
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
  margin-top: 14px;
}

/* ============== SECTION: 채무 문제 (#about) ============== */
#about.section--light { background: #FEFCF6; }
#about .divider-line { background: #000; }
#about .accent-blue { color: #0C1E3C; }
#about .section__lead { font-size: clamp(17px, 2.4vw, 24px); }
#about .section__desc { font-size: clamp(13px, 1.7vw, 17px); }

/* ============== PILL GROUP ============== */
.pill-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 40px 0 8px;
}
.pill {
  padding: 14px 36px;
  background: #fff;
  border: 1px solid #8A681B52;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  min-width: 360px;
  text-align: center;
}
@media (max-width: 560px) {
  .pill { min-width: 0; width: 100%; padding: 12px 24px; font-size: 14px; }
}

/* ============== STATS BAND (DARK) ============== */
.stats-band {
  position: relative;
  background: #192D54;
  overflow: hidden;
  padding: 150px 0;
}
.stats-band__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,17,43,0.61) 0%, rgba(0,17,43,0) 100%),
    linear-gradient(rgba(1,9,20,0.62), rgba(1,9,20,0.62)),
    url('./images/stats-bg.jpg') center/cover no-repeat;
  background-color: #192D54;
  z-index: 0;
}
.stats-band__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.stats-band__copy h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: #fff;
}
.stats-band__copy h2 em {
  font-style: normal;
  font-weight: 700;
}
.signature {
  font-style: italic;
  color: rgba(255,255,255,0.45);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-family: 'Times New Roman', serif;
}
.stats-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
/* cross divider */
.stats-band__grid::before,
.stats-band__grid::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.12);
}
.stats-band__grid::before {
  /* vertical line */
  left: 50%; top: 10%; bottom: 10%;
  width: 1px;
}
.stats-band__grid::after {
  /* horizontal line */
  top: 50%; left: 8%; right: 8%;
  height: 1px;
}
.big-stat {
  padding: 40px 30px;
  text-align: center;
}
.big-stat__icon {
  width: 44px; height: 44px;
  object-fit: contain;
  margin: 0 auto 18px;
  display: block;
}
.big-stat__num {
  font-family: 'KoPub Batang', 'KoPubBatang', serif;
  font-size: clamp(48px, 6.5vw, 72px);
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.big-stat__num span {
  font-family: 'KoPub Batang', 'KoPubBatang', serif;
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-left: 2px;
}
.big-stat__label {
  font-size: clamp(12px, 1.4vw, 14px);
  color: #E4CFA0;
  letter-spacing: 0.02em;
}

/* ============== SECTION: 진행절차 (#process) ============== */
#process.section--light { background: #0F1F3B; color: #fff; }
#process .section__title,
#process .process__no { color: #fff; }
#process .eyebrow--gold-soft { color: #E4CFA0; }
#process .process__sub {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}
#process .process__item p { color: rgba(255,255,255,0.7); }
#process .process__item + .process__item::before { background: rgba(255,255,255,0.12); }

/* ============== PROCESS ============== */
.process__sub {
  display: block;
  margin-top: 36px;
  padding: 22px 36px;
  background: #f4f6fa;
  border-radius: 12px;
  font-size: clamp(13px, 1.6vw, 15px);
  color: var(--text-soft);
  font-weight: 500;
  text-align: center;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
}
.process__item {
  padding: 30px 14px;
  text-align: center;
  position: relative;
}
.process__item + .process__item::before {
  content: '';
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: var(--border);
}
.process__icon {
  width: 70px; height: 70px;
  margin: 0 auto 24px;
  display: block;
  object-fit: contain;
}
.process__no {
  font-weight: 700;
  font-size: clamp(14px, 1.7vw, 17px);
  margin-bottom: 14px;
  color: var(--navy-800);
}
.process__item p {
  font-size: clamp(12px, 1.4vw, 13.5px);
  color: var(--text-soft);
  line-height: 1.7;
  word-break: keep-all;
}

/* ============== CASES CAROUSEL ============== */
.accent-navy { color: var(--navy-800); font-weight: 700; }
.cases-cta { margin-top: 28px; padding: 14px 32px; }
.cases-cta-bottom { display: none; margin-top: 36px; }

/* #numbers 섹션 타이틀과 설명 간격 축소 */
#numbers .section__title { margin-bottom: 8px; }

.cases-viewport {
  /* 5 cards × 280 + 4 gaps × 24 = 1496px */
  max-width: 1496px;
  margin: 60px auto 0;
  overflow: hidden;
  position: relative;
  padding: 48px 0 24px;
}
.cases-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}
.success-card {
  flex: 0 0 280px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 24px 26px 26px;
  box-shadow: 0 6px 20px rgba(15, 31, 58, 0.06);
  transition: filter 1s ease, opacity 1s ease, transform 1s ease, box-shadow 1s ease;
  display: flex;
  flex-direction: column;
}
.success-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #2051A2 0%, #0C1E3C 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
  pointer-events: none;
}
.success-card > * { position: relative; z-index: 2; }
.success-card.is-edge {
  filter: blur(10.4px);
  opacity: 0.7;
  pointer-events: none;
}
.success-card.is-center {
  color: #fff;
  box-shadow: none;
  transform: translateY(-24px);
}
.success-card.is-center::before { opacity: 1; }

.success-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #3BC91B;
  color: #fff;
  border-radius: 5.1px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
  align-self: flex-start;
}
.success-card__badge .check {
  display: inline-grid; place-items: center;
  width: 16px; height: 16px;
  background: #fff; color: #3BC91B;
  border-radius: 50%;
  font-size: 10px; font-weight: 800;
}
.success-card__court {
  font-size: clamp(12px, 1.4vw, 14px);
  color: #b3bccd;
  margin-bottom: 6px;
  font-weight: 500;
  transition: color 1s ease;
}
.success-card__rate-label {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  transition: color 1s ease;
}
.success-card__rate {
  font-family: 'KoPub Batang', 'KoPubBatang', serif;
  font-size: clamp(44px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e8ef;
  letter-spacing: -0.02em;
  transition: color 1s ease, border-bottom-color 1s ease;
}
.success-card__rate span {
  font-family: 'KoPub Batang', 'KoPubBatang', serif;
  font-size: 32px;
  font-weight: 500;
  margin-left: 4px;
}
.success-card__details {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text);
  transition: color 1s ease;
}
.success-card__details li { display: block; }
.success-card__details span {
  color: var(--text);
  font-weight: 600;
  margin-right: 4px;
  transition: color 1s ease;
}
.success-card__details em {
  font-style: normal;
  color: #ff4444;
  font-weight: 700;
  transition: color 1s ease;
}

/* center (highlight) card overrides */
.success-card--highlight {
  background: linear-gradient(90deg, #2051A2 0%, #0C1E3C 100%);
  color: #fff;
}
.success-card.is-center { color: #fff; }
.success-card--highlight .success-card__court,
.success-card.is-center .success-card__court { color: rgba(255,255,255,0.55); }
.success-card--highlight .success-card__rate-label,
.success-card.is-center .success-card__rate-label { color: #fff; }
.success-card--highlight .success-card__rate,
.success-card.is-center .success-card__rate {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.2);
}
.success-card--highlight .success-card__details,
.success-card.is-center .success-card__details { color: rgba(255,255,255,0.85); }
.success-card--highlight .success-card__details span,
.success-card.is-center .success-card__details span { color: rgba(255,255,255,0.7); }
.success-card--highlight .success-card__details em,
.success-card.is-center .success-card__details em { color: #ff8a8a; }

/* ============== CASE BAND (이미지 슬라이더) ============== */
.case-band {
  max-width: 1296px;
  margin: 0 auto;
  padding: 0 24px;
}
.case-band__copy {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 56px;
}
.case-band .eyebrow {
  font-size: 15px;
  margin-bottom: 22px;
}
.case-band .section__title {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.35;
}
.case-band .section__title .accent-blue {
  color: #0C1E3C;
}
.case-band__copy .section__title { text-align: left; }
.case-band__icon {
  width: 140px; height: auto;
  margin: 0;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
}

.case-slider { position: relative; min-width: 0; overflow: hidden; }
.case-slider__viewport {
  overflow: visible;
  position: relative;
}
.case-slider__track {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.case-slider__track:active { cursor: grabbing; }
.case-slide {
  flex: 0 0 min(680px, calc(100% - 240px));  /* 최대 680px, 다음 카드 ~240px peek */
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #1a2030;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}
.case-slide.is-active { opacity: 1; }
.case-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 631 / 401;
  object-fit: cover;
  display: block;
}

/* 컨트롤 (화살표 좌측 + 진행바 우측) */
.case-slider__controls {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  padding-right: 80px;
}
.case-slider__nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.case-slider__btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #cdd3df;
  color: #6b7384;
  display: grid; place-items: center;
  transition: all .2s;
}
.case-slider__btn svg { width: 14px; height: 14px; }
.case-slider__btn:hover { background: #f4f6fa; }
.case-slider__btn--primary {
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.case-slider__btn--primary:hover { background: var(--navy-800); color: #fff; }
.case-slider__progress {
  flex: 1;
  height: 3px;
  background: #e5e8ef;
  border-radius: 2px;
  overflow: hidden;
}
.case-slider__bar {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--navy-800);
  border-radius: 2px;
  transition: width 0.5s ease, transform 0.5s ease;
}

/* ============== QUALIFY (CHECKLIST) ============== */
.qualify {
  background-image: url('./images/qualify-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 200px 0;
}
.qualify__sub {
  font-size: clamp(16px, 4.2vw, 30px);
  color: var(--text-mute);
  margin-bottom: 14px;
  font-weight: 400;
}
.qualify__title {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  line-height: 1.35;
  margin-bottom: 56px;
}
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin: 0 auto 56px;
  max-width: 880px;
  text-align: left;
}
.check-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  background: #fff;
  border-radius: 1.08px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(15, 31, 58, 0.05);
}
.check {
  display: grid; place-items: center;
  width: 24px; height: 24px;
  background: var(--blue-500);
  border-radius: 50%;
  flex-shrink: 0;
}
.check svg { width: 13px; height: 13px; display: block; }

.qualify__cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.qualify__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 36px;
  font-size: 16px;
  width: 280px;
}
.qualify__cta .qualify__btn:first-child {
  background: #192D54;
  border-color: #192D54;
}
.qualify__btn-icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

/* ============== APPLY (푸터 위 신청 폼) ============== */
.apply {
  background: #F4F6F8;
  padding: 80px 0;
}
.apply__inner {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 80px;
  align-items: start;
}
.apply__title {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 0;
}
.apply__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(36px, 4.6vw, 40px);
  font-weight: 700;
  color: var(--navy-900);
}
.apply__phone img {
  width: 26px; height: 26px;
  object-fit: contain;
  display: block;
}
.apply__form { display: flex; flex-direction: column; gap: 16px; }
.apply__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.apply__field { display: flex; flex-direction: column; gap: 8px; }
.apply__field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.apply__field span i {
  color: #e83d3d;
  font-style: normal;
  margin-left: 2px;
}
.apply__field input,
.apply__field textarea {
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: #fff;
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  resize: vertical;
}
.apply__field input { height: 46px; }
.apply__field textarea { min-height: 96px; }
.apply__field input:focus,
.apply__field textarea:focus {
  outline: 2px solid var(--blue-500);
  outline-offset: 1px;
}
.apply__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}
.apply__agree {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--text-soft);
  cursor: pointer;
}
.apply__agree input { width: 14px; height: 14px; accent-color: var(--navy-800); }
.apply__submit {
  padding: 14px 60px;
  background: var(--navy-800);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: background .2s;
}
.apply__submit:hover { background: var(--navy-700); }

/* ============== FAQ ============== */
.faq { margin-top: 70px; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  position: relative;
  padding-right: 36px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute; right: 0;
  font-size: 26px;
  font-weight: 300;
  color: #c79a3d;
  line-height: 1;
  transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq p {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}

/* ============== FINAL CTA ============== */
.final-cta { background: #081934; padding: 130px 0; }
.final-cta__title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 70px;
  letter-spacing: -0.02em;
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
  max-width: 1080px;
  margin: 0 auto;
}
.contact-card {
  background: #192844;
  border: none;
  border-radius: 14px;
  padding: 32px 30px 0;
  transition: all .25s;
  display: flex; flex-direction: column;
  color: #fff;
  overflow: hidden;
}
.contact-card:hover {
  transform: translateY(-3px);
}

.contact-card__head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
}
.contact-card__icon {
  width: 26px; height: 26px;
  display: block; object-fit: contain;
}
.contact-card__title {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.01em;
  flex: 1;
}
.contact-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
.contact-card__badge--blue { background: #2563eb; color: #fff; }
.contact-card__badge--green { background: #22c55e; color: #fff; }

.contact-card__list {
  list-style: none;
  padding: 0; margin: 0 0 28px;
}
.contact-card__list li {
  font-size: 14px;
  color: #fff;
  line-height: 1.9;
  padding-left: 12px;
  position: relative;
}
.contact-card__list li::before {
  content: '·';
  position: absolute; left: 0;
  color: #fff;
}

.contact-card__action {
  margin: 0 -30px;       /* 카드 좌우 패딩 상쇄해서 풀폭 배경 */
  padding: 22px 30px;
  background: #010E24;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-top: auto;
}
.contact-card__arrow {
  font-size: 18px;
  transition: transform .2s;
  color: #fff;
}
.contact-card:hover .contact-card__arrow { transform: translateX(4px); color: #fff; }

/* ============== FOOTER ============== */
.footer {
  background: #F4F6F8;
  color: #4a5060;
  padding: 56px 0 48px;
  font-size: 11.5px;
  line-height: 1.85;
  border-top: 2px solid #CFCFCF;
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 60px;
  align-items: flex-start;
}
.footer__logo img {
  height: 36px; width: auto;
  display: block;
}
.footer__body { display: flex; flex-direction: column; gap: 4px; }
.footer__links {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
}
.footer__links a {
  color: var(--text);
  transition: color .2s;
}
.footer__links a:hover { color: var(--blue-500); }
.footer__links span { color: #c7ccd6; }
.footer__info-line { margin: 0; color: #5a6478; }
.footer__info-line strong { color: var(--text); font-weight: 600; }
.footer__disclaimer {
  margin-top: 14px;
  font-size: 10.5px;
  color: #8b94a8;
  line-height: 1.7;
}
.footer__copy {
  margin-top: 10px;
  font-size: 11px;
  color: #8b94a8;
}


/* ============== POLICY MODAL ============== */
.modal {
  position: fixed; inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 22, 40, 0.55);
}
.modal__dialog {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 80px);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.modal__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal__title { font-size: 18px; font-weight: 700; color: var(--text); }
.modal__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--text-soft);
  display: grid; place-items: center;
  transition: background .2s;
}
.modal__close:hover { background: #f4f6fa; color: var(--text); }
.modal__body {
  padding: 24px 28px 28px;
  overflow-y: auto;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--text-soft);
}
.modal__body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 22px 0 10px;
}
.modal__body h4:first-child { margin-top: 0; }
.modal__body p { margin-bottom: 12px; }
.modal__body strong { color: var(--text); font-weight: 600; }
body.modal-open { overflow: hidden; }

/* 예상 변제 금액 결과 */
.estimate__hero {
  background: linear-gradient(135deg, #0C1E3C 0%, #2051A2 100%);
  color: #fff;
  border-radius: 12px;
  padding: 26px 24px;
  text-align: center;
  margin-bottom: 18px;
}
.estimate__label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.estimate__amount {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.estimate__sub {
  margin-top: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
}
.estimate__rows {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.estimate__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  background: #f5f7fb;
  border-radius: 10px;
  font-size: 14px;
}
.estimate__row span:first-child { color: var(--text-soft); }
.estimate__row strong { color: var(--text); font-weight: 700; }
.estimate__warning {
  background: #fff7ed;
  color: #92400e;
  border: 1px solid #fde68a;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.estimate__note {
  font-size: 12.5px;
  color: var(--text-mute);
  line-height: 1.7;
  text-align: center;
}

/* 인라인 예상 변제금액 결과 카드 (히어로 폼 내장) */
.estimate-inline { margin-top: 16px; }
.estimate-card {
  background: #FEF9F0;
  border: 1px solid #F4E6C5;
  border-radius: 12px;
  padding: 22px 20px;
}
.estimate-card__split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.estimate-card__col { text-align: center; min-width: 0; }
.estimate-card__label {
  font-size: 12.5px;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.estimate-card__num {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  word-break: keep-all;
}
.estimate-card__num span {
  font-size: 13px;
  font-weight: 600;
  margin-left: 3px;
  opacity: 0.85;
}
.estimate-card__num--navy { color: var(--navy-800); }
.estimate-card__num--gold { color: var(--gold-500); }
.estimate-card__divider {
  width: 1px;
  height: 44px;
  background: rgba(0,0,0,0.08);
  justify-self: center;
}
.estimate-card__desc {
  font-size: 13px;
  color: var(--text-soft);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.6;
}
.estimate-card__cta {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: var(--navy-800);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
  transition: background .2s;
}
.estimate-card__cta:hover { background: #1a2a54; }
.estimate-card__foot {
  font-size: 11.5px;
  color: var(--text-mute);
  text-align: center;
}

/* 분기 B (회생 부적합) variant */
.estimate-card--alt { padding: 26px 22px; }
.estimate-card__alt-head { text-align: center; margin-bottom: 18px; }
.estimate-card__alt-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.estimate-card__alt-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ============== 예상 변제 입력 모달 (모바일 CTA → 폼) ============== */
.modal__dialog--estimate {
  max-width: 460px;
  border-radius: 18px;
  overflow: visible;
}
.modal--estimate .hero-form {
  background: transparent;
  box-shadow: none;
  border-top: none;
  border-radius: 18px;
  padding: 36px 22px 22px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

/* ============== 상담 신청 모달 ============== */
.modal__dialog--consult {
  max-width: 460px;
  border-radius: 20px;
  overflow: visible;
}
.modal__close--floating {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.04);
  z-index: 2;
}
.consult-form {
  padding: 36px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  border-radius: 20px;
}
.consult-form__head { margin-bottom: 4px; }
.consult-form__head h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.consult-form__head p {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.55;
}
.consult-field { display: block; }
.consult-field > span {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.consult-field input,
.consult-field select {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid #E5E8F0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: #F4F6FB;
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .2s, background .2s;
}
.consult-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%238b94a8' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.consult-field input::placeholder { color: var(--text-mute); }
.consult-field input:focus,
.consult-field select:focus {
  outline: none;
  border-color: var(--navy-800);
  background: #fff;
}
.consult-agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  margin-top: 4px;
  line-height: 1.55;
}
.consult-agree input {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--navy-800);
  flex-shrink: 0;
}
.consult-agree em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 12px;
  color: var(--text-mute);
}
.consult-submit {
  width: 100%;
  height: 56px;
  background: #B0B6C5;
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  margin-top: 6px;
  transition: background .2s;
}
.consult-form:has(input[name="agree"]:checked) .consult-submit {
  background: var(--navy-800);
}
.consult-form:has(input[name="agree"]:checked) .consult-submit:hover {
  background: #1a2a54;
}
.consult-foot {
  text-align: center;
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 4px;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  body { padding-bottom: 68px; }
  .pc-quick { display: none; }
  .pc-floats { display: none; }
  .section { padding: 100px 0; }

  /* Header — 로고만 표시 */
  .header__inner { height: 64px; justify-content: flex-start; }
  .nav { display: none; }
  .header__cta { display: none; }
  .logo__img { height: 30px; }

  /* Hero — 폼/스탯 숨기고 카피 중앙정렬, CTA 버튼 노출 */
  .hero { padding: 140px 0 160px; min-height: 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__copy { padding-top: 0; text-align: center; }
  .hero__tag { font-size: 16px; margin-bottom: 22px; }
  .hero__title { font-size: clamp(32px, 8.5vw, 44px); line-height: 1.25; margin-bottom: 26px; }
  .hero__desc { font-size: 15.5px; line-height: 1.85; margin-bottom: 36px; }
  .br-m { display: inline; }
  .br-d { display: none; }
  .hero__stats { display: none; }
  .hero .hero-form { display: none; }
  .hero__mobile-cta {
    display: inline-flex;
    padding: 18px 44px;
    font-size: 19px;
    font-weight: 700;
    background: #EABB5A;
    color: var(--navy-900);
    box-shadow: 0 12px 28px rgba(234,187,90,0.35);
  }
  .hero__mobile-cta:hover { background: #d9a945; }

  .live-label { padding: 8px 14px; font-size: 11px; }
  .live-item { font-size: 12px; }
  .live-marquee { animation-duration: 45s; }

  /* Mobile bottom bar */
  .mobile-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 200;
    background: #1A2A54;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -4px 18px rgba(0,0,0,0.25);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-bar__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 6px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
  }
  .mobile-bar__item + .mobile-bar__item { border-left: 1px solid rgba(255,255,255,0.1); }
  .mobile-bar__icon {
    width: 20px; height: 20px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }
  .mobile-bar__item:active { background: rgba(255,255,255,0.08); }

  .stats-band { padding: 110px 0; }
  .stats-band__inner { grid-template-columns: 1fr; gap: 50px; }
  .stats-band__copy { text-align: center; }
  .big-stat { padding: 30px 20px; }
  .big-stat__num { font-size: 44px; }

  .process { grid-template-columns: repeat(2, 1fr); }
  .process__item + .process__item::before { display: none; }
  .process__item { border-bottom: 1px solid rgba(246, 248, 251, 0.2); }
  .cases-viewport { max-width: 896px; /* 3 × 280 + 2 × 28 */ }
  .cases-track { gap: 28px; }
  .case-band {
    padding-left: 24px;
    padding-right: 24px;
  }
  .case-band__copy {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 36px;
  }
  .case-band__copy .section__title { text-align: center; }
  .case-band__icon { display: none; }
  /* 사례 CTA — 카드 위 → 카드 아래 */
  .cases-cta--top { display: none; }
  .cases-cta-bottom { display: block; }
  .case-slider__controls { padding-right: 0; }
  .check-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 14px; }
  /* 상담채널/신청 섹션 좌우 여백 — 컨텐츠가 화면 끝까지 안 닿도록 */
  #contact .container,
  .apply .container { padding-left: 40px; padding-right: 40px; }
  .apply { padding: 60px 0; }
  .apply__inner { grid-template-columns: 1fr; gap: 32px; }
  .apply__copy { text-align: center; }
  .apply__bottom { flex-direction: column; align-items: stretch; gap: 14px; }
  .apply__submit { width: 100%; padding: 18px 60px; font-size: 16px; }
  /* 모바일 — 이름/연락처 1열 + 입력칸 키우기 + 더 둥글게 */
  .apply__row { grid-template-columns: 1fr; gap: 18px; }
  .apply__field span { font-size: 14px; }
  .apply__field input,
  .apply__field textarea {
    border-radius: 10px;
    font-size: 15px;
    padding: 16px 18px;
    box-shadow: 0 1px 3px rgba(15,31,58,0.04);
  }
  .apply__field input { height: 56px; }
  .apply__field textarea { min-height: 140px; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .header__inner { height: 60px; }
  .header__cta .phone { display: none; }
  .nav { display: none; }
  .hero { padding: 130px 0 150px; }
  .hero__stats { grid-template-columns: 1fr; gap: 16px; padding-top: 24px; }
  .process, .case-band__cards { grid-template-columns: 1fr; }
  /* 모바일 — 1개 카드 중앙 + 좌우 peek */
  #numbers.section--soft { overflow: hidden; }
  .cases-viewport {
    width: calc(100vw - 80px);
    max-width: none;
    margin: 60px auto 0;
    padding: 24px 0;
    overflow: visible;
  }
  .cases-track { gap: 16px; }
  .success-card { flex: 0 0 calc(100vw - 80px); padding: 24px 22px 28px; }
  .success-card__rate { font-size: 60px; }

  /* case-slider — 1개 슬라이드만 표시 */
  .case-slider__track { gap: 16px; }
  .case-slide { flex: 0 0 100%; }
  .qualify__cta { flex-direction: column; align-items: center; gap: 12px; }
  .qualify__cta .btn { width: 80%; max-width: 340px; }
}
