﻿/**
 * sjuF01.css - 메인 페이지 전용 스타일 (sjuF01*.jsp)
 * 
 * 포함: Hero, 신청폼, 상품선택, 후기섹션, 관리자패널, FAQ, 문의게시판, 내 신청목록
 * 
 * author: 처음사주 개발팀
 * since: 2025-12-30
 */

/* ========================================
   메인페이지 헤더 (마이페이지와 동일한 폭 1100px)
   ========================================
   
   [문제 배경]
   공통 CSS(sjuF.css)에서 .container는 max-width: 1200px로 설정되어 있음.
   그러나 마이페이지(sjuF02~05)는 본문이 max-width: 1100px로 더 좁음.
   메인페이지 헤더가 1200px로 표시되면 마이페이지 헤더(1100px)와
   폭이 달라져서 시각적으로 일관성이 없어 보임.
   
   [해결]
   메인페이지 헤더도 마이페이지와 동일한 1100px로 제한하여
   전체 사이트의 헤더 폭을 통일함.
   
   [참고]
   - sjuF02.css에도 동일한 헤더 폭 설정이 있음
   - 본문 컨텐츠는 각 페이지별로 다른 폭을 사용할 수 있음
*/
.saju-page header .container {
  max-width: 1100px;
  margin: 0 auto;
}

.saju-page .header-inner.header-pc {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px;
}

/* ========================================
   Hero Section
   ======================================== */
.saju-page .hero {
  background: radial-gradient(circle at top, #b91c1c 0, #000000 45%, #000000 100%);
  padding: 80px 0 60px;
}

/* ========================================
   Hero Clock (시계 이미지)
   ======================================== */
.saju-page .hero-clock-wrap {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.saju-page .hero-clock-wrap img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 16px;
}

/* 모바일 반응형 */
@media (max-width: 520px) {
  .saju-page .hero-clock-wrap img {
    width: 160px;
    height: 160px;
  }
}

/* ========================================
   Hero Calendar (동적 달력)
   - 황금비 1.6:1 (480x300)
   - Von Restorff Effect: 오늘만 빨간색
   ======================================== */
.saju-page .hero-calendar-wrap {
  margin-top: 32px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.saju-page .hero-calendar {
  background: #000;
  border-radius: 14px;
  padding: 24px 40px 28px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.8),
    0 8px 20px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  width: 480px;
  max-width: 90%;
}

.saju-page .hero-calendar .calendar-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.saju-page .hero-calendar .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.saju-page .hero-calendar .calendar-weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: #4b5563;
  padding: 2px 0;
}

.saju-page .hero-calendar .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.saju-page .hero-calendar .calendar-days span {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: #e5e7eb;
  padding: 8px 0;
  border-radius: 6px;
}

.saju-page .hero-calendar .calendar-days span.empty {
  visibility: hidden;
}

.saju-page .hero-calendar .calendar-days span.past {
  color: #374151;
}

/* 오늘 날짜 - Von Restorff Effect + 긴장감 */
.saju-page .hero-calendar .calendar-days span.today {
  color: #fff;
  font-weight: 700;
  border: 2px solid #dc2626;
  border-radius: 50%;
  box-shadow: 
    0 0 8px rgba(220, 38, 38, 0.8),
    0 0 20px rgba(220, 38, 38, 0.5),
    inset 0 0 8px rgba(220, 38, 38, 0.3);
}

/* 모바일 반응형 */
@media (max-width: 520px) {
  .saju-page .hero-calendar {
    padding: 20px 20px 22px;
    border-radius: 12px;
  }
  
  .saju-page .hero-calendar .calendar-title {
    font-size: 17px;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }
  
  .saju-page .hero-calendar .calendar-weekdays span {
    font-size: 10px;
  }
  
  .saju-page .hero-calendar .calendar-days span {
    font-size: 13px;
    padding: 7px 0;
  }
  
  .saju-page .hero-calendar .calendar-days span.today {
    padding: 5px 0;
  }
}

.saju-page .badge {
  display: inline-block;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(239,68,68,0.14);
  color: #fecaca;
  border: 1px solid rgba(248,113,113,0.6);
  margin-bottom: 20px;
}

/* ========================================
   서비스 세 줄 (줄띄움 스타일)
   - 마케팅 심리학 적용: Von Restorff 효과 (고립 효과)
   - 핵심 키워드 노란색 강조로 시선 집중
   - 폰트 크기 확대로 가독성 향상
   ======================================== */
.saju-page .service-three-lines {
  list-style: none;
  padding: 0;
}

.saju-page .service-three-lines li {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #e5e7eb;
}

.saju-page .service-three-lines li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* 번호 강조 */
.saju-page .service-three-lines .num {
  display: inline-block;
  font-size: 21px;
  font-weight: 700;
  color: #f59e0b;
  margin-right: 4px;
}

/* 핵심 키워드 노란색 강조 */
.saju-page .service-three-lines .highlight {
  color: #fbbf24;
  font-weight: 700;
}

/* 핵심 문구 흰색 볼드 */
.saju-page .service-three-lines strong {
  color: #ffffff;
  font-weight: 700;
}

/* 부가 설명 회색 */
.saju-page .service-three-lines .sub {
  color: #9ca3af;
}

/* ========================================
   서비스 세 줄 (box > innerbox 구조)
   - 기존 service-three-lines 스타일과 동일하게 적용
   ======================================== */
.saju-page .service-three-lines-box {
  text-align: center !important;
}

.saju-page .service-three-lines-box p {
  font-size: 20px !important;
  line-height: 1.7 !important;
  margin-bottom: 24px !important;
  padding-bottom: 24px !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  color: #e5e7eb !important;
}

.saju-page .service-three-lines-box p:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 24px !important;
  border-bottom: none !important;
}

/* 번호 강조 (오렌지) */
.saju-page .service-three-lines-box .num {
  display: inline-block;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #f59e0b !important;
  margin-right: 4px;
}

/* 핵심 키워드 (노란색) */
.saju-page .service-three-lines-box .highlight {
  color: #fbbf24 !important;
  font-weight: 700 !important;
}

/* 핵심 문구 (흰색) */
.saju-page .service-three-lines-box strong {
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* 부가 설명 (회색) */
.saju-page .service-three-lines-box .sub {
  color: #9ca3af !important;
}

@media (max-width: 639px) {
  .saju-page .service-three-lines-box p {
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin-bottom: 18px !important;
    padding-bottom: 18px !important;
  }

  .saju-page .service-three-lines-box p:last-child {
    padding-bottom: 18px !important;
  }

  .saju-page .service-three-lines-box .num {
    font-size: 18px !important;
  }

  .saju-page .service-three-lines-box .highlight {
    font-size: 17px !important;
  }

  .saju-page .service-three-lines-box strong {
    font-size: 17px !important;
  }

  .saju-page .service-three-lines-box .sub {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 639px) {
  .saju-page .service-three-lines li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
    padding-bottom: 28px;
  }

  /* 번호 - 시선 유도 (Von Restorff) */
  .saju-page .service-three-lines .num {
    font-size: 18px;
  }

  /* 핵심 키워드 - 모바일 가독성 최적화 */
  .saju-page .service-three-lines .highlight {
    font-size: 17px;
  }

  /* 핵심 문구 - 흰색 강조 */
  .saju-page .service-three-lines strong {
    font-size: 17px;
  }

  /* 부가 설명 - 계층 구조 (14px로 차별화) */
  .saju-page .service-three-lines .sub {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* 모바일/PC 전용 표시 */
.mobile-only { display: none; }
@media (max-width: 639px) {
  .mobile-only { display: inline; }
}

.saju-page .hero h1 {
  font-size: 48px;
  margin: 0 0 24px;
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: #fef2f2;
}

/* 히어로 h1 내 강조 - 숫자 (Von Restorff 효과) */
.saju-page .hero h1 .hero-num {
  color: #ffffff;
  font-weight: 700;
}

/* 히어로 h1 내 키워드 강조 */
.saju-page .hero h1 .hero-keyword {
  color: #ffffff;
}

.saju-page .hero-main {
  font-size: 19px;
  margin: 8px 0;
  color: #e5e7eb;
  line-height: 1.7;
}

/* 첫 번째 hero-main - 7가지 영역 소개 */
.saju-page .hero-main-first {
  margin-top: 16px;
}

/* 두 번째 hero-main - 차별점 강조 */
.saju-page .hero-main-second {
  margin-top: 20px;
}

/* 마지막 hero-main - CTA 문구 */
.saju-page .hero-main-last {
  margin-top: 24px;
  font-size: 21px;
  color: #fecaca;
  font-weight: 700;
}

/* 히어로 내 숫자 강조 (10년, 1년 등) */
.saju-page .hero-main .hero-num {
  color: #fbbf24;
  font-weight: 700;
}

/* 히어로 내 핵심 키워드 노란색 강조 */
.saju-page .hero-main .hero-highlight {
  color: #fbbf24;
  font-weight: 600;
}

/* 히어로 내 핵심 문구 흰색 볼드 */
.saju-page .hero-main strong {
  color: #ffffff;
  font-weight: 700;
}

/* 히어로 내 부가 설명 (대비 효과) */
.saju-page .hero-main .hero-sub {
  color: #9ca3af;
  font-size: 16px;
}

/* ========================================
   Lists
   ======================================== */
.saju-page ul.simple-list,
.saju-page .step-list,
.saju-page .apply-list {
  list-style: none;
  padding: 0;
  margin: 14px auto 0;
  font-size: 16px;
  color: #e5e7eb;
  text-align: center;
  max-width: 700px;
}

.saju-page ul.simple-list li,
.saju-page .step-list li,
.saju-page .apply-list li {
  margin-bottom: 10px;
}

.saju-page .section-note {
  font-size: 15px;
  color: #9ca3af;
  margin-top: 12px;
}

.saju-page .step-tag {
  font-size: 13px;
  font-weight: 700;
  color: #fecaca;
  background: rgba(248,113,113,0.2);
  padding: 4px 12px;
  border-radius: 999px;
  margin-right: 10px;
}

.saju-page .step-list { text-align: center; }

/* ========================================
   Process Section (2x2 Grid)
   ======================================== */
.saju-page .process-section {
  padding: 48px 0;
}

.saju-page .process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.saju-page .process-card {
  background: rgba(248, 250, 252, 0.95);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(203, 213, 225, 0.3);
}

.saju-page .process-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: #f59e0b;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.saju-page .process-title {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
  margin-top: 8px;
}

.saju-page .process-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.saju-page .process-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.saju-page .process-desc strong {
  color: #dc2626;
}

.saju-page .process-bank {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(100, 116, 139, 0.3);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.saju-page .process-bank-name {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.saju-page .process-bank-account {
  font-size: 16px;
  font-weight: 700;
  color: #dc2626;
  letter-spacing: 0.5px;
}

.saju-page .process-bank-holder {
  font-size: 13px;
  color: #64748b;
}

.saju-page .process-divider {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(100, 116, 139, 0.4);
  margin: 8px auto;
}

@media (max-width: 480px) {
  .saju-page .process-grid {
    gap: 12px;
  }
  
  .saju-page .process-card {
    padding: 20px 12px;
    min-width: 0; /* 그리드 아이템 오버플로우 방지 */
  }
  
  .saju-page .process-title {
    font-size: 15px;
  }
  
  .saju-page .process-icon {
    font-size: 32px;
  }
  
  .saju-page .process-desc {
    font-size: 13px;
  }
  
  /* 계좌번호 개행 허용 */
  .saju-page .process-bank-account {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* ========================================
   FAQ
   ======================================== */
.saju-page .faq-item {
  margin-bottom: 12px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(248,113,113,0.4);
  border-radius: 12px;
  overflow: hidden;
}

.saju-page .faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-weight: 700;
  color: #fee2e2;
  cursor: pointer;
  transition: background 0.2s;
}

.saju-page .faq-q:hover { background: rgba(248,113,113,0.08); }

.saju-page .faq-q::after {
  content: '+';
  font-size: 20px;
  color: #fecaca;
  transition: transform 0.3s;
}

.saju-page .faq-item.active .faq-q::after { content: '-'; }

.saju-page .faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: #e5e7eb;
  text-align: left;
  line-height: 1.8;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.saju-page .faq-item.active .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ========================================
   Images
   ======================================== */
.saju-page .image-wrap { margin-top: 28px; }

.saju-page .image-wrap img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.7);
  object-fit: cover;
}

.saju-page .hero-image { margin-top: 32px; margin-bottom: 12px; }
.saju-page .section-image { margin-top: 36px; }

/* ========================================
   Form Section
   ======================================== */
.saju-page .form-section {
  background: rgba(15,23,42,0.9);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(248,113,113,0.4);
  box-shadow: 0 12px 30px rgba(15,23,42,0.8);
  max-width: 650px;
  margin: 0 auto;
  text-align: left;
}

.saju-page .birth-time-group { max-width: 360px; }
.saju-page .name-group { max-width: 200px; }
.saju-page .depositor-name-group { max-width: 400px; }
.saju-page .birth-time-row { display: flex; gap: 8px; align-items: center; }
.saju-page .birth-time-select { width: 80px; flex-shrink: 0; }
.saju-page .time-unknown-label { background: rgba(239,68,68,0.05); white-space: nowrap; padding: 12px 12px; }
.saju-page .time-unknown-label span { font-size: 13px; }
.saju-page .birth-city-group { max-width: 360px; }
.saju-page .birth-city-row { display: flex; gap: 12px; }
.saju-page .birth-city-row select { flex: 1; }
.saju-page .birth-date-group { max-width: 260px; }
.saju-page .birth-date-row { display: grid; grid-template-columns: 100px 70px 70px; gap: 8px; }
.saju-page .calendar-type-group { max-width: 280px; }
.saju-page .calendar-type-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.saju-page .calendar-type-row .radio-label { padding: 12px 10px; }
.saju-page .calendar-type-row .radio-label input { margin-right: 4px; }
.saju-page .calendar-type-row .radio-label span { font-size: 13px; }
.saju-page .calendar-type-row .calendar-leap { padding: 12px 6px; }
.saju-page .calendar-type-row .calendar-leap span { font-size: 12px; }
.saju-page .gender-group { max-width: 200px; }
.saju-page .gender-group .radio-label input { margin-right: 8px; }

/* ========================================
   Product Selection (상품 선택)
   ======================================== */
.saju-page .product-select-group {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.saju-page .product-select-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* PC: 2열 그리드 */
@media (min-width: 640px) {
  .saju-page .product-select-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

.saju-page .product-radio-label {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  cursor: pointer;
  border: 2px solid rgba(248,113,113,0.3);
  border-radius: 12px;
  padding: 16px;
  background: rgba(15,23,42,0.6);
  transition: all 0.2s ease;
  position: relative;
}

.saju-page .product-radio-label:hover:not(.disabled) {
  border-color: rgba(248,113,113,0.6);
  background: rgba(248,113,113,0.05);
}

.saju-page .product-radio-label.selected {
  border-color: #ef4444;
  background: rgba(239,68,68,0.1);
  box-shadow: 0 0 0 2px rgba(239,68,68,0.2);
}

.saju-page .product-radio-label.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(15,23,42,0.4);
}

.saju-page .product-radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.saju-page .product-radio-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.saju-page .product-name {
  font-size: 16px;
  font-weight: 700;
  color: #f9fafb;
  display: flex;
  align-items: center;
  gap: 8px;
}

.saju-page .product-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  background: rgba(251,191,36,0.2);
  color: #fbbf24;
  border-radius: 4px;
}

.saju-page .product-desc {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.4;
}

.saju-page .product-price {
  font-size: 18px;
  font-weight: 700;
  color: #fecaca;
  margin-top: 4px;
}

/* ========================================
   퀘스트 할인 가격 표시
   ======================================== */

/* 이벤트 뱃지 */
.saju-page .event-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* 가격 표시 wrap */
.saju-page .product-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

/* 원가 (취소선) */
.saju-page .product-price-original {
  text-decoration: line-through;
  color: #6b7280;
  font-size: 14px;
}

/* 화살표 */
.saju-page .product-price-arrow {
  color: #9ca3af;
  font-size: 14px;
}

/* 할인가 */
.saju-page .product-price.discounted {
  font-size: 20px;
  font-weight: 700;
  color: #ef4444;
  margin-top: 0;
}

/* 안내 문구 */
.saju-page .discount-notice {
  display: block;
  font-size: 12px;
  margin-top: 8px;
  line-height: 1.4;
}

/* 비로그인 안내 */
.saju-page .discount-notice.guest {
  color: #9ca3af;
}

/* 로그인 후 적용 안내 */
.saju-page .discount-notice.applied {
  color: #22c55e;
}

/* ========================================
   Privacy Agreement Box
   ======================================== */
.saju-page .privacy-agreement-box {
  background: rgba(239,68,68,0.05);
  border: 2px solid rgba(248,113,113,0.6);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
}

.saju-page .privacy-agreement-box label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.saju-page .privacy-agreement-box input[type="checkbox"] {
  margin-top: 4px;
  margin-right: 12px;
  width: 20px;
  height: 20px;
}

.saju-page .privacy-agreement-box .privacy-text {
  font-size: 14px;
  line-height: 1.6;
  color: #e5e7eb;
}

.saju-page .privacy-agreement-box .privacy-text strong {
  color: #f9fafb;
}

.saju-page .privacy-agreement-box .privacy-text .required {
  color: #fecaca;
}

.saju-page .privacy-agreement-box .privacy-detail {
  color: #9ca3af;
}

/* ========================================
   Review Section
   ======================================== */
.saju-page .review-section {
  background: rgba(15,23,42,0.9);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(248,113,113,0.4);
  box-shadow: 0 12px 30px rgba(15,23,42,0.8);
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
}

.saju-page .review-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(248,113,113,0.3);
}

.saju-page .review-stat-item { display: flex; flex-direction: column; }
.saju-page .review-stat-label { font-size: 14px; color: #9ca3af; }
.saju-page .review-stat-value { font-size: 24px; font-weight: 700; color: #fecaca; }

.saju-page .review-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(248,113,113,0.2);
}

.saju-page .review-item:last-child { border-bottom: none; }

.saju-page .review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.saju-page .review-writer { font-weight: 600; color: #f9fafb; }
.saju-page .review-rating { color: #fbbf24; font-size: 14px; }
.saju-page .review-date { font-size: 13px; color: #9ca3af; margin-left: auto; }
.saju-page .review-content { color: #e5e7eb; line-height: 1.7; white-space: pre-wrap; }

/* 별점 옆 관리자 승인 버튼 */
.saju-page .review-admin-btns {
  display: inline-flex;
  gap: 4px;
  margin-left: 4px;
}

/* 후기 상태 콤보박스 (관리자용) */
.saju-page .review-status-select {
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(15,23,42,0.8);
  color: #e5e7eb;
  cursor: pointer;
  outline: none;
}

.saju-page .review-status-select:hover {
  border-color: rgba(248,113,113,0.5);
}

.saju-page .review-status-select:focus {
  border-color: #ef4444;
}

.saju-page .btn-approve-sm {
  padding: 2px 8px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 4px;
  color: #22c55e;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.saju-page .btn-approve-sm:hover {
  background: rgba(34, 197, 94, 0.3);
}

.saju-page .btn-unapprove-sm {
  padding: 2px 8px;
  background: rgba(107, 114, 128, 0.2);
  border: 1px solid rgba(107, 114, 128, 0.4);
  border-radius: 4px;
  color: #9ca3af;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.saju-page .btn-unapprove-sm:hover {
  background: rgba(107, 114, 128, 0.3);
  color: #e5e7eb;
}

.saju-page .btn-reject-sm {
  padding: 2px 8px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 4px;
  color: #f87171;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.saju-page .btn-reject-sm:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.6);
}

.saju-page .btn-delete-sm {
  padding: 2px 8px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 4px;
  color: #f87171;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.saju-page .btn-delete-sm:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.5);
}

/* 후기 상태 배지 (승인/미승인/불허) */
.saju-page .review-badge {
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
}

.saju-page .review-badge.approved {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.saju-page .review-badge.pending {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

.saju-page .review-badge.rejected {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

/* 후기 아이템 상태별 스타일 */
.saju-page .review-item.rejected {
  opacity: 0.7;
  border-left: 3px solid #ef4444;
  padding-left: 17px;
}

.saju-page .review-login-notice {
  text-align: center;
  padding: 24px;
  margin-top: 24px;
  background: rgba(248,113,113,0.08);
  border: 1px dashed rgba(248,113,113,0.4);
  border-radius: 12px;
}

.saju-page .review-login-notice p { margin: 0; color: #e5e7eb; font-size: 15px; }
.saju-page .review-login-notice strong { color: #fecaca; }

.saju-page .review-form {
  margin-top: 24px;
  padding: 24px;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
}

.saju-page .review-form h3 { margin: 0 0 16px; font-size: 18px; color: #f9fafb; }

/* rating-select, review-textarea 는 sjuF.css 공통으로 이동 */

.saju-page .review-submit-btn {
  padding: 12px 32px;
  background: #ef4444;
  border: none;
  border-radius: 8px;
  color: #f9fafb;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.saju-page .review-submit-btn:hover { background: #dc2626; }

/* ========================================
   Admin Panel
   ======================================== */
.saju-page .admin-panel {
  margin-top: 40px;
  padding: 24px;
  background: rgba(248,113,113,0.06);
  border: 2px solid rgba(248,113,113,0.3);
  border-radius: 12px;
}

.saju-page .admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(248,113,113,0.25);
}

.saju-page .admin-panel-title { font-size: 18px; font-weight: 700; color: #fecaca; }
.saju-page .admin-stat { font-size: 14px; color: #e5e7eb; margin-right: 16px; }
.saju-page .admin-stat strong { color: #fecaca; }
.saju-page .admin-stat.pending strong { color: #f87171; }

.saju-page .admin-review-item {
  padding: 16px;
  margin-bottom: 12px;
  background: rgba(15,23,42,0.6);
  border-radius: 8px;
  border-left: 4px solid #9ca3af;
}

.saju-page .admin-review-item.approved { border-left-color: #22c55e; }
.saju-page .admin-review-item.pending { border-left-color: #f87171; background: rgba(248,113,113,0.08); }

.saju-page .admin-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.saju-page .review-status {
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
}

.saju-page .review-status.approved { background: rgba(34,197,94,0.2); color: #22c55e; }
.saju-page .review-status.pending { background: rgba(248,113,113,0.2); color: #f87171; }
.saju-page .review-ip { font-size: 12px; color: #6b7280; font-family: monospace; }

.saju-page .admin-review-actions { margin-top: 12px; display: flex; gap: 8px; }

.saju-page .btn-approve {
  padding: 6px 16px;
  background: #22c55e;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.saju-page .btn-approve:hover { background: #16a34a; }

.saju-page .btn-unapprove {
  padding: 6px 16px;
  background: transparent;
  border: 1px solid #6b7280;
  border-radius: 6px;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.saju-page .btn-unapprove:hover {
  background: rgba(255,255,255,0.1);
  border-color: #9ca3af;
  color: #e5e7eb;
}

.saju-page .btn-reject {
  padding: 6px 16px;
  background: transparent;
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: 6px;
  color: #f87171;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.saju-page .btn-reject:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
}

.saju-page .btn-delete-review {
  padding: 6px 16px;
  background: transparent;
  border: 1px solid rgba(107, 114, 128, 0.5);
  border-radius: 6px;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.saju-page .btn-delete-review:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.5);
  color: #f87171;
}

.saju-page .review-admin-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* ========================================
   Inquiry Section (문의 게시판)
   ======================================== */
.saju-page .inquiry-section { padding: 40px 0 80px; min-height: calc(100vh - 200px); }
.saju-page .inquiry-header { margin-bottom: 32px; text-align: center; }
.saju-page .inquiry-header h2 { margin: 20px 0 12px; }
.saju-page .inquiry-header p { color: #9ca3af; }

.saju-page .inquiry-box {
  background: rgba(15,23,42,0.9);
  border-radius: 16px;
  border: 1px solid rgba(248,113,113,0.4);
  padding: 32px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 12px 30px rgba(15,23,42,0.8);
}

.saju-page .inquiry-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(248,113,113,0.2);
}

.saju-page .inquiry-count { color: #9ca3af; font-size: 14px; }

.saju-page .btn-write {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #ef4444;
  border: none;
  border-radius: 8px;
  color: #f9fafb;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.saju-page .btn-write:hover { background: #dc2626; }
.saju-page .btn-write svg { width: 16px; height: 16px; }

.saju-page .inquiry-list { list-style: none; padding: 0; margin: 0; }

.saju-page .inquiry-item {
  padding: 20px;
  border-bottom: 1px solid rgba(248,113,113,0.15);
  cursor: pointer;
  transition: background 0.2s ease;
}

.saju-page .inquiry-item:last-child { border-bottom: none; }
.saju-page .inquiry-item:hover { background: rgba(248,113,113,0.05); }

.saju-page .inquiry-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.saju-page .inquiry-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.saju-page .inquiry-status.waiting { background: rgba(251,191,36,0.15); color: #fbbf24; }
.saju-page .inquiry-status.answered { background: rgba(34,197,94,0.15); color: #22c55e; }
.saju-page .inquiry-date { color: #6b7280; font-size: 13px; }

.saju-page .inquiry-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.saju-page .secret-icon { font-size: 14px; }
.saju-page .inquiry-item-meta { display: flex; gap: 16px; font-size: 13px; color: #9ca3af; }
.saju-page .inquiry-category { color: #fecaca; }

.saju-page .inquiry-detail-box {
  background: rgba(15,23,42,0.9);
  border-radius: 16px;
  border: 1px solid rgba(248,113,113,0.4);
  padding: 32px;
  max-width: 900px;
  margin: 0 auto 24px;
  box-shadow: 0 12px 30px rgba(15,23,42,0.8);
}

.saju-page .inquiry-detail-header { display: flex; gap: 12px; margin-bottom: 16px; }
.saju-page .inquiry-detail-title { font-size: 22px; font-weight: 700; color: #f9fafb; margin: 0 0 16px; line-height: 1.4; }

.saju-page .inquiry-detail-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #9ca3af;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(248,113,113,0.2);
  margin-bottom: 24px;
}

.saju-page .inquiry-detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: #e5e7eb;
  white-space: pre-wrap;
}

.saju-page .inquiry-detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(248,113,113,0.2);
}

.saju-page .btn-edit,
.saju-page .btn-delete {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.saju-page .btn-edit {
  background: transparent;
  border: 1px solid rgba(248,113,113,0.5);
  color: #fecaca;
}

.saju-page .btn-edit:hover {
  background: rgba(248,113,113,0.15);
  border-color: #f87171;
}

.saju-page .btn-delete {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #9ca3af;
}

.saju-page .btn-delete:hover {
  background: rgba(239,68,68,0.15);
  border-color: #ef4444;
  color: #fecaca;
}

.saju-page .inquiry-comments-section {
  background: rgba(15,23,42,0.9);
  border-radius: 16px;
  border: 1px solid rgba(248,113,113,0.4);
  padding: 32px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 12px 30px rgba(15,23,42,0.8);
}

.saju-page .inquiry-comments-section h4 {
  font-size: 18px;
  font-weight: 700;
  color: #f9fafb;
  margin: 0 0 20px;
}

.saju-page .comment-item {
  padding: 20px;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  margin-bottom: 12px;
}

.saju-page .comment-item:last-child { margin-bottom: 0; }

.saju-page .comment-item.admin-comment {
  background: rgba(34,197,94,0.08);
  border-left: 3px solid #22c55e;
}

.saju-page .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.saju-page .comment-writer { font-weight: 600; color: #f9fafb; }
.saju-page .comment-item.admin-comment .comment-writer { color: #22c55e; }
.saju-page .comment-date { font-size: 13px; color: #6b7280; }
.saju-page .comment-content { font-size: 15px; line-height: 1.7; color: #e5e7eb; }

.saju-page .inquiry-textarea {
  width: 100%;
  min-height: 200px;
  padding: 16px;
  border: 2px solid rgba(248,113,113,0.4);
  border-radius: 8px;
  background: rgba(15,23,42,0.9);
  color: #f9fafb;
  font-size: 15px;
  resize: vertical;
  line-height: 1.7;
}

.saju-page .inquiry-textarea:focus {
  outline: none;
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239,68,68,0.1);
}

/* ========================================
   내 신청 목록 스타일
   ======================================== */
.saju-page .my-applications-section {
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.saju-page .my-applications-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.saju-page .my-applications {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
}
.saju-page .application-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.saju-page .application-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  transition: border-color 0.2s, background 0.2s;
}
.saju-page .application-item:hover {
  border-color: rgba(99, 102, 241, 0.4);
  background: rgba(15, 23, 42, 0.8);
}
.saju-page .application-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.saju-page .application-order-id {
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 13px;
  color: #a5b4fc;
  background: rgba(99, 102, 241, 0.15);
  padding: 4px 8px;
  border-radius: 4px;
}
.saju-page .application-date {
  font-size: 13px;
  color: #9ca3af;
}
.saju-page .application-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
}
.saju-page .application-name {
  font-size: 15px;
  font-weight: 500;
  color: #f1f5f9;
}
.saju-page .application-birth {
  font-size: 14px;
  color: #94a3b8;
}
.saju-page .application-status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.saju-page .status-badge {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.saju-page .status-badge.status-pending {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}
.saju-page .status-badge.status-paid {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}
.saju-page .status-badge.status-etc {
  background: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
}
.saju-page .status-badge.status-sent {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}
.saju-page .btn-pdf-download {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}
.saju-page .btn-pdf-download:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.saju-page .no-application {
  text-align: center;
  padding: 32px 20px;
  color: #94a3b8;
}
.saju-page .no-application p {
  margin: 0;
  line-height: 1.6;
}
.saju-page .no-application .sub-text {
  font-size: 14px;
  color: #64748b;
  margin-top: 8px;
}

/* ========================================
   RESPONSIVE - sjuF01 전용
   ======================================== */

@media (max-width: 639px) {
  /* Hero Mobile */
  .saju-page .hero { padding: 48px 0 40px; }
  .saju-page .hero h1 { font-size: 26px; line-height: 1.4; word-break: keep-all; }
  .saju-page .badge { font-size: 12px; padding: 5px 12px; }
  .saju-page .hero-main { font-size: 15px; line-height: 1.8; }

  /* 히어로 모바일 - 마케팅 심리 최적화 */
  .saju-page .hero-main-first { margin-top: 12px; }
  .saju-page .hero-main-second { margin-top: 16px; }
  .saju-page .hero-main-last { margin-top: 20px; font-size: 16px; }

  /* 히어로 모바일 - 폰트 크기 계층 구조 */
  .saju-page .hero-main .hero-highlight { font-size: 16px; }
  .saju-page .hero-main strong { font-size: 16px; }
  .saju-page .hero-main .hero-sub { font-size: 14px; }
  .saju-page .hero-main .hero-num { font-size: 16px; }
  
  /* Lists Mobile */
  .saju-page ul.simple-list li,
  .saju-page .step-list li,
  .saju-page .apply-list li { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
  .saju-page .step-tag { display: block; width: fit-content; margin-bottom: 6px; }
  
  /* Images Mobile */
  .saju-page .image-wrap img { max-width: 100%; border-radius: 12px; }
  
  /* FAQ Mobile */
  .saju-page .faq-q { padding: 14px 16px; font-size: 14px; }
  .saju-page .faq-a { font-size: 14px; padding: 0 16px; }
  .saju-page .faq-item.active .faq-a { padding: 0 16px 16px; }
  
  /* Form Mobile */
  .saju-page .form-section { padding: 24px 16px; border-radius: 12px; }
  
  /* Product Selection Mobile */
  .saju-page .product-select-row { flex-direction: column; }
  .saju-page .product-radio-label { max-width: 100%; }
  
  /* Form Groups Mobile */
  .saju-page .gender-group { max-width: 100% !important; }
  .saju-page .gender-group .grid-2 { max-width: 200px; }
  .saju-page .birth-date-group { max-width: 100% !important; }
  .saju-page .birth-date-row { grid-template-columns: 1fr 70px 70px; }
  .saju-page .calendar-type-group { max-width: 100% !important; }
  .saju-page .calendar-type-row { grid-template-columns: 1fr 1fr 1fr; }
  .saju-page .calendar-type-row .radio-label span { font-size: 12px; }
  .saju-page .calendar-type-row .calendar-leap span { font-size: 11px; }
  .saju-page .birth-time-group { max-width: 100% !important; }
  .saju-page .birth-time-row { flex-wrap: wrap; }
  .saju-page .birth-time-select { width: 70px; flex: 0 0 70px; }
  .saju-page .time-unknown-label { flex: 1; justify-content: center; min-width: 80px; }
  .saju-page .birth-city-row { flex-direction: column; gap: 8px; }
  #EMAIL_DOMAIN_CUSTOM { margin-top: 8px; }
  
  /* Review Mobile */
  .saju-page .review-section { padding: 24px 16px; }
  .saju-page .review-stats { flex-direction: column; gap: 12px; }
  .saju-page .review-header { flex-wrap: wrap; gap: 8px; }
  .saju-page .review-date { width: 100%; margin-left: 0; margin-top: 4px; }
  .saju-page .review-content { font-size: 14px; }
  .saju-page .review-form { padding: 16px; }
  .saju-page .review-form h3 { font-size: 16px; }
  /* rating-select, review-textarea 반응형은 sjuF.css 공통으로 이동 */
  .saju-page .review-submit-btn { width: 100%; padding: 12px; }
  
  /* Admin Panel Mobile */
  .saju-page .admin-panel { padding: 16px; }
  .saju-page .admin-panel-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .saju-page .admin-review-header { flex-direction: column; align-items: flex-start; gap: 6px; }
  .saju-page .admin-review-actions { flex-direction: column; }
  .saju-page .admin-review-actions button { width: 100%; }
  
  /* Inquiry Mobile */
  .saju-page .inquiry-section { padding: 24px 0 60px; }
  .saju-page .inquiry-box,
  .saju-page .inquiry-detail-box,
  .saju-page .inquiry-comments-section { padding: 20px 16px; border-radius: 12px; }
  .saju-page .inquiry-toolbar { flex-direction: column; gap: 16px; align-items: stretch; }
  .saju-page .btn-write { justify-content: center; }
  .saju-page .inquiry-item { padding: 16px; }
  .saju-page .inquiry-item-title { font-size: 15px; }
  .saju-page .inquiry-detail-title { font-size: 18px; }
  .saju-page .inquiry-detail-meta { flex-wrap: wrap; gap: 8px 16px; }
  .saju-page .inquiry-detail-actions { flex-direction: column; }
  .saju-page .inquiry-detail-actions button { width: 100%; justify-content: center; }
  
  /* My Applications Mobile */
  .saju-page .my-applications-section { padding: 24px 0; }
  .saju-page .my-applications-section h2 { font-size: 20px; }
  .saju-page .my-applications { padding: 16px; }
  .saju-page .application-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }
  .saju-page .application-header { width: 100%; justify-content: space-between; }
  .saju-page .application-info { width: 100%; }
  .saju-page .application-status { width: 100%; flex-wrap: wrap; }
}

@media (min-width: 640px) and (max-width: 767px) {
  .saju-page .hero h1 { font-size: 32px; }
  .saju-page .birth-date-group,
  .saju-page .calendar-type-group,
  .saju-page .birth-time-group,
  .saju-page .gender-group { max-width: 100% !important; }
  .saju-page .birth-date-row { grid-template-columns: 1fr 100px 100px; }
  .saju-page .birth-city-row { flex-direction: row; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .saju-page .hero h1 { font-size: 38px; }
  .saju-page .birth-date-group,
  .saju-page .calendar-type-group,
  .saju-page .birth-time-group { flex: 1 1 30%; min-width: 240px; }
  .saju-page .gender-group { flex: 0 0 auto; }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .saju-page .hero h1 { font-size: 44px; }
}

/* ========================================
 * 할인 이벤트 표시 스타일
 * ======================================== */

/* 이벤트 뱃지 */
.saju-page .event-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

/* 가격 표시 영역 */
.saju-page .product-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* 정가 (취소선, 무채색 굵게) */
.saju-page .product-price-original {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 15px;
  font-weight: 600;
}

/* 화살표 */
.saju-page .product-price-arrow {
  color: #9ca3af;
  font-size: 14px;
}

/* 할인가 */
.saju-page .product-price.discounted {
  color: #f59e0b;
  font-size: 18px;
  font-weight: 700;
}

/* 안내 문구 */
.saju-page .discount-notice {
  display: block;
  font-size: 12px;
  margin-top: 6px;
}

.saju-page .discount-notice.guest {
  color: #9ca3af;
}

.saju-page .discount-notice.applied {
  color: #22c55e;
}

/* 이벤트 기간 (고급스러운 스타일) */
.saju-page .discount-period-elegant {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #d4af37;
  letter-spacing: 0.5px;
}

/* ========================================
   런칭특가 배너 영역
   ======================================== */
.launch-banner-wrapper {
  width: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.3);
}

.launch-banner-placeholder {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* placeholder 상자 (이미지 넣기 전 표시용) */
.banner-placeholder-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  border: 2px dashed rgba(245, 158, 11, 0.5);
  border-radius: 8px;
  margin: 12px 16px;
  background: rgba(245, 158, 11, 0.05);
}

.banner-placeholder-box span {
  color: #f59e0b;
  font-size: 16px;
  font-weight: 600;
}

.banner-placeholder-box small {
  color: #9ca3af;
  font-size: 12px;
  margin-top: 6px;
}

/* 배너 이미지 스타일 (이미지 넣은 후 사용) */
.launch-banner-placeholder img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
}

/* 모바일 배너 */
@media (max-width: 767px) {
  .banner-placeholder-box {
    min-height: 80px;
    margin: 8px 12px;
  }
  
  .banner-placeholder-box span {
    font-size: 14px;
  }
  
  .launch-banner-placeholder img {
    max-height: 120px;
  }
}

/* ========================================
   상품 상세 (7포인트) PC/모바일 구분
   ======================================== */

/* PC용: 기본 표시, 모바일에서 숨김 */
.saju-page .product-detail-pc {
  display: block;
}

/* 모바일용: 기본 숨김, 모바일에서 표시 */
.saju-page .product-detail-mobile {
  display: none;
}

@media (max-width: 767px) {
  /* 모바일에서 PC용 숨김 */
  .saju-page .product-detail-pc {
    display: none;
  }
  
  /* 모바일에서 아코디언 표시 */
  .saju-page .product-detail-mobile {
    display: block;
  }
}

/* ========================================
   모바일 아코디언 스타일
   ======================================== */
.saju-page .product-accordion-item {
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
}

.saju-page .product-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  color: #f9fafb;
  font-size: 14px;
  transition: background 0.2s;
}

.saju-page .product-accordion-header:hover {
  background: rgba(248, 113, 113, 0.08);
}

.saju-page .product-accordion-header .accordion-icon {
  font-size: 18px;
  font-weight: 300;
  color: #fecaca;
  transition: transform 0.3s;
}

.saju-page .product-accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.saju-page .product-accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  background: rgba(0, 0, 0, 0.2);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.saju-page .product-accordion-item.active .product-accordion-body {
  max-height: 500px;
  padding: 16px;
}

/* 아코디언 내부 컨텐츠 스타일 - PC 모달과 동일한 가독성 */
.saju-page .accordion-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #e2e8f0;
  margin: 0 0 12px 0;
}

.saju-page .accordion-desc {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0 0 14px 0;
}

.saju-page .accordion-label {
  font-size: 12px;
  color: #94a3b8;
  margin: 0 0 8px 0;
}

.saju-page .accordion-note {
  font-size: 11px;
  color: #64748b;
}

.saju-page .accordion-list {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.8;
}

.saju-page .accordion-list li {
  margin-bottom: 6px;
}

/* ========================================
   후기 이미지 캐러셀 (Social Proof)
   - CTA 직전에 두 후기 이미지 통합
   - PC: 나란히 표시
   - 모바일: 좌우 스와이프
   ======================================== */
.saju-page .review-image-section {
  padding: 24px 0;
  background: transparent;
}

.saju-page .review-image-section .container {
  max-width: 900px;
}

/* 캐러셀 컨테이너 */
.saju-page .review-carousel-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

/* 캐러셀 아이템 */
.saju-page .review-carousel-item {
  flex-shrink: 0;
  text-align: center;
}

.saju-page .review-carousel-item .review-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(248, 113, 113, 0.15);
}

/* 모바일 인디케이터 (PC에서는 숨김) */
.saju-page .review-carousel-dots {
  display: none;
}

/* PC에서 spacer 숨김 */
.saju-page .review-carousel-spacer {
  display: none;
}

/* PC (768px 이상): 두 이미지 나란히 */
@media (min-width: 768px) {
  .saju-page .review-image-section {
    padding: 32px 0;
  }

  .saju-page .review-carousel-wrap {
    flex-wrap: nowrap;
  }

  .saju-page .review-carousel-item {
    width: 45%;
    max-width: 400px;
  }

  .saju-page .review-carousel-item .review-img {
    width: 100%;
    border-radius: 12px;
  }
}

/* 모바일 (767px 이하): 스와이프 카드 UI */
@media (max-width: 767px) {
  .saju-page .review-image-section {
    padding: 20px 0;
  }

  .saju-page .review-image-section .container {
    padding: 0;
    max-width: 100%;
    overflow: visible;
  }

  .saju-page .review-carousel-wrap {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .saju-page .review-carousel-wrap::-webkit-scrollbar {
    display: none;
  }

  /* spacer: (100% - 75%) / 2 = 12.5% */
  .saju-page .review-carousel-spacer {
    display: block;
    flex: 0 0 12.5%;
    min-width: 12.5%;
  }

  /* 카드: 75% (화면 정중앙에 위치) */
  .saju-page .review-carousel-item {
    flex: 0 0 75%;
    min-width: 75%;
    scroll-snap-align: center;
  }

  .saju-page .review-carousel-item .review-img {
    width: 100%;
    border-radius: 12px;
  }

  /* 인디케이터 표시 */
  .saju-page .review-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }

  .saju-page .review-carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    cursor: pointer;
  }

  .saju-page .review-carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
  }

  .saju-page .review-carousel-dots .dot.active {
    background: rgba(248, 113, 113, 0.8);
    transform: scale(1.2);
  }
}

/* ========================================
   질문 예시 모달 (PC/모바일 공용)
   ======================================== */
.question-example-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.question-example-modal {
  background: #1e293b;
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.question-example-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #334155;
}

.question-example-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #f1f5f9;
}

.question-example-header .btn-close {
  width: 32px;
  height: 32px;
  border: none;
  background: #334155;
  color: #94a3b8;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.question-example-header .btn-close:hover {
  background: #475569;
  color: #f1f5f9;
}

.question-example-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
}

.question-example-body .example-intro {
  margin: 0 0 20px 0;
  padding: 12px 16px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  color: #60a5fa;
  font-size: 14px;
  text-align: center;
}

.question-example-body .example-category {
  margin-bottom: 20px;
}

.question-example-body .example-category:last-child {
  margin-bottom: 0;
}

.question-example-body .example-category h4 {
  margin: 0 0 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: #f59e0b;
  padding-bottom: 8px;
  border-bottom: 1px solid #334155;
}

.question-example-body .example-category ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.question-example-body .example-category li {
  padding: 8px 0;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.5;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.question-example-body .example-category li:last-child {
  border-bottom: none;
}

.question-example-body .example-category li .bad {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  border-radius: 4px;
  text-align: center;
  line-height: 20px;
  margin-right: 8px;
}

.question-example-body .example-category li .good {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  border-radius: 4px;
  text-align: center;
  line-height: 20px;
  margin-right: 8px;
}

.question-example-footer {
  padding: 16px 24px;
  border-top: 1px solid #334155;
  text-align: center;
}

.question-example-footer .btn-modal-close {
  padding: 12px 32px;
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.question-example-footer .btn-modal-close:hover {
  background: #2563eb;
}

/* 모바일 반응형 */
@media (max-width: 767px) {
  .question-example-modal-overlay {
    padding: 10px;
    align-items: flex-end;
  }

  .question-example-modal {
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
  }

  .question-example-header {
    padding: 16px 20px;
  }

  .question-example-header h3 {
    font-size: 16px;
  }

  .question-example-body {
    padding: 16px 20px;
  }

  .question-example-body .example-intro {
    font-size: 13px;
    padding: 10px 14px;
  }

  .question-example-body .example-category h4 {
    font-size: 14px;
  }

  .question-example-body .example-category li {
    font-size: 13px;
    padding: 10px 0;
  }

  .question-example-footer {
    padding: 14px 20px;
  }

  .question-example-footer .btn-modal-close {
    width: 100%;
    padding: 14px;
  }

  /* 모바일에서 질문 textarea 높이 증가 (placeholder 가독성) */
  .saju-page #SPECIFIC_QUESTION {
    min-height: 120px;
  }
}

/* ========================================
   공통 캐러셀 스타일 (Transform 방식)
   - spacer div 불필요
   - 인덱스 = 슬라이드 번호 (0, 1, 2...)
   ======================================== */

/* 캐러셀 컨테이너 (overflow hidden) */
.sju-carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* 슬라이드 래퍼 (transform으로 이동) */
.sju-carousel-wrap {
  display: flex;
  align-items: center;
  transition: transform 0.4s ease;
}

/* 각 슬라이드 아이템 */
.sju-carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
  height: 530px;
  box-sizing: border-box;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sju-carousel-item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* 인디케이터 점 */
.sju-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.sju-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.sju-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.sju-carousel-dot.active {
  background: rgba(248, 113, 113, 0.9);
  transform: scale(1.3);
}

/* PC (768px 이상) */
@media (min-width: 768px) {
  .sju-carousel-container {
    max-width: 450px;
  }
  
  .sju-carousel-item {
    height: 730px;
  }
  
  /* PC 후기 캐러셀 높이 */
  .review-image-section .sju-carousel-item {
    height: 730px;
  }
}

/* ========================================
   리포트 예시 섹션
   ======================================== */
.saju-page .report-sample-section {
  padding: 32px 0 24px;
  background: transparent;
  overflow: hidden;
}

.saju-page .report-sample-title {
  text-align: center;
  font-size: 15px;
  color: #9ca3af;
  margin-bottom: 16px;
}

/* ========================================
   리포트 이미지 모달
   ======================================== */
.report-image-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  padding: 20px;
}

.report-image-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-image-modal {
  background: #1e293b;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.report-image-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #334155;
}

.report-image-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #f1f5f9;
}

.report-image-modal-header .btn-close {
  width: 32px;
  height: 32px;
  border: none;
  background: #334155;
  color: #94a3b8;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.report-image-modal-header .btn-close:hover {
  background: #475569;
  color: #f1f5f9;
}

.report-image-modal-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.report-image-modal-body img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.report-image-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #334155;
}

.report-image-modal-footer .btn-modal-close {
  width: 100%;
  padding: 14px 24px;
  background: #334155;
  color: #f1f5f9;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.report-image-modal-footer .btn-modal-close:hover {
  background: #475569;
}

/* 리포트 모달 모바일 반응형 */
@media (max-width: 767px) {
  .report-image-modal-overlay {
    padding: 10px;
    align-items: flex-end;
  }

  .report-image-modal {
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
  }

  .report-image-modal-header {
    padding: 16px 20px;
  }

  .report-image-modal-header h3 {
    font-size: 16px;
  }

  .report-image-modal-body {
    padding: 16px 20px;
  }

  .report-image-modal-footer {
    padding: 14px 20px;
  }

  .report-image-modal-footer .btn-modal-close {
    padding: 14px;
  }
}

/* 후기 캐러셀 모바일 높이 조정 */
@media (max-width: 767px) {
  .review-image-section .sju-carousel-container {
    max-width: 320px;
  }
  
  .review-image-section .sju-carousel-item {
    height: 520px;
  }
}

/* ========================================
   후기 이미지 모달
   ======================================== */
.review-image-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  padding: 20px;
}

.review-image-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-image-modal {
  background: #1e293b;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.review-image-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #334155;
}

.review-image-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #f1f5f9;
}

.review-image-modal-header .btn-close {
  width: 32px;
  height: 32px;
  border: none;
  background: #334155;
  color: #94a3b8;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.review-image-modal-header .btn-close:hover {
  background: #475569;
  color: #f1f5f9;
}

.review-image-modal-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.review-image-modal-body img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.review-image-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #334155;
}

.review-image-modal-footer .btn-modal-close {
  width: 100%;
  padding: 14px 24px;
  background: #334155;
  color: #f1f5f9;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.review-image-modal-footer .btn-modal-close:hover {
  background: #475569;
}

/* 후기 모달 모바일 반응형 */
@media (max-width: 767px) {
  .review-image-modal-overlay {
    padding: 10px;
    align-items: flex-end;
  }

  .review-image-modal {
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
  }

  .review-image-modal-header {
    padding: 16px 20px;
  }

  .review-image-modal-header h3 {
    font-size: 16px;
  }

  .review-image-modal-body {
    padding: 16px 20px;
  }

  .review-image-modal-footer {
    padding: 14px 20px;
  }

  .review-image-modal-footer .btn-modal-close {
    padding: 14px;
  }
}

/* ========================================
   7포인트 상세설명 섹션 (폼 아래 배치)
   ========================================
   
   [마케팅 심리 기법 적용]
   - Cognitive Load Theory: 정보량 80% 축소 (8개×2줄=16줄)
   - F-패턴 스캐닝: 제목 굵게(700), 설명 가볍게(400)
   - Progressive Disclosure: 상세는 모달로 분리
   - Information for Deliberators: 신중 구매자용 정보
   
   [폰트 설계 원칙]
   - 제목: 시선 집중 (밝은 색, 굵게)
   - 설명: 부드러운 안내 (연한 색, 가볍게)
   - 대비: 제목-설명 간 명확한 계층 구조
*/

.saju-page .seven-points-section {
  padding: 48px 0;
  background: transparent;
}

.saju-page .seven-points-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

/* 7포인트 리스트 컨테이너 */
.saju-page .seven-points-list {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
}

/* 각 아이템 */
.saju-page .seven-points-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(100, 116, 139, 0.15);
}

.saju-page .seven-points-item:last-child {
  border-bottom: none;
}

/* 특별 질문 아이템 강조 */
.saju-page .seven-points-item-special {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px dashed rgba(245, 158, 11, 0.4);
  border-bottom: none;
}

/* 제목: F-패턴 스캐닝 최적화 */
.saju-page .seven-points-title {
  font-size: 16px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 6px;
  line-height: 1.4;
}

/* 설명: Cognitive Load 감소 */
.saju-page .seven-points-desc {
  font-size: 14px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 1.6;
}

/* 상세보기 버튼 */
.saju-page .btn-detail-view {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 8px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.saju-page .btn-detail-view:hover {
  border-color: #f59e0b;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.05);
}

/* 모바일 반응형 */
@media (max-width: 767px) {
  .saju-page .seven-points-section {
    padding: 36px 0;
  }
  
  .saju-page .seven-points-section h2 {
    margin-bottom: 24px;
  }
  
  .saju-page .seven-points-item {
    padding: 14px 0;
  }
  
  .saju-page .seven-points-title {
    font-size: 15px;
  }
  
  .saju-page .seven-points-desc {
    font-size: 13px;
  }
  
  .saju-page .btn-detail-view {
    padding: 10px 24px;
    font-size: 13px;
  }
}

/* ========================================
   환불보장 대문짝 배너 (Risk Reversal)
   ========================================
   
   [마케팅 심리 기법]
   - Risk Reversal: 구매 직전 리스크 제거
   - Fogg Model: 행동 직전에 "능력(리스크 없음)" 배치
   - Von Restorff Effect: 시각적 강조로 주목
   
   [디자인 원칙]
   - 큰 폰트: 20px+ (시선 집중)
   - 강조색: #f59e0b (긴장감 + 신뢰)
   - 높은 대비: 배경 어둡게, 텍스트 밝게
*/

.saju-page .refund-guarantee-banner {
  margin: 32px 0;
  padding: 24px 20px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0.06) 100%);
  border: 2px solid rgba(245, 158, 11, 0.5);
  border-radius: 16px;
  text-align: center;
}

.saju-page .refund-guarantee-banner .refund-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.saju-page .refund-guarantee-banner .refund-title {
  font-size: 22px;
  font-weight: 800;
  color: #f59e0b;
  margin-bottom: 8px;
  line-height: 1.3;
}

.saju-page .refund-guarantee-banner .refund-desc {
  font-size: 15px;
  font-weight: 500;
  color: #e5e7eb;
  line-height: 1.6;
}

.saju-page .refund-guarantee-banner .refund-sub {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 8px;
}

/* 모바일 */
@media (max-width: 767px) {
  .saju-page .refund-guarantee-banner {
    margin: 24px 0;
    padding: 20px 16px;
  }
  
  .saju-page .refund-guarantee-banner .refund-icon {
    font-size: 28px;
  }
  
  .saju-page .refund-guarantee-banner .refund-title {
    font-size: 18px;
  }
  
  .saju-page .refund-guarantee-banner .refund-desc {
    font-size: 14px;
  }
  
  .saju-page .refund-guarantee-banner .refund-sub {
    font-size: 12px;
  }
}

/* ========================================
   7포인트 축소 버전 (폼 아래, Information for Deliberators)
   ========================================
   
   [마케팅 심리 기법]
   - Cognitive Load Theory: 인지 부하 감소 (80줄 → 16줄)
   - F-Pattern Scanning: 빠르게 훑고 지나가는 구조
   - Information for Deliberators: 망설이는 사람을 위한 상세 정보
   
   [폰트 스타일 설계]
   - 제목: 16px, #f8fafc (밝은 흰색), font-weight: 700
   - 설명: 14px, #94a3b8 (연한 회색), font-weight: 400
   - 아이콘: 🔑 (시각적 구분점)
*/

.saju-page .seven-points-compact-section {
  padding: 48px 0;
  background: rgba(15, 23, 42, 0.5);
  border-top: 1px solid rgba(100, 116, 139, 0.2);
  border-bottom: 1px solid rgba(100, 116, 139, 0.2);
}

/* 7포인트 박스 (다른 섹션과 동일한 box 스타일 사용) */
.saju-page .seven-points-box {
  text-align: left;
}

.saju-page .seven-points-box .seven-points-wrapper {
  max-width: 100%;
}

.saju-page .innerbox p {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(100, 116, 139, 0.3);
}

.saju-page .innerbox p:first-child {
  padding-top: 24px;
}

.saju-page .innerbox p:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 24px;
}

.saju-page .seven-points-compact-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 32px;
}

.saju-page .seven-points-compact-list {
  max-width: 500px;
  margin: 0 auto;
}

.saju-page .seven-points-compact-list {
  display: flex;
  justify-content: center;
}

.saju-page .seven-points-wrapper {
  max-width: 420px;
  text-align: left;
}

.saju-page .seven-points-compact-name {
  font-size: 16px;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.4;
  margin-top: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(100, 116, 139, 0.3);
}

.saju-page .seven-points-compact-name:first-child {
  margin-top: 0;
}

.saju-page .seven-points-compact-desc {
  font-size: 14px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 1.6;
  text-align: left;
}

/* 특별 질문 항목 강조 */
.saju-page .seven-points-compact-name.seven-points-compact-special {
  color: #f59e0b;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 158, 11, 0.3);
}

.saju-page .seven-points-compact-desc.seven-points-compact-special {
  color: #fcd34d;
}

/* 모바일 반응형 */
@media (max-width: 767px) {
  .saju-page .seven-points-compact-section {
    padding: 36px 0;
  }
  
  .saju-page .seven-points-compact-title {
    font-size: 18px;
    margin-bottom: 24px;
  }
  
  .saju-page .seven-points-compact-name {
    font-size: 15px;
    margin-top: 16px;
  }
  
  .saju-page .seven-points-compact-desc {
    font-size: 13px;
  }
}

/* ========================================
   리포트 예시 그리드
   - PC/모바일 모두 2열 그리드 유지 (process-grid와 동일 방식)
   ======================================== */
.saju-page .report-sample-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.saju-page .report-sample-item {
  cursor: pointer;
  border-radius: 12px;
  overflow: visible;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.saju-page .report-sample-item picture {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.saju-page .report-sample-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.saju-page .report-sample-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* 1-2번째 카드만 동일 높이 (1번 기준) - 리포트 예시만 */
/* 이미지 크기:
   - PC 01: 760x1144 (비율 1:1.505)
   - PC 02: 760x1009 (비율 1:1.328)
   - MO 01: 600x903  (비율 1:1.505)
   - MO 02: 600x797  (비율 1:1.328)
   1번 이미지가 더 높으므로 1번 기준 aspect-ratio 적용
*/
.saju-page .report-sample-grid.report-sample-grid-main > .report-sample-item:nth-child(1) picture,
.saju-page .report-sample-grid.report-sample-grid-main > .report-sample-item:nth-child(2) picture {
  aspect-ratio: 760 / 1144;
  display: flex;
  align-items: center;
  justify-content: center;
}

.saju-page .report-sample-grid.report-sample-grid-main > .report-sample-item:nth-child(1) img,
.saju-page .report-sample-grid.report-sample-grid-main > .report-sample-item:nth-child(2) img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* PC (768px 이상) */
@media (min-width: 768px) {
  .saju-page .report-sample-grid {
    gap: 20px;
    max-width: 640px;
  }
}

/* 마지막 이미지가 홀수일 때 전체 폭 사용 (PC/모바일 공통) */
.saju-page .report-sample-grid > .report-sample-item:last-child:nth-child(odd),
.saju-page .report-sample-grid > div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 100%;
}

/* 모바일 (767px 이하) - 2열 그리드 유지 */
@media (max-width: 767px) {
  .saju-page .report-sample-grid {
    gap: 12px;
    max-width: 100%;
  }
  
  .saju-page .report-sample-item {
    border-radius: 8px;
  }
  
  /* 모바일에서 이미지 크기 최적화 */
  .saju-page .report-sample-item img {
    width: 100%;
    height: auto;
  }
}

/* ========================================
   리포트 이미지 모달 (큰 버전) - 3번째 예시용
   ======================================== */
.report-image-modal-overlay.large .report-image-modal {
  max-width: min(90vw, 800px);
  max-height: 90vh;
}

@media (max-width: 767px) {
  .report-image-modal-overlay.large .report-image-modal {
    max-width: 95vw;
    max-height: 90vh;
  }
}


