/* ===== 가입 신청서 리뉴얼 ===== */
.signup-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 20px 16px;
}

/* 상품 정보 카드 */
.selected-product-summary {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, #f0ecff 0%, #e8f4fd 100%);
  border: none;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(54, 23, 206, 0.08);
}

.summary-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #3617ce;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.summary-body {
  flex: 1;
  min-width: 0;
}

.selected-product-summary h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
}

.product-info {
  background: white;
  border-radius: 10px;
  padding: 14px;
  font-weight: 500;
}

/* 상품 상세 그리드 */
.product-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.detail-icon {
  width: 20px;
  text-align: center;
  color: #3617ce;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.detail-label {
  color: #888;
  font-weight: 500;
  min-width: 70px;
  flex-shrink: 0;
}

.detail-value {
  color: #333;
  font-weight: 600;
}

.detail-value.discount {
  color: #e74c3c;
}

.detail-value.gift {
  color: #2e7d32;
  font-weight: 700;
}

/* 가격 바 */
/* 가격 바 - 2줄 구조 */
.product-price-bar {
  padding: 12px 0 0 0;
  margin-top: 12px;
  border-top: 1px dashed #ddd;
}

.price-top {
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 4px;
}

.price-bottom {
  display: flex;
  align-items: baseline;
}

.price-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3617ce;
}

.price-vat {
  font-size: 0.7rem;
  color: #999;
  margin-left: auto;
}

/* 폼 카드 */
.signup-form {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
}

/* 섹션 헤더 (STEP 번호 + 제목) */
.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 18px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.section-header:first-child,
.customer-info-section > .section-header:first-child {
  margin-top: 0;
}

.section-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #3617ce;
  color: white;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.section-header h3 {
  margin: 0;
  padding: 0;
  border: none;
  color: #333;
  font-size: 1.05rem;
  font-weight: 600;
}

/* 기존 customer-info-section h3 무효화 */
.customer-info-section > h3 {
  display: none;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #555;
  font-size: 0.9rem;
}

.required {
  color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.2s;
  box-sizing: border-box;
  background: #fafbfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3617ce;
  background: white;
  box-shadow: 0 0 0 3px rgba(54, 23, 206, 0.08);
}

/* 주민번호 입력 */
.ssn-input-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ssn-input-container input {
  flex: 1;
  text-align: center;
}

.separator {
  font-size: 1.2rem;
  font-weight: bold;
  color: #666;
}

/* 전화번호 입력 */
.phone-input-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-input-container input {
  flex: 1;
  text-align: center;
}

/* 휴대폰 입력 */
.mobile-input-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-prefix-fixed {
  flex: 0 0 50px;
  background: #f0ecff;
  border: 1.5px solid #d0c8f0;
  border-radius: 10px;
  padding: 11px;
  text-align: center;
  font-weight: 600;
  color: #3617ce;
}

.mobile-input-container input {
  flex: 1;
  text-align: center;
}

/* 주소 입력 */
.address-input-container .address-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.address-row input {
  flex: 2;
}

.postcode-btn {
  flex: 0 0 120px;
  background: #3617ce;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  line-height: 1.3;
}

.postcode-btn:hover {
  background: #2b10b0;
  transform: translateY(-1px);
}

/* 자동이체 정보 */
.account-info {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 15px;
  align-items: end;
}

.bank-select-container,
.account-number-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bank-select-container label,
.account-number-container label {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #666;
}

/* 제출 버튼 */
.submit-section {
  text-align: center;
  margin-top: 32px;
}

.signup-submit-btn {
  background: linear-gradient(135deg, #3617ce 0%, #5a3de0 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 48px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
  box-shadow: 0 4px 14px rgba(54, 23, 206, 0.3);
}

.signup-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(54, 23, 206, 0.4);
}

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

.submit-notice {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
}

/* 상단 탭과 breadcrumb 여백 최소화 */
.top-tabs-wrapper {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.breadcrumb {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 10px !important;
  margin-top: 0 !important;
}

.breadcrumb-container {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

/* 가입신청 섹션 상단 여백 조정 */
.section[style*="padding-top: 100px"] {
  padding-top: 20px !important;
}

/* 결제/신청자 선택 */
.payment-method-selection,
.applicant-type-selection {
  margin: 16px 0;
  padding: 14px;
  background: #fafbfc;
  border-radius: 10px;
  border: 1.5px solid #eee;
}

.payment-method-label,
.applicant-type-label {
  display: block;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.payment-method-options,
.applicant-type-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-option,
.applicant-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1.5px solid #e0e0e0;
  background: white;
  transition: all 0.2s;
}

.payment-option:hover,
.applicant-option:hover {
  border-color: #3617ce;
}

.payment-option:has(input:checked),
.applicant-option:has(input:checked) {
  border-color: #3617ce;
  background: rgba(54, 23, 206, 0.05);
}

.payment-option input[type="radio"],
.applicant-option input[type="radio"] {
  margin: 0;
  transform: scale(1.1);
  accent-color: #3617ce;
}

.payment-option span,
.applicant-option span {
  font-weight: 500;
  color: #333;
  font-size: 0.9rem;
}

/* 카드 정보 스타일 */
.card-company-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-company-container label {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.card-details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
  align-items: end;
  margin-top: 15px;
}

.card-number-container,
.card-expiry-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-number-container label,
.card-expiry-container label {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #666;
}

.expiry-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.expiry-inputs input {
  flex: 1;
  text-align: center;
}

/* 타인 정보 스타일 */
.other-applicant-info {
  margin-top: 16px;
  padding: 18px;
  background: #fffbf0;
  border: 1.5px solid #f0dca0;
  border-radius: 12px;
}

.other-info-fields .form-group {
  margin-bottom: 14px;
}

.other-info-fields label {
  font-size: 0.88rem;
  color: #856404;
  font-weight: 600;
}

/* 보안프로그램 오버레이 스타일 */
.security-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.security-overlay.active {
  display: flex;
  opacity: 1;
}

.security-content {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.security-overlay.active .security-content {
  transform: scale(1);
}

.security-icon {
  font-size: 3rem;
  color: #3617ce;
  margin-bottom: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
  transform: scale(1);
  }
  50% {
  transform: scale(1.1);
  }
}

.security-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.security-message {
  font-size: 1rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

.security-progress {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}

.security-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #3617ce, #5a3de0);
  border-radius: 4px;
  width: 0%;
  animation: progressFill 2.5s ease-in-out;
}

@keyframes progressFill {
  0% {
  width: 0%;
  }
  100% {
  width: 100%;
  }
}

.security-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #e0e0e0;
  border-top: 3px solid #3617ce;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 10px;
}

@keyframes spin {
  0% {
  transform: rotate(0deg);
  }
  100% {
  transform: rotate(360deg);
  }
}

.security-status {
  font-size: 0.9rem;
  color: #3617ce;
  font-weight: 500;
}

/* 이름 및 신분증 업로드 행 */
.name-id-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: end;
}

.name-container,
.id-upload-container {
  display: flex;
  flex-direction: column;
}

.name-container label,
.id-upload-container label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.optional-note {
  color: #666;
  font-weight: 400;
  font-size: 0.85rem;
}

.upload-notice {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: #666;
  background: #f8f9fa;
  padding: 6px 10px;
  border-radius: 4px;
  border-left: 3px solid #3617ce;
}

.upload-notice i {
  color: #3617ce;
  font-size: 0.75rem;
}

.input-help {
  margin-top: 5px;
}

.input-help small {
  color: #999;
  font-size: 0.75rem;
  font-style: italic;
}

/* 파일 업로드 박스 스타일 */
.file-upload-box {
  width: 100%;
  height: 52px;
  border: 2px dashed #d0d0d0;
  border-radius: 10px;
  background: #fafbfc;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.file-upload-box:hover {
  border-color: #3617ce;
  background: #f5f3ff;
}

.file-upload-box.has-file {
  border-color: #28a745;
  background: #f8fff9;
}

.upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
}

.upload-icon {
  font-size: 1.2rem;
  color: #3617ce;
  margin-bottom: 2px;
}

.upload-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  line-height: 1;
}

.upload-subtext {
  font-size: 0.75rem;
  color: #666;
  line-height: 1;
}

.file-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 12px;
  gap: 8px;
}

.file-icon {
  color: #28a745;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.file-name {
  flex: 1;
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.remove-file {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  padding: 4px;
  border-radius: 3px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.remove-file:hover {
  background: rgba(220, 53, 69, 0.1);
  color: #c82333;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .signup-container {
    padding: 12px;
  }

  .signup-form {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .selected-product-summary {
    flex-direction: column;
    gap: 8px;
    padding: 14px;
  }

  .summary-icon {
    display: none;
  }

  .selected-product-summary h3 {
    font-size: 0.92rem;
    margin-bottom: 6px;
  }

  .product-info {
    padding: 10px;
  }

  .detail-row {
    font-size: 0.8rem;
    gap: 5px;
  }

  .detail-icon {
    width: 14px;
    font-size: 0.7rem;
  }

  .detail-label {
    min-width: 52px;
    font-size: 0.75rem;
  }

  .detail-value {
    font-size: 0.8rem;
    word-break: break-all;
  }

  .section-header {
    margin: 22px 0 14px 0;
  }

  .section-step {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .section-header h3 {
    font-size: 0.95rem;
  }

  .name-id-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .price-amount {
    font-size: 1.2rem;
  }

  .detail-label {
    min-width: 55px;
    font-size: 0.8rem;
  }

  .detail-value {
    font-size: 0.85rem;
  }

  .file-upload-box {
  height: 48px;
  }

  .upload-text {
  font-size: 0.85rem;
  }

  .upload-subtext {
  font-size: 0.7rem;
  }

  .signup-container {
  padding: 15px;
  }

  .signup-form {
  padding: 20px;
  }

  .ssn-input-container,
  .phone-input-container,
  .mobile-input-container {
  flex-direction: row;
  gap: 8px;
  }

  .mobile-prefix-fixed {
  flex: 0 0 50px;
  }

  .mobile-input-container input {
  flex: 1;
  }

  .separator {
  display: inline-block;
  }

  .address-row {
  flex-direction: column;
  gap: 8px;
  }

  .account-info {
  grid-template-columns: 1fr;
  gap: 10px;
  }

  .card-details {
  grid-template-columns: 1fr;
  gap: 15px;
  }

  /* 결제방법과 신청자 선택은 모바일에서도 가로 배열 유지 */
  .payment-method-options,
  .applicant-type-options {
  gap: 15px;
  }

  .other-applicant-info {
  padding: 15px;
  }

}

@media (max-width: 480px) {
  .mobile-input-container select {
  flex: none;
  width: 100%;
  }

  .signup-submit-btn {
  width: 100%;
  min-width: auto;
  }

  .security-content {
  padding: 30px 20px;
  max-width: 350px;
  }

  .security-icon {
  font-size: 2.5rem;
  }

  .security-title {
  font-size: 1.2rem;
  }

  /* 아주 작은 화면에서 부가세포함만 더 작게 */
  .product-info span:last-child {
  font-size: 0.8rem !important;
  padding: 2px 5px !important;
  }
}
/* 데스크톱 전용 최적화 (769px 이상) */
@media (min-width: 769px) {
  .postcode-btn {
    flex: 0 0 100px;
  }
}
/* 진행 과정 안내 버튼 */
.process-guide-button-wrapper {
  text-align: center;
  margin: 30px 0;
}

.process-guide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #3617ce;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(54, 23, 206, 0.3);
}

.process-guide-btn:hover {
  background: #2b10b0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(54, 23, 206, 0.4);
}

.process-guide-btn i:first-child {
  font-size: 1.2rem;
}

.process-guide-btn i:last-child {
  transition: transform 0.3s ease;
}

.process-guide-btn:hover i:last-child {
  transform: translateX(5px);
}

/* 모달 오버레이 */
.process-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.process-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
  opacity: 0;
  }
  to {
  opacity: 1;
  }
}

/* 모달 컨텐츠 */
.process-modal-content {
  background: white;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 20px;
  overflow: hidden;
  animation: slideUp 0.3s ease;
  display: flex;
  flex-direction: column;
}

@keyframes slideUp {
  from {
  transform: translateY(50px);
  opacity: 0;
  }
  to {
  transform: translateY(0);
  opacity: 1;
  }
}

/* 모달 헤더 */
.process-modal-header {
  background: linear-gradient(135deg, #3617ce 0%, #5a3de0 100%);
  color: white;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.process-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.process-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.process-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* 모달 바디 */
.process-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
  background: #f8f9fa;
}

/* 타임라인 스타일 */
.process-timeline {
  position: relative;
  padding: 20px 0;
}

.process-step {
  display: flex;
  margin-bottom: 35px;
  position: relative;
  opacity: 0;
  animation: fadeInLeft 0.5s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInLeft {
  from {
  opacity: 0;
  transform: translateX(-20px);
  }
  to {
  opacity: 1;
  transform: translateX(0);
  }
}

.step-icon-wrapper {
  position: relative;
  margin-right: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #3617ce;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
  z-index: 3;
}

.step-number.complete {
  background: #4caf50;
}

.step-icon {
  width: 55px;
  height: 55px;
  background: white;
  border: 3px solid #3617ce;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #3617ce;
  box-shadow: 0 3px 10px rgba(54, 23, 206, 0.2);
  position: relative;
  z-index: 2;
}

.step-icon.complete {
  background: #4caf50;
  border-color: #4caf50;
  color: white;
}

.step-line {
  position: absolute;
  top: 55px;
  left: 27px;
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, #3617ce 0%, rgba(54, 23, 206, 0.2) 100%);
}

.process-step:last-child .step-line {
  display: none;
}

.step-content {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #3617ce;
}

.step-content h3 {
  color: #333;
  font-size: 1.15rem;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.step-time {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0f4ff;
  padding: 4px 10px;
  border-radius: 15px;
}

.step-time i {
  color: #3617ce;
  font-size: 0.8rem;
}

.step-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-details li {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 6px;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.step-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

/* 안내사항 카드 */
.process-notice {
  margin-top: 30px;
}

.notice-card {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid #ffcccc;
  display: flex;
  gap: 15px;
}

.notice-icon {
  flex-shrink: 0;
}

.notice-icon i {
  font-size: 24px;
  color: #ff6b6b;
}

.notice-content h4 {
  color: #d32f2f;
  margin: 0 0 12px 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.notice-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-content li {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.notice-content li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #ff6b6b;
  font-weight: bold;
}

/* 모달 푸터 */
.process-modal-footer {
  background: white;
  padding: 20px 30px;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.95rem;
  color: #666;
}

.contact-link {
  color: #3617ce;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 20px;
}

.contact-link:hover {
  background: #f0f4ff;
  transform: translateY(-1px);
}

.contact-link.kakao {
  color: #3c1e1e;
  background: #fee500;
  padding: 5px 12px;
}

.contact-link.kakao:hover {
  background: #fdd835;
}

.close-modal-btn {
  background: #3617ce;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-modal-btn:hover {
  background: #2b10b0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(54, 23, 206, 0.3);
}

/* 스크롤바 스타일 */
.process-modal-body::-webkit-scrollbar {
  width: 8px;
}

.process-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.process-modal-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.process-modal-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .process-modal-content {
  width: 95%;
  max-height: 95vh;
  border-radius: 15px;
  }

  .process-modal-header {
  padding: 20px;
  }

  .process-title {
  font-size: 1.2rem;
  }

  .process-modal-body {
  padding: 20px;
  }

  .process-step {
  flex-direction: column;
  align-items: center;
  text-align: center;
  }

  .step-icon-wrapper {
  margin-right: 0;
  margin-bottom: 15px;
  }

  .step-line {
  display: none;
  }

  .step-content {
  width: 100%;
  border-left: none;
  border-top: 4px solid #3617ce;
  }

  .step-details li {
  text-align: left;
  }

  .notice-card {
  flex-direction: column;
  text-align: center;
  }

  .notice-content li {
  text-align: left;
  }

  .process-modal-footer {
  flex-direction: column;
  gap: 15px;
  }

  .contact-info {
  flex-wrap: wrap;
  justify-content: center;
  }

  .close-modal-btn {
  width: 100%;
  }
}

@media (max-width: 480px) {
  .process-guide-btn {
  font-size: 0.9rem;
  padding: 12px 20px;
  }

  .step-icon {
  width: 45px;
  height: 45px;
  font-size: 18px;
  }

  .step-content h3 {
  font-size: 1rem;
  }

  .step-details li,
  .notice-content li {
  font-size: 0.85rem;
  }

  .contact-info {
  font-size: 0.85rem;
  }

  .contact-info span {
  display: none;
  }
}
