@import url(
  'https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700;800;900&display=swap'
);

:root {
  --background: #07111a;
  --background-light: #0d1924;
  --card-background: #f8fbff;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f8fc;
  --muted: #92a1b3;
  --dark-text: #142030;
  --mint: #35dbc3;
  --gold: #d8a83d;
  --blue: #5a91ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: 'Noto Sans KR', sans-serif;
  line-height: 1.65;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}


/* 헤더 */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 26, 0.88);
  backdrop-filter: blur(15px);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #07111a;
  background: linear-gradient(
    135deg,
    var(--gold),
    var(--mint)
  );
}

.nav {
  display: flex;
  gap: 28px;
  color: #b9c3cf;
  font-size: 14px;
}

.nav a:hover {
  color: #ffffff;
}


/* 메인 */

.hero {
  position: relative;
  overflow: hidden;
  padding: 75px 0 65px;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 72px 72px;
}

.hero-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}

.hero-light-one {
  width: 420px;
  height: 420px;
  top: -100px;
  right: -100px;
  background: var(--mint);
}

.hero-light-two {
  width: 360px;
  height: 360px;
  bottom: -180px;
  left: -150px;
  background: var(--blue);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 520px;
  align-items: center;
  gap: 58px;
}

.small-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(53, 219, 195, 0.28);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(53, 219, 195, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.hero-text h1 {
  margin: 24px 0 21px;
  font-size: 53px;
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.hero-text h1 strong {
  color: transparent;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--mint),
    var(--blue)
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-description {
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
}

.trust-box {
  width: max-content;
  max-width: 100%;
  margin-top: 28px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(216, 168, 61, 0.35);
  border-radius: 17px;
  background: rgba(216, 168, 61, 0.07);
}

.trust-check {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #07111a;
  background: linear-gradient(
    135deg,
    var(--gold),
    var(--mint)
  );
  font-weight: 900;
}

.trust-box span {
  display: block;
  color: #9eabb9;
  font-size: 12px;
}

.trust-box strong {
  display: block;
  font-size: 15px;
}

.benefit-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.benefit-list article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.benefit-list article > span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.benefit-list strong {
  display: block;
  margin-top: 7px;
}

.benefit-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}


/* 신청폼 */

.application-card {
  padding: 34px;
  border-radius: 28px;
  color: var(--dark-text);
  background: var(--card-background);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.time-badge {
  display: inline-block;
  padding: 6px 11px;
  border-radius: 999px;
  color: #0b9e8d;
  background: #dcf8f3;
  font-size: 12px;
  font-weight: 800;
}

.application-header h2 {
  margin: 14px 0 6px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.application-header p {
  margin: 0;
  color: #758397;
  font-size: 13px;
}

.progress-area {
  margin: 23px 0;
}

.progress-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #68778a;
  font-size: 12px;
}

.progress-title strong {
  color: #13ae9b;
}

.progress-background {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5ebf2;
}

.progress-bar {
  width: 33%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--mint),
    var(--blue)
  );
  transition: width 0.3s ease;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: stepFade 0.25s ease;
}

@keyframes stepFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.step-number {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #0c9e8d;
  background: #ddf8f3;
  font-size: 12px;
  font-weight: 900;
}

.step-heading strong {
  display: block;
  font-size: 17px;
}

.step-heading p {
  margin: 2px 0 0;
  color: #8794a4;
  font-size: 12px;
}

.input-group {
  display: block;
  margin-bottom: 15px;
}

.input-group > span,
.choice-section legend {
  display: block;
  margin-bottom: 7px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.input-group span small {
  color: #94a3b8;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #dbe3ed;
  border-radius: 13px;
  outline: none;
  color: #172033;
  background: #f2f6fa;
  transition: 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--mint);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(53, 219, 195, 0.12);
}

textarea {
  min-height: 108px;
  resize: vertical;
}

.choice-section {
  margin: 0 0 15px;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
}

.choice-grid label span {
  display: block;
  padding: 12px 8px;
  border: 1px solid #dbe3ed;
  border-radius: 12px;
  text-align: center;
  background: #f2f6fa;
  font-size: 13px;
  font-weight: 700;
}

.choice-grid input:checked + span {
  border-color: var(--mint);
  color: #087d70;
  background: #ddf8f3;
  box-shadow: 0 0 0 3px rgba(53, 219, 195, 0.1);
}

.main-button,
.back-button {
  padding: 15px 18px;
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  transition: 0.2s;
}

.main-button:hover,
.back-button:hover {
  transform: translateY(-1px);
}

.main-button {
  width: 100%;
  color: #07111a;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--mint),
    var(--blue)
  );
  box-shadow: 0 13px 28px rgba(72, 149, 220, 0.22);
}

.back-button {
  min-width: 110px;
  color: #556476;
  background: #e8eef5;
}

.button-group {
  display: flex;
  gap: 10px;
}

.button-group .main-button {
  flex: 1;
}

.privacy-box {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 16px;
  padding: 15px;
  border: 1px solid #dbe3ed;
  border-radius: 14px;
  background: #f3f7fb;
}

.privacy-box input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #13ae9b;
}

.privacy-box strong {
  display: block;
  font-size: 13px;
}

.privacy-box small {
  display: block;
  margin-top: 3px;
  color: #7d8a9b;
  font-size: 11px;
}

.form-information {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  color: #8391a1;
  font-size: 11px;
}


/* 진행 절차 */

.process-section {
  padding: 20px 0 58px;
}

.process-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.process-card h2 {
  margin: 14px 0 24px;
  font-size: 27px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
}

.process-list article > span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.process-list strong {
  display: block;
  margin: 8px 0 4px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}


/* 회사소개 */

.company-section {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  background: #0b151f;
}

.company-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
}

.company-section h2 {
  margin: 15px 0 12px;
  font-size: 35px;
}

.company-section p {
  max-width: 670px;
  color: var(--muted);
}

.company-information {
  border-top: 1px solid var(--line);
}

.company-information div {
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.company-information span {
  color: var(--muted);
}

.company-information strong {
  text-align: right;
}


/* 푸터 */

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: #74869a;
  font-size: 12px;
}

.footer strong {
  color: #dce4ec;
}

.footer p {
  margin: 6px 0;
}

.footer small {
  display: block;
  margin-top: 12px;
}


/* 알림 */

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #ffffff;
  background: #101c28;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: 0.25s;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast.error {
  color: #ffd2d2;
  border-color: #ff7d7d;
}


/* 태블릿 */

@media (max-width: 980px) {

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-text {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-box {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text h1 {
    font-size: 44px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-layout {
    grid-template-columns: 1fr;
  }

}


/* 모바일 */

@media (max-width: 640px) {

  .container {
    width: calc(100% - 24px);
  }

  .header-inner {
    height: 62px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 44px 0;
  }

  .hero-text h1 {
    font-size: 35px;
  }

  .hero-description {
    font-size: 15px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .application-card {
    padding: 22px;
    border-radius: 22px;
  }

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

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 20px;
  }

  .company-information div {
    display: block;
  }

  .company-information strong {
    display: block;
    margin-top: 4px;
    text-align: left;
  }

}
/* 최근 상담 접수 현황 */

.recent-section {
  padding: 22px 0 58px;
}

.recent-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.02)
    );
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.recent-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.recent-header h2 {
  margin: 14px 0 5px;
  font-size: 27px;
}

.recent-header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.live-status {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(53, 219, 195, 0.25);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(53, 219, 195, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.live-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px var(--mint);
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.75);
  }
}

.recent-list {
  border-top: 1px solid var(--line);
}

.recent-item {
  min-height: 82px;
  padding: 16px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 13px;
}

.customer-icon {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 168, 61, 0.32);
  border-radius: 14px;
  color: var(--gold);
  background: rgba(216, 168, 61, 0.08);
  font-size: 14px;
  font-weight: 900;
}

.customer-info strong {
  display: block;
  font-size: 15px;
}

.customer-info small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.consult-status {
  flex-shrink: 0;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.consult-status.waiting {
  color: #8eb9ff;
  background: rgba(90, 145, 255, 0.13);
}

.consult-status.progress {
  color: #f0c76a;
  background: rgba(216, 168, 61, 0.13);
}

.consult-status.complete {
  color: var(--mint);
  background: rgba(53, 219, 195, 0.12);
}

.recent-notice {
  margin: 17px 0 0;
  color: #718398;
  font-size: 11px;
}


/* 최근 상담 현황 모바일 */

@media (max-width: 640px) {

  .recent-card {
    padding: 21px;
  }

  .recent-header {
    display: block;
  }

  .live-status {
    margin-top: 15px;
  }

  .recent-item {
    align-items: flex-start;
  }

  .customer-icon {
    width: 38px;
    height: 38px;
  }

  .customer-info strong {
    font-size: 14px;
  }

  .consult-status {
    font-size: 10px;
  }

}
/* 상담 상태 색상 */

/* 상담 대기 - 파란색 */
.consult-status.waiting {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
}

/* 상담중 - 주황색 */
.consult-status.consulting {
  color: #fb923c;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.35);
}

/* 진행중 - 보라색 */
.consult-status.progress {
  color: #a78bfa;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.35);
}

/* 승인완료 - 초록색 */
.consult-status.approved {
  color: #34d399;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.35);
}


/* 성씨 아이콘 색상 */

/* 김 - 노랑 */
.customer-icon.surname-kim {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
  border-color: #fbbf24;
}

/* 박 - 초록 */
.customer-icon.surname-park {
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border-color: #34d399;
}

/* 이 - 보라 */
.customer-icon.surname-lee {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.12);
  border-color: #a78bfa;
}

/* 최 - 파랑 */
.customer-icon.surname-choi {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.12);
  border-color: #60a5fa;
}

/* 나머지 성씨 - 골드 */
.customer-icon.surname-default {
  color: #d7b45a;
  background: rgba(215, 180, 90, 0.12);
  border-color: #d7b45a;
}
/* 사업자 등록정보 */

.business-info-section {
  padding: 50px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #07111a;
  text-align: center;
}

.business-info-section h2 {
  margin: 16px 0 26px;
  color: #ffffff;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.business-info-list {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.business-info-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: start;
  gap: 20px;
  padding: 7px 0;
  text-align: left;
}

.business-info-list span {
  color: #d8a83d;
  font-size: 13px;
  font-weight: 700;
}

.business-info-list strong {
  color: #aeb9c6;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

.business-info-notice {
  margin: 20px 0 0;
  color: #718398;
  font-size: 11px;
}

@media (max-width: 640px) {

  .business-info-section {
    padding: 40px 12px;
  }

  .business-info-section h2 {
    font-size: 23px;
  }

  .business-info-list {
    padding: 20px 12px;
  }

  .business-info-list div {
    display: block;
    padding: 8px 0;
    text-align: center;
  }

  .business-info-list span {
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
  }

  .business-info-list strong {
    display: block;
    font-size: 12px;
  }

}
/* ==================================================
   A-ONE CREDIT 밝은 은행 스타일
   style.css 맨 아래에 전부 붙여넣기
================================================== */

:root {
  --background: #f5f8fc;
  --background-light: #eef4fb;
  --card-background: #ffffff;
  --line: #dfe7f1;
  --text: #172033;
  --muted: #65748a;
  --dark-text: #172033;
  --mint: #168bff;
  --gold: #d8a83d;
  --blue: #1769e8;
}


/* 전체 배경과 글자 */

html,
body {
  background: #f5f8fc;
  color: #172033;
}


/* 헤더 */

.header {
  border-bottom: 1px solid #e1e8f1;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 18px rgba(19, 43, 76, 0.06);
}

.logo {
  color: #172033;
}

.logo-icon {
  color: #ffffff;
  background: linear-gradient(
    135deg,
    #1769e8,
    #4c93ff
  );
}

.nav {
  color: #536277;
}

.nav a:hover {
  color: #1769e8;
}


/* 메인 상단 */

.hero {
  background-color: #f5f8fc;
  background-image:
    linear-gradient(
      rgba(23, 105, 232, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(23, 105, 232, 0.035) 1px,
      transparent 1px
    );
}

.hero-light-one {
  background: #5aa7ff;
  opacity: 0.18;
}

.hero-light-two {
  background: #ffd97a;
  opacity: 0.2;
}

.hero-text h1 {
  color: #172033;
}

.hero-text h1 strong {
  background: linear-gradient(
    90deg,
    #1769e8,
    #4b8ef7,
    #d8a83d
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-description {
  color: #65748a;
}


/* 공통 배지 */

.small-badge {
  color: #1769e8;
  border-color: rgba(23, 105, 232, 0.24);
  background: rgba(23, 105, 232, 0.08);
}

.time-badge {
  color: #1769e8;
  background: #e9f2ff;
}


/* 안심 상담 박스 */

.trust-box {
  border-color: rgba(216, 168, 61, 0.35);
  background: #fffaf0;
  box-shadow: 0 10px 28px rgba(105, 79, 28, 0.08);
}

.trust-check {
  color: #ffffff;
  background: linear-gradient(
    135deg,
    #d8a83d,
    #f0c76a
  );
}

.trust-box span {
  color: #7c8796;
}

.trust-box strong {
  color: #172033;
}


/* 상단 장점 카드 */

.benefit-list article {
  border-color: #dfe7f1;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(19, 43, 76, 0.07);
}

.benefit-list article > span {
  color: #d39d26;
}

.benefit-list strong {
  color: #172033;
}

.benefit-list p {
  color: #65748a;
}


/* 상담 신청 카드 */

.application-card {
  color: #172033;
  background: #ffffff;
  border: 1px solid #e1e8f1;
  box-shadow: 0 24px 60px rgba(26, 63, 108, 0.14);
}

.application-header h2 {
  color: #172033;
}

.application-header p {
  color: #718096;
}


/* 진행률 */

.progress-title {
  color: #718096;
}

.progress-title strong {
  color: #1769e8;
}

.progress-background {
  background: #e8eef6;
}

.progress-bar {
  background: linear-gradient(
    90deg,
    #1769e8,
    #4d94ff,
    #d8a83d
  );
}


/* 입력창 */

.step-number {
  color: #1769e8;
  background: #e9f2ff;
}

.step-heading strong {
  color: #172033;
}

.step-heading p {
  color: #7c899b;
}

.input-group > span,
.choice-section legend {
  color: #314056;
}

input,
select,
textarea {
  color: #172033;
  background: #f8fafc;
  border-color: #d9e2ee;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #1769e8;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(23, 105, 232, 0.11);
}

.choice-grid label span {
  color: #425168;
  border-color: #d9e2ee;
  background: #f8fafc;
}

.choice-grid input:checked + span {
  color: #1558bd;
  border-color: #1769e8;
  background: #e9f2ff;
  box-shadow: 0 0 0 3px rgba(23, 105, 232, 0.09);
}


/* 버튼 */

.main-button {
  color: #ffffff;
  background: linear-gradient(
    90deg,
    #145ed4,
    #2478ef
  );
  box-shadow: 0 13px 28px rgba(23, 105, 232, 0.24);
}

.main-button:hover {
  box-shadow: 0 16px 34px rgba(23, 105, 232, 0.3);
}

.back-button {
  color: #536277;
  background: #e9eef5;
}

.privacy-box {
  border-color: #d9e2ee;
  background: #f8fafc;
}

.privacy-box strong {
  color: #28364a;
}

.privacy-box small {
  color: #7c899b;
}

.privacy-box input {
  accent-color: #1769e8;
}


/* 최근 상담 현황 */

.recent-section {
  background: #f5f8fc;
}

.recent-card {
  border-color: #dfe7f1;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(19, 43, 76, 0.09);
}

.recent-header h2 {
  color: #172033;
}

.recent-header p {
  color: #65748a;
}

.live-status {
  color: #1769e8;
  border-color: rgba(23, 105, 232, 0.25);
  background: rgba(23, 105, 232, 0.08);
}

.live-status i {
  background: #1769e8;
  box-shadow: 0 0 12px rgba(23, 105, 232, 0.6);
}

.recent-list {
  border-top-color: #e1e8f1;
}

.recent-item {
  border-bottom-color: #e1e8f1;
}

.customer-info strong {
  color: #172033;
}

.customer-info small {
  color: #65748a;
}

.recent-empty,
.recent-notice {
  color: #718096;
}


/* 상담 상태 */

.consult-status.waiting {
  color: #1769e8;
  background: #e8f1ff;
  border-color: #bdd4f8;
}

.consult-status.consulting {
  color: #d97706;
  background: #fff3dc;
  border-color: #f4d29a;
}

.consult-status.progress {
  color: #7c3aed;
  background: #f1eafe;
  border-color: #d5c1f8;
}

.consult-status.approved {
  color: #06885f;
  background: #e0f8ef;
  border-color: #aee7d3;
}


/* 성씨 아이콘 */

.customer-icon {
  background: #ffffff;
}

.customer-icon.surname-kim {
  color: #b98200;
  background: #fff7dc;
  border-color: #e9c769;
}

.customer-icon.surname-park {
  color: #07845c;
  background: #e5f8f1;
  border-color: #9cdbc5;
}

.customer-icon.surname-lee {
  color: #7541c8;
  background: #f0e9fc;
  border-color: #ccb6ed;
}

.customer-icon.surname-choi {
  color: #1769e8;
  background: #e9f2ff;
  border-color: #a9c9f7;
}

.customer-icon.surname-default {
  color: #a67820;
  background: #fff8e6;
  border-color: #dbc17e;
}


/* 상담 진행 절차 */

.process-section {
  background: #f5f8fc;
}

.process-card {
  border-color: #dfe7f1;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(19, 43, 76, 0.08);
}

.process-card h2 {
  color: #172033;
}

.process-list article {
  border-color: #dfe7f1;
  background: #f9fbfe;
}

.process-list article > span {
  color: #d39d26;
}

.process-list strong {
  color: #172033;
}

.process-list p {
  color: #65748a;
}


/* 회사 소개 */

.company-section {
  border-top-color: #dfe7f1;
  background: #ffffff;
}

.company-section h2 {
  color: #172033;
}

.company-section p {
  color: #65748a;
}

.company-information {
  border-top-color: #dfe7f1;
}

.company-information div {
  border-bottom-color: #dfe7f1;
}

.company-information span {
  color: #65748a;
}

.company-information strong {
  color: #172033;
}


/* 사업자 등록정보 */

.business-info-section {
  border-top: 1px solid #dfe7f1;
  background: #f5f8fc;
}

.business-info-section h2 {
  color: #172033;
}

.business-info-list {
  border-top-color: #dfe7f1;
  border-bottom-color: #dfe7f1;
}

.business-info-list span {
  color: #b58117;
}

.business-info-list strong {
  color: #536277;
}

.business-info-notice {
  color: #7a8798;
}


/* 푸터 */

.footer {
  color: #718096;
  border-top: 1px solid #dfe7f1;
  background: #ffffff;
  text-align: center;
}

.footer strong {
  color: #172033;
}

.footer p {
  color: #65748a;
}

.footer small {
  color: #7c899b;
}


/* 알림창 */

.toast {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  background: #172033;
}

.toast.error {
  color: #ffffff;
  border-color: #dc3545;
  background: #c93646;
}


/* 모바일에서 그림자 조절 */

@media (max-width: 640px) {

  .application-card,
  .recent-card,
  .process-card {
    box-shadow: 0 12px 30px rgba(19, 43, 76, 0.1);
  }

}
/* 무직자 · 저신용자 강조 안내 */

.hero-target-box {
  max-width: 610px;
  margin: 26px 0 28px;
  padding: 23px 25px;
  border: 2px solid #2878f0;
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #edf5ff 100%
    );
  box-shadow:
    0 16px 38px rgba(31, 105, 220, 0.16);
}

.hero-target-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
}

.hero-target-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: #1769e8;
  font-size: 16px;
  font-weight: 900;
  box-shadow:
    0 6px 15px rgba(23, 105, 232, 0.22);
}

.hero-target-title span:nth-child(3) {
  color: #5c3b00;
  background: #ffd45c;
  box-shadow:
    0 6px 15px rgba(216, 168, 61, 0.25);
}

.hero-target-title i {
  color: #607089;
  font-style: normal;
  font-size: 20px;
  font-weight: 900;
}

.hero-target-box > strong {
  display: block;
  color: #172033;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-target-box p {
  margin: 9px 0 0;
  color: #536277;
  font-size: 14px;
  line-height: 1.8;
}

.hero-target-box small {
  display: block;
  margin-top: 9px;
  color: #7b8796;
  font-size: 11px;
}


/* 모바일 */

@media (max-width: 640px) {

  .hero-target-box {
    margin: 22px 0 25px;
    padding: 20px;
    text-align: left;
  }

  .hero-target-title {
    justify-content: flex-start;
  }

  .hero-target-title span {
    padding: 6px 11px;
    font-size: 14px;
  }

  .hero-target-box > strong {
    font-size: 19px;
  }

  .hero-target-box p {
    font-size: 13px;
  }

}
/* ==================================================
   프리미엄 장점 카드
================================================== */

.premium-benefit-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.premium-benefit-card {
  position: relative;
  min-height: 315px;
  padding: 25px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid #dce6f2;
  border-radius: 24px;
  text-align: center;
  background: #ffffff;
  box-shadow:
    0 16px 38px rgba(29, 61, 105, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.premium-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 48px rgba(29, 61, 105, 0.17);
}

.premium-benefit-card::before {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  top: -95px;
  right: -80px;
  border-radius: 50%;
  opacity: 0.16;
}

.benefit-number {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 92px;
  height: 92px;
  margin-top: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 42px;
  background: #ffffff;
  box-shadow:
    0 12px 28px rgba(29, 61, 105, 0.13);
}

.premium-benefit-card strong {
  display: block;
  margin-top: 23px;
  color: #13213a;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.premium-benefit-card > p {
  margin: 8px 0 0;
  color: #66758b;
  font-size: 14px;
}

.benefit-highlight {
  width: 100%;
  margin-top: auto;
  padding: 13px 10px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
}


/* 01 간편 신청 */

.card-apply {
  border-color: #f2d28d;
  background:
    linear-gradient(
      180deg,
      #fffef9 0%,
      #fff9e9 100%
    );
}

.card-apply::before {
  background: #f4b400;
}

.card-apply .benefit-number {
  background:
    linear-gradient(
      135deg,
      #ffb300,
      #f28a00
    );
}

.card-apply .benefit-icon {
  color: #f5a400;
  background: #fffaf0;
}

.card-apply .benefit-highlight {
  color: #a96500;
  border: 1px solid #f2d28d;
  background: #fff3d3;
}


/* 02 무료 상담 */

.card-free {
  border-color: #b9d3ff;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #eef5ff 100%
    );
}

.card-free::before {
  background: #1769e8;
}

.card-free .benefit-number {
  background:
    linear-gradient(
      135deg,
      #1769e8,
      #4a95ff
    );
}

.card-free .benefit-icon {
  color: #1769e8;
  background: #eff5ff;
}

.card-free .benefit-highlight {
  color: #1258bd;
  border: 1px solid #b9d3ff;
  background: #e8f1ff;
}


/* 03 비대면 상담 */

.card-online {
  border-color: #aee6d8;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #ecfbf7 100%
    );
}

.card-online::before {
  background: #13a885;
}

.card-online .benefit-number {
  background:
    linear-gradient(
      135deg,
      #13a885,
      #38c9a8
    );
}

.card-online .benefit-icon {
  color: #13a885;
  background: #eafaf5;
}

.card-online .benefit-highlight {
  color: #087d66;
  border: 1px solid #aee6d8;
  background: #ddf7ef;
}


/* 태블릿 */

@media (max-width: 980px) {

  .premium-benefit-list {
    grid-template-columns: 1fr;
  }

  .premium-benefit-card {
    min-height: 280px;
  }

}


/* 모바일 */

@media (max-width: 640px) {

  .premium-benefit-list {
    gap: 14px;
  }

  .premium-benefit-card {
    min-height: 260px;
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .benefit-number {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .benefit-icon {
    width: 78px;
    height: 78px;
    font-size: 34px;
  }

  .premium-benefit-card strong {
    font-size: 21px;
  }

}
