/* ========================================
   WIZTION FINANCE - 무료심사 페이지 스타일
   ======================================== */

/* ========================================
   Hero Section
   ======================================== */
.wiztion-contact-hero {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-pale, #E8F0EA) 100%);
  padding: 0;
  margin: 0;
  min-height: auto;
  display: flex;
  align-items: flex-start;
}

.wiztion-contact-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.wiztion-contact-hero-content {
  max-width: 650px;
}

.wiztion-contact-hero-headline {
  font-size: 56px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out;
}

.wiztion-contact-hero-subheadline {
  font-size: 20px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.wiztion-contact-hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.wiztion-contact-hero-disclaimer {
  font-size: 13px;
  color: #999999;
  line-height: 1.5;
  margin-top: 16px;
}

.wiztion-contact-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease-out 0.6s both;
}

.wiztion-contact-hero-visual img {
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ========================================
   상담 프로세스 Section
   ======================================== */
.wiztion-contact-process {
  background: linear-gradient(135deg, #f7f9fc 0%, #eef2f7 100%);
  padding: 100px 0;
}

.wiztion-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.wiztion-process-step {
  text-align: center;
  position: relative;
}

.wiztion-step-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.wiztion-step-icon svg {
  width: 48px;
  height: 48px;
  color: var(--primary, #4A7C59);
  stroke: var(--primary, #4A7C59);
  transition: all 0.3s ease;
}

.wiztion-step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: var(--primary, #4A7C59);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 3px solid #f7f9fc;
}

/* 연결선 */
.wiztion-process-step::after {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(50% + 50px);
  width: calc(100% - 100px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary, #4A7C59) 0%, var(--primary-dark, #3D6649) 100%);
  z-index: 0;
}

.wiztion-process-step:last-child::after {
  display: none;
}

.wiztion-step-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.wiztion-step-description {
  font-size: 15px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
}

/* 호버 효과 */
@media (min-width: 768px) {
  .wiztion-process-step:hover .wiztion-step-icon {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(74, 124, 89, 0.4);
  }

  .wiztion-process-step:hover .wiztion-step-icon svg {
    transform: scale(1.1);
  }

  .wiztion-process-step:hover .wiztion-step-title {
    color: var(--primary, #4A7C59);
  }
}

/* 슬라이드 네비게이션 (데스크탑에서 숨김) */
.wiztion-slide-nav {
  display: none;
}

/* ========================================
   FAQ Section
   ======================================== */
.wiztion-contact-faq {
  background: #FFFFFF;
  padding: 100px 0;
}

.wiztion-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wiztion-faq-item {
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.wiztion-faq-item:hover {
  border-color: var(--primary, #4A7C59);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.15);
}

.wiztion-faq-item.active {
  border-color: var(--primary, #4A7C59);
  box-shadow: 0 8px 20px rgba(74, 124, 89, 0.2);
}

.wiztion-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.wiztion-faq-question:hover {
  background: #F9FAFB;
}

.wiztion-faq-item.active .wiztion-faq-question {
  background: var(--primary-pale, #E8F0EA);
}

.wiztion-faq-question-inner {
  display: flex;
  align-items: center;
  flex: 1;
}

.wiztion-faq-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary, #4A7C59);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  margin-right: 12px;
  flex-shrink: 0;
}

.wiztion-faq-question-text {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  line-height: 1.5;
  padding-right: 20px;
  flex: 1;
}

.wiztion-faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #F3F4F6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.wiztion-faq-item.active .wiztion-faq-icon {
  background: var(--primary, #4A7C59);
  transform: rotate(180deg);
}

.wiztion-faq-icon svg {
  width: 18px;
  height: 18px;
  color: #666666;
  stroke: #666666;
  transition: all 0.3s ease;
}

.wiztion-faq-item.active .wiztion-faq-icon svg {
  color: #FFFFFF;
  stroke: #FFFFFF;
}

.wiztion-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.wiztion-faq-item.active .wiztion-faq-answer {
  max-height: 500px;
  padding: 0 28px 28px 28px;
}

.wiztion-faq-answer-text {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 1.8;
}

/* ========================================
   무료심사 신청 폼 Section - 2컬럼 레이아웃
   ======================================== */
.wiztion-contact-form-section {
  background: linear-gradient(135deg, #f7f9fc 0%, var(--primary-pale, #E8F0EA) 100%);
  padding: 100px 0;
}

/* 2컬럼 폼 래퍼 */
.wiztion-form-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: stretch; /* 좌우 높이 동일하게 */
}

/* 좌측: 정보 영역 */
.wiztion-form-info {
  display: flex;
  flex-direction: column;
  width: 300px; /* 고정 너비 */
  /* 우측 폼과 높이 자동 맞춤 (align-items: stretch) */
}

.wiztion-info-title {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.wiztion-info-title .highlight {
  color: var(--primary, #4A7C59);
}

.wiztion-info-desc {
  font-size: 17px;
  font-weight: 400;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 32px;
}

.wiztion-info-image {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  width: 100%;
  flex: 1 1 0; /* 남은 공간 정확히 채우기 (grow + shrink + basis:0) */
  min-height: 200px; /* 최소 높이 */
  display: flex; /* 이미지가 컨테이너를 완전히 채우도록 */
}

.wiztion-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* 얼굴 위치 조정 */
  display: block;
  flex: 1; /* 이미지가 flex 컨테이너 채우기 */
}

.wiztion-contact-box {
  background: #FFFFFF;
  border: 2px solid var(--primary-pale, #E8F0EA);
  border-radius: 12px;
  padding: 20px;
  width: 100%; /* 좌측 영역 전체 너비 */
  flex-shrink: 0;
}

.wiztion-contact-box-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.wiztion-contact-box-item:last-child {
  margin-bottom: 0;
}

.wiztion-contact-box-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary, #4A7C59);
  flex-shrink: 0;
}

.wiztion-contact-box-text {
  font-size: 15px;
  color: #333333;
}

.wiztion-contact-box-text strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary, #4A7C59);
}

/* 우측: 폼 영역 */
.wiztion-form-area {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.wiztion-form-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #F3F4F6;
}

.wiztion-form-title {
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.wiztion-form-subtitle {
  font-size: 15px;
  color: #666666;
}

/* 폼 행 레이아웃 */
.wiztion-form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.wiztion-form-row-half {
  grid-template-columns: repeat(2, 1fr);
}

.wiztion-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.wiztion-contact-form {
  /* 기존 스타일 제거 - 폼 영역이 대체 */
}

.wiztion-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.wiztion-form-group {
  display: flex;
  flex-direction: column;
}

.wiztion-form-full {
  grid-column: 1 / -1;
}

.wiztion-form-label {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
}

.wiztion-form-label .required {
  color: #EF4444;
}

.wiztion-form-input,
.wiztion-form-select,
.wiztion-form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  background: #FFFFFF;
  transition: all 0.3s ease;
  font-family: inherit;
}

.wiztion-form-input:focus,
.wiztion-form-select:focus,
.wiztion-form-textarea:focus {
  outline: none;
  border-color: var(--primary, #4A7C59);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.wiztion-form-input::placeholder,
.wiztion-form-textarea::placeholder {
  color: #9CA3AF;
}

.wiztion-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.wiztion-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.wiztion-checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--primary, #4A7C59);
  cursor: pointer;
}

.wiztion-checkbox-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
}

.wiztion-privacy-link {
  color: var(--primary, #4A7C59);
  text-decoration: underline;
}

.wiztion-privacy-link:hover {
  color: var(--primary-dark, #3D6649);
}

/* 자금 종류 선택 그룹 */
.wiztion-fund-type-group {
  margin-bottom: 24px;
}

.wiztion-fund-type-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 12px;
}

.wiztion-fund-type-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wiztion-fund-type-option {
  position: relative;
}

.wiztion-fund-type-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wiztion-fund-type-option label {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  background: #F9FAFB;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wiztion-fund-type-option input[type="checkbox"]:checked + label {
  background: var(--primary-pale, #E8F0EA);
  border-color: var(--primary, #4A7C59);
  color: var(--primary, #4A7C59);
  font-weight: 600;
}

.wiztion-fund-type-option label:hover {
  border-color: var(--primary, #4A7C59);
  background: #F3F4F6;
}

/* 개인정보 동의 섹션 */
.wiztion-privacy-section {
  margin-top: 24px;
  padding: 20px;
  background: #F9FAFB;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
}

.wiztion-privacy-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wiztion-privacy-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary, #4A7C59);
  cursor: pointer;
  flex-shrink: 0;
}

.wiztion-privacy-checkbox label {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.wiztion-privacy-detail-link {
  font-size: 13px;
  color: var(--primary, #4A7C59);
  text-decoration: underline;
  cursor: pointer;
}

.wiztion-privacy-detail-link:hover {
  color: var(--primary-dark, #3D6649);
}

.wiztion-privacy-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.wiztion-privacy-content.active {
  max-height: 200px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
}

.wiztion-privacy-content p {
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 6px;
}

.wiztion-privacy-content p:last-child {
  margin-bottom: 0;
}

/* 폼 제출 영역 */
.wiztion-form-submit {
  margin-top: 32px;
  text-align: center;
}

.wiztion-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-primary, linear-gradient(135deg, #4A7C59 0%, #5A8C69 100%));
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 48px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(74, 124, 89, 0.35);
  width: 100%;
  max-width: 400px;
}

.wiztion-submit-button svg {
  width: 22px;
  height: 22px;
}

.wiztion-submit-button:hover {
  background: linear-gradient(135deg, var(--primary-dark, #3D6649) 0%, var(--primary, #4A7C59) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.5);
}

.wiztion-submit-note {
  margin-top: 12px;
  font-size: 13px;
  color: #999999;
}

/* 추가 연락처 정보 박스 */
.wiztion-contact-info-box {
  margin-top: 40px;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--primary-pale, #E8F0EA);
}

.wiztion-contact-info-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.wiztion-contact-info-text {
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
}

.wiztion-contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary, #4A7C59);
  text-decoration: none;
  transition: all 0.3s ease;
}

.wiztion-contact-phone svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary, #4A7C59);
}

.wiztion-contact-phone:hover {
  color: var(--primary-dark, #3D6649);
  transform: scale(1.05);
}

.wiztion-contact-phone:hover svg {
  stroke: var(--primary-dark, #3D6649);
}

/* ========================================
   애니메이션
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ========================================
   반응형 - Tablet (1023px 이하)
   ======================================== */
@media (max-width: 1023px) {
  /* Hero */
  .wiztion-contact-hero-container {
    padding: 80px 40px;
    gap: 60px;
    grid-template-columns: 1fr 1fr;
  }

  .wiztion-contact-hero-headline {
    font-size: 48px;
  }

  .wiztion-contact-hero-subheadline {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .wiztion-contact-hero-visual img {
    max-width: 400px;
  }

  /* 상담 프로세스 */
  .wiztion-contact-process {
    padding: 80px 0;
  }

  .wiztion-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }

  .wiztion-process-step::after {
    display: none;
  }

  .wiztion-process-step:nth-child(odd)::after {
    display: block;
  }

  .wiztion-process-step:nth-child(3)::after {
    display: none;
  }

  /* FAQ */
  .wiztion-contact-faq {
    padding: 80px 0;
  }

  .wiztion-faq-question {
    padding: 20px 24px;
  }

  .wiztion-faq-question-text {
    font-size: 17px;
  }

  .wiztion-faq-item.active .wiztion-faq-answer {
    padding: 0 24px 24px 24px;
  }

  /* 폼 - 2컬럼 레이아웃 */
  .wiztion-contact-form-section {
    padding: 80px 0;
  }

  .wiztion-form-wrapper {
    gap: 40px;
  }

  .wiztion-form-info {
    position: static;
  }

  .wiztion-info-title {
    font-size: 30px;
  }

  .wiztion-info-desc {
    font-size: 16px;
  }

  .wiztion-form-area {
    padding: 36px;
  }

  .wiztion-form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .wiztion-form-row-half {
    grid-template-columns: 1fr;
  }

  .wiztion-contact-form {
    padding: 40px;
  }
}

/* ========================================
   반응형 - Mobile (767px 이하)
   ======================================== */
@media (max-width: 767px) {
  /* Hero */
  .wiztion-contact-hero {
    min-height: auto;
    padding: 0;
  }

  .wiztion-contact-hero-container {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
    text-align: center;
  }

  .wiztion-contact-hero-content {
    max-width: 100%;
    padding: 40px 20px;
    order: 1;
  }

  .wiztion-contact-hero-headline {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.3;
    word-break: keep-all;
  }

  .wiztion-contact-hero-subheadline {
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 1.6;
    word-break: keep-all;
  }

  .wiztion-contact-hero-cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .wiztion-contact-hero-cta-group .wiztion-cta-primary,
  .wiztion-contact-hero-cta-group .wiztion-cta-ghost {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 20px;
  }

  .wiztion-contact-hero-visual {
    order: -1;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .wiztion-contact-hero-visual img {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
  }

  .wiztion-contact-hero-disclaimer {
    font-size: 11px;
    margin-top: 20px;
    line-height: 1.4;
  }

  /* 상담 프로세스 */
  .wiztion-contact-process {
    padding: 60px 0;
  }

  .wiztion-process-steps {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px;
    margin: 0 -20px;
  }

  .wiztion-process-steps::-webkit-scrollbar {
    display: none;
  }

  .wiztion-process-steps {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .wiztion-process-step {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 30px 20px;
    margin-right: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 124, 89, 0.2);
  }

  .wiztion-process-step:last-child {
    margin-right: 0;
  }

  .wiztion-process-step::after {
    display: none !important;
  }

  .wiztion-step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .wiztion-step-icon svg {
    width: 40px;
    height: 40px;
  }

  .wiztion-step-number {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .wiztion-step-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .wiztion-step-description {
    font-size: 14px;
  }

  /* 슬라이드 네비게이션 표시 */
  .wiztion-slide-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
  }

  .wiztion-slide-nav-btn {
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    border: 2px solid var(--primary, #4A7C59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .wiztion-slide-nav-btn:active {
    transform: scale(0.95);
    background: var(--primary, #4A7C59);
  }

  .wiztion-slide-nav-btn svg {
    width: 20px;
    height: 20px;
    color: var(--primary, #4A7C59);
    stroke: var(--primary, #4A7C59);
  }

  .wiztion-slide-nav-btn:active svg {
    color: #FFFFFF;
    stroke: #FFFFFF;
  }

  /* FAQ */
  .wiztion-contact-faq {
    padding: 60px 0;
  }

  .wiztion-faq-list {
    gap: 12px;
  }

  .wiztion-faq-question {
    padding: 16px 16px;
  }

  .wiztion-faq-question-text {
    font-size: 13px;
    padding-right: 8px;
    word-break: keep-all;
  }

  .wiztion-faq-label {
    width: 20px;
    height: 20px;
    font-size: 11px;
    margin-right: 8px;
  }

  .wiztion-faq-icon {
    width: 24px;
    height: 24px;
  }

  .wiztion-faq-icon svg {
    width: 14px;
    height: 14px;
  }

  .wiztion-faq-item.active .wiztion-faq-answer {
    padding: 0 16px 16px 16px;
  }

  .wiztion-faq-answer-text {
    font-size: 13px;
    line-height: 1.7;
  }

  /* 폼 - 1컬럼 레이아웃으로 변경 */
  .wiztion-contact-form-section {
    padding: 60px 0;
  }

  .wiztion-form-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wiztion-form-info {
    display: none; /* 모바일에서 좌측 정보 영역 숨김 */
  }

  .wiztion-form-area {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .wiztion-form-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    text-align: center;
  }

  .wiztion-form-title {
    font-size: 22px;
  }

  .wiztion-form-subtitle {
    font-size: 14px;
  }

  .wiztion-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .wiztion-form-row-half {
    grid-template-columns: 1fr;
  }

  .wiztion-contact-form {
    padding: 24px;
    border-radius: 12px;
  }

  .wiztion-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .wiztion-form-label {
    font-size: 13px;
  }

  .wiztion-form-input,
  .wiztion-form-select,
  .wiztion-form-textarea {
    padding: 12px 14px;
    font-size: 15px;
  }

  .wiztion-form-textarea {
    min-height: 100px;
  }

  /* 자금 종류 체크박스 */
  .wiztion-fund-type-label {
    font-size: 13px;
  }

  .wiztion-fund-type-options {
    gap: 8px;
  }

  .wiztion-fund-type-option label {
    padding: 8px 14px;
    font-size: 13px;
  }

  /* 개인정보 동의 */
  .wiztion-privacy-section {
    padding: 16px;
  }

  .wiztion-privacy-checkbox label {
    font-size: 13px;
  }

  .wiztion-privacy-detail-link {
    font-size: 12px;
  }

  .wiztion-privacy-content p {
    font-size: 12px;
  }

  .wiztion-checkbox-text {
    font-size: 12px;
  }

  .wiztion-form-submit {
    margin-top: 24px;
  }

  .wiztion-submit-button {
    width: 100%;
    max-width: none;
    font-size: 16px;
    padding: 16px 24px;
  }

  .wiztion-submit-note {
    font-size: 12px;
  }

  .wiztion-contact-info-box {
    margin-top: 30px;
    padding: 24px;
  }

  .wiztion-contact-info-title {
    font-size: 16px;
  }

  .wiztion-contact-info-text {
    font-size: 13px;
  }

  .wiztion-contact-phone {
    font-size: 24px;
  }

  .wiztion-contact-phone svg {
    width: 24px;
    height: 24px;
  }
}
