    /* ========== Hero — 편집 톤 ========== */
    .hero-area {
      background:
        radial-gradient(1000px 500px at 80% 0%, rgba(201, 168, 106, 0.09), transparent 60%),
        linear-gradient(172deg, #080e1c 0%, #121a30 58%, #080e1c 100%);
      color: #fff;
      padding: clamp(96px, 13vh, 140px) 28px clamp(80px, 11vh, 120px);
      text-align: center;
      position: relative;
    }
    .hero-area::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.28), transparent);
    }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 11px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(201, 168, 106, 0.9);
      font-weight: 600;
      margin-bottom: 24px;
    }
    .hero-kicker::before,
    .hero-kicker::after {
      content: "";
      width: 32px;
      height: 1px;
      background: currentColor;
      opacity: 0.6;
    }
    .hero-title {
      font-family: var(--font-serif);
      font-size: clamp(30px, 4.4vw, 48px);
      font-weight: 700;
      line-height: 1.18;
      letter-spacing: -0.03em;
      margin: 0 0 20px;
      color: #fff;
      text-wrap: balance;
    }
    .hero-line {
      display: none;
    }
    .hero-desc {
      font-size: 16.5px;
      color: rgba(255,255,255,0.68);
      max-width: 580px;
      margin: 0 auto;
      word-break: keep-all;
      overflow-wrap: anywhere;
      line-height: 1.72;
      letter-spacing: -0.005em;
      text-wrap: pretty;
    }

    /* ========== Main card — 편집 카드 ========== */
    .sc-container {
      max-width: 820px;
      margin: 0 auto;
      padding: 0 28px 96px;
    }
    .main-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      margin-top: 48px;
      padding: 56px 48px;
      border-radius: var(--radius-md);
      box-shadow: 0 40px 80px -40px rgba(10, 17, 34, 0.12);
    }

    /* ========== Mode tabs — 편집 스타일 ========== */
    .mode-tabs {
      display: flex;
      border-bottom: 1px solid var(--border-light);
      margin-bottom: 48px;
    }
    .mode-btn {
      flex: 1;
      padding: 18px 12px;
      min-height: 48px;
      background: transparent;
      border: none;
      border-bottom: 1px solid transparent;
      margin-bottom: -1px;
      font-size: 14.5px;
      font-weight: 600;
      color: var(--text-muted);
      cursor: pointer;
      transition: color 0.22s ease, border-color 0.22s ease;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      font-family: var(--font-sans);
      letter-spacing: -0.005em;
    }
    .mode-btn.active {
      color: var(--navy);
      border-bottom-color: var(--navy);
      font-weight: 700;
    }
    .mode-btn:hover { color: var(--navy); }
    .mode-btn i {
      font-size: 13px;
      color: var(--gold);
      opacity: 0.6;
    }
    .mode-btn.active i { opacity: 1; }

    /* ========== Question wizard — 편집 프로그레스 ========== */
    .question-progress {
      margin: 0 0 36px;
      padding: 0 0 24px;
      background: transparent;
      border: 0;
      border-bottom: 1px solid var(--border-light);
    }
    .wizard-progress-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 14px;
    }
    .wizard-progress-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: -0.005em;
      font-variant-numeric: tabular-nums;
    }
    .wizard-progress-step {
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      font-variant-numeric: tabular-nums;
    }
    .wizard-progress-track {
      width: 100%;
      height: 2px;
      background: var(--border-subtle);
      overflow: hidden;
    }
    .wizard-progress-bar {
      display: block;
      width: 0;
      height: 100%;
      background: var(--navy);
      transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .wizard-progress-note {
      margin-top: 12px;
      font-size: 12.5px;
      color: var(--text-muted);
      line-height: 1.7;
      overflow-wrap: anywhere;
      letter-spacing: -0.003em;
    }
    .question-wizard-ready .q-section {
      display: none;
      margin-bottom: 0;
    }
    .question-wizard-ready .q-section.is-active { display: block; }
    .question-wizard-ready .q-item {
      display: none;
      margin-bottom: 0;
    }
    .question-wizard-ready .q-item.is-active {
      display: block;
      outline: none;
    }
    .question-wizard-ready .info-section,
    .question-wizard-ready .submit-area,
    .question-wizard-ready .wizard-complete-note {
      display: none;
    }
    .question-wizard-ready.is-contact-step .info-section,
    .question-wizard-ready.is-contact-step .submit-area,
    .question-wizard-ready.is-contact-step .wizard-complete-note {
      display: block;
    }
    .wizard-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 28px;
    }
    .wizard-btn {
      min-width: 144px;
      min-height: 48px;
      padding: 15px 22px;
      font-size: 14.5px;
      font-weight: 700;
      font-family: var(--font-sans);
      border: none;
      transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
      background: var(--navy);
      color: #fff;
      border-radius: 4px;
      letter-spacing: -0.005em;
    }
    .wizard-btn:hover:not(:disabled) { background: #000; }
    .wizard-btn:disabled {
      opacity: 0.35;
      cursor: not-allowed;
    }
    .wizard-btn.secondary {
      background: transparent;
      color: var(--navy);
      border: 1px solid var(--border-strong);
    }
    .wizard-btn.secondary:hover:not(:disabled) {
      background: var(--navy);
      border-color: var(--navy);
      color: #fff;
    }
    .wizard-complete-note {
      background: transparent;
      border: 0;
      border-left: 2px solid var(--gold);
      padding: 14px 20px;
      margin-top: 36px;
      font-size: 13.5px;
      color: var(--text-secondary);
      line-height: 1.72;
      letter-spacing: -0.005em;
    }

    /* ========== Question group ========== */
    .q-section {
      margin-bottom: 48px;
      animation: fadeIn 0.4s ease-out;
    }
    @keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

    .q-header {
      margin-bottom: 28px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--border-light);
    }
    .q-step {
      display: block;
      font-size: 10.5px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 8px;
      font-variant-numeric: tabular-nums;
    }
    .q-title-lg {
      font-family: var(--font-serif);
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      margin: 0;
      letter-spacing: -0.025em;
      line-height: 1.35;
    }
    .q-desc-box {
      background: var(--bg-warm);
      border-left: 3px solid var(--gold);
      padding: 14px 18px;
      margin-bottom: 24px;
      color: var(--text-secondary);
      font-size: 14px;
      line-height: 1.75;
    }
    .diagram-container {
      margin: 16px 0 24px;
      padding: 16px 18px;
      background: var(--bg-page);
      border: 1px solid var(--border-light);
      border-left: 3px solid var(--border-light);
    }
    .diagram-caption {
      font-size: 13px;
      color: var(--text-muted);
      font-style: italic;
      line-height: 1.65;
    }

    /* ========== Select cards — 편집 선택지 ========== */
    .q-item { margin-bottom: 36px; }
    .q-label {
      display: block;
      font-size: 16.5px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 18px;
      line-height: 1.5;
      overflow-wrap: anywhere;
      letter-spacing: -0.015em;
    }
    .select-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }
    .select-full { grid-template-columns: 1fr; }

    .select-card {
      position: relative;
      border: 1px solid var(--border-light);
      padding: 16px 18px;
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease;
      background: var(--bg-card);
      border-radius: 4px;
    }
    .select-card:hover {
      border-color: var(--navy);
      background: var(--bg-card);
    }
    .select-card input { position: absolute; opacity: 0; width: 0; height: 0; }
    .select-content { display: flex; align-items: center; gap: 14px; }
    .select-icon {
      width: 18px; height: 18px;
      border: 1.5px solid var(--border-strong);
      flex-shrink: 0; position: relative;
      border-radius: 50%;
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .select-text {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-secondary);
      line-height: 1.55;
      overflow-wrap: anywhere;
      letter-spacing: -0.005em;
    }

    /* Checked state — navy ink */
    .select-card:has(input:checked) {
      border-color: var(--navy);
      background: var(--bg-card);
      box-shadow: 0 0 0 1px var(--navy) inset;
    }
    .select-card:has(input:checked) .select-icon {
      border-color: var(--navy);
      background: var(--navy);
    }
    .select-card:has(input:checked) .select-icon::after {
      content: '';
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 6px; height: 6px;
      background: #fff;
      border-radius: 50%;
    }
    .select-card:has(input:checked) .select-text {
      color: var(--navy);
      font-weight: 600;
    }

    /* ========== Info section — 편집 연락처 입력 ========== */
    .info-section {
      background: transparent;
      border: 0;
      border-top: 1px solid var(--border-light);
      padding: 36px 0 0;
      margin-top: 40px;
      border-radius: 0;
    }
    .info-title {
      font-size: 11px;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
    }
    .info-title i { display: none; }
    .info-title::before {
      content: "";
      width: 32px;
      height: 1px;
      background: var(--gold);
      opacity: 0.6;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      margin-bottom: 18px;
    }
    .form-input {
      width: 100%;
      padding: 14px 0;
      border: 0;
      border-bottom: 1px solid var(--border-strong);
      background: transparent;
      font-size: 15px;
      font-family: var(--font-sans);
      outline: none;
      transition: border-color 0.22s ease;
      border-radius: 0;
      letter-spacing: -0.005em;
      color: var(--text-primary);
    }
    .form-input:focus { border-bottom-color: var(--navy); }
    .form-input::placeholder { color: var(--text-muted); opacity: 0.7; }
    .privacy-check {
      font-size: 13px;
      color: var(--text-secondary);
      display: flex;
      align-items: flex-start;
      gap: 8px;
      cursor: pointer;
      line-height: 1.5;
    }
    .privacy-check input { margin-top: 2px; flex-shrink: 0; }
    .privacy-detail {
      margin-top: 10px;
      font-size: 12px;
      color: var(--text-muted);
      background: rgba(0,0,0,0.03);
      border: 1px solid var(--border-subtle);
      padding: 10px 12px;
      line-height: 1.7;
      border-radius: var(--radius-md);
    }

    /* ========== Submit button — 편집 프라이머리 ========== */
    .submit-area { text-align: left; margin-top: 32px; }
    .btn-submit-main {
      background: var(--navy);
      color: #fff;
      padding: 18px 40px;
      font-size: 15px;
      font-weight: 700;
      font-family: var(--font-sans);
      border: none;
      cursor: pointer;
      transition: background 0.22s ease;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      border-radius: 4px;
      letter-spacing: -0.005em;
    }
    .btn-submit-main:hover { background: #000; }

    /* ========== Result modal ========== */
    .report-overlay {
      display: none;
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(10,15,30,0.65);
      backdrop-filter: blur(4px);
      z-index: 999;
    }
    .report-box {
      display: none;
      background: var(--bg-card);
      border-top: 2px solid var(--gold);
      border: 1px solid var(--border-light);
      padding: 48px 44px 40px;
      position: fixed;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 90%; max-width: 560px;
      z-index: 1000;
      max-height: 90vh;
      overflow-y: auto;
      text-align: left;
      border-radius: var(--radius-md);
      box-shadow: 0 60px 120px -40px rgba(10, 17, 34, 0.35);
    }
    .report-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0;
      background: transparent;
      color: var(--gold);
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      margin-bottom: 20px;
      border-radius: 0;
    }
    .report-badge::before {
      content: "";
      width: 28px;
      height: 1px;
      background: currentColor;
      opacity: 0.6;
    }
    .report-title {
      font-family: var(--font-serif);
      font-size: 24px;
      font-weight: 700;
      line-height: 1.3;
      margin: 0 0 24px;
      color: var(--navy);
      letter-spacing: -0.025em;
    }
    .report-content {
      background: var(--bg-warm);
      border: 1px solid var(--border-light);
      padding: 22px 24px;
      text-align: left;
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 28px;
      border-radius: 4px;
      letter-spacing: -0.003em;
    }
    .btn-action-group {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .btn-big {
      min-height: 48px;
      padding: 15px 18px;
      font-weight: 700;
      font-size: 14px;
      font-family: var(--font-sans);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
      border-radius: 4px;
      letter-spacing: -0.005em;
    }
    .btn-navy { background: var(--navy); color: #fff; }
    .btn-navy:hover { background: #000; }
    .btn-gold {
      background: transparent;
      color: var(--navy);
      border: 1px solid var(--border-strong);
    }
    .btn-gold:hover {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
    }
    .btn-close {
      position: absolute; top: 16px; right: 16px;
      width: 44px; height: 44px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 22px; color: var(--text-light); cursor: pointer;
      background: none; border: none; font-family: inherit;
      border-radius: 999px;
    }
    .btn-close:hover { color: var(--text-primary); }

    /* ========== Desktop right CTA ========== */
    .desktop-right-cta { position: fixed; right: 18px; top: 50%; transform: translateY(-50%); z-index: 9998; display: none; }
    .desktop-right-cta-stack { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
    .desktop-right-cta-btn {
      display: flex; align-items: center; gap: 12px; padding: 12px 14px;
      background: rgba(10,15,30,0.93); color: #f0ede8;
      text-decoration: none;
      box-shadow: 0 8px 28px rgba(0,0,0,0.3);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-md);
      transition: var(--transition); min-width: 164px; backdrop-filter: blur(10px);
    }
    .desktop-right-cta-btn.primary { background: var(--gold); color: var(--navy); border-color: transparent; }
    .desktop-right-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.35); }
    .desktop-right-cta-btn i { font-size: 17px; width: 20px; text-align: center; }
    .desktop-right-cta-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
    .desktop-right-cta-text .main { font-weight: 800; font-size: 13px; line-height: 1.1; white-space: nowrap; }
    .desktop-right-cta-text .sub { font-weight: 600; font-size: 11px; opacity: 0.75; white-space: nowrap; }
    .desktop-right-cta-text .sub.mono { font-feature-settings: "tnum"; letter-spacing: 0.02em; }
    .desktop-right-cta-details { position: relative; }
    .desktop-right-cta-details > summary { list-style: none; }
    .desktop-right-cta-details > summary::-webkit-details-marker { display: none; }
    .desktop-right-cta-arrow { margin-left: auto; font-size: 12px; opacity: 0.7; transition: transform 0.2s ease; }
    .desktop-right-cta-details[open] .desktop-right-cta-arrow { transform: rotate(180deg); }
    .desktop-right-cta-dropdown {
      position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%);
      width: 220px; background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      box-shadow: 0 16px 48px rgba(10,15,30,0.2); overflow: hidden; padding: 6px;
    }
    .desktop-right-cta-dropdown a { display: flex; align-items: center; gap: 10px; padding: 9px 11px; font-weight: 700; font-size: 13px; color: var(--navy); }
    .desktop-right-cta-dropdown a:hover { background: var(--bg-warm); }
    .desktop-right-cta-chip {
      width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center;
      background: var(--navy); color: var(--gold-light); font-size: 11px; font-weight: 800; flex-shrink: 0;
      border-radius: var(--radius-sm);
    }

    /* ========== Media queries ========== */
    @media (min-width: 993px) {
      .desktop-right-cta { display: block; }
    }
    @media (max-width: 992px) {
      .wizard-progress-note { font-size: 14px; }
      .select-text { font-size: 15px; line-height: 1.6; }
      .form-input { font-size: 16px; padding: 13px 14px; }
      .privacy-check { font-size: 14px; }
      .privacy-detail { font-size: 13px; }
    }
    @media (max-width: 768px) {
      .main-card { padding: 24px 18px; margin-top: 24px; }
      .select-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .btn-action-group { grid-template-columns: 1fr; }
      .report-box { padding: 28px 20px; }
      .question-progress { padding: 16px; }
      .wizard-controls {
        flex-direction: column-reverse;
        align-items: stretch;
      }
      .wizard-btn { width: 100%; }
    }
    @media (max-width: 640px) {
      body { font-size: 16px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .desktop-right-cta-btn, .desktop-right-cta-arrow { transition: none !important; }
    }

    /* ===================================================
       selfcheck-complete 전용 스타일
       =================================================== */

    /* ---- 컨테이너 / 카드 변형 ---- */
    .sc-container--complete { max-width: 800px; }
    .main-card--complete { border-top: 3px solid var(--gold); }

    /* ---- 완료 확인 영역 ---- */
    .complete-confirm {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }
    .complete-confirm__icon {
      font-size: 38px;
      color: var(--gold);
      flex-shrink: 0;
      line-height: 1;
      padding-top: 3px;
    }
    .complete-confirm__content { flex: 1; min-width: 0; }
    .complete-confirm__badge {
      display: inline-block;
      background: var(--navy);
      color: var(--gold-light);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 3px 10px;
      border-radius: var(--radius-sm);
      margin-bottom: 10px;
    }
    .complete-confirm__title {
      font-family: var(--font-serif);
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.02em;
      margin: 0 0 10px;
      line-height: 1.4;
    }
    .complete-confirm__desc {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.8;
      margin: 0;
      overflow-wrap: anywhere;
      word-break: keep-all;
    }

    /* ---- 구분선 ---- */
    .sc-divider {
      width: 100%;
      height: 1px;
      background: var(--border-light);
      margin: 32px 0;
    }

    /* ---- 진행 절차 ---- */
    .process-block__heading {
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .process-block__heading i { color: var(--gold); font-size: 14px; }

    .process-steps { display: flex; flex-direction: column; gap: 0; list-style: none; margin: 0; padding: 0; }

    .process-step {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border-subtle);
    }
    .process-step:first-child { padding-top: 0; }
    .process-step:last-child { border-bottom: none; padding-bottom: 0; }

    .process-step__num {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      color: var(--gold);
      background: var(--gold-muted);
      border: 1px solid rgba(184,146,74,0.22);
      border-radius: var(--radius-sm);
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .process-step__label {
      display: block;
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 5px;
      line-height: 1.4;
    }
    .process-step__desc {
      display: block;
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.75;
      overflow-wrap: anywhere;
      word-break: keep-all;
    }

    /* ---- 신뢰 그리드 ---- */
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .trust-card {
      background: var(--bg-warm);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 18px 16px;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }
    .trust-card__icon { font-size: 18px; color: var(--gold); line-height: 1; }
    .trust-card__title { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
    .trust-card__desc {
      display: block;
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.7;
      overflow-wrap: anywhere;
      word-break: keep-all;
    }

    /* ---- 완료 버튼 영역 ---- */
    .complete-btn-area { text-align: center; }
    .complete-btn-area__note {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0 0 18px;
      line-height: 1.7;
      word-break: keep-all;
    }
    .complete-btn-area .btn-action-group {
      max-width: 500px;
      margin: 0 auto 16px;
    }
    .complete-phone-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 14px;
      font-weight: 700;
      color: var(--text-secondary);
      border-bottom: 1px solid var(--border-light);
      padding-bottom: 2px;
      transition: var(--transition);
    }
    .complete-phone-link:hover { color: var(--navy); border-bottom-color: var(--gold); }

    /* ---- 스크롤 등장 애니메이션 ---- */
    .fade-up {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .fade-up.is-visible { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      .fade-up { opacity: 1; transform: none; transition: none; }
    }

    /* ---- 반응형 ---- */
    @media (max-width: 640px) {
      .complete-confirm { flex-direction: column; gap: 12px; }
      .complete-confirm__icon { font-size: 28px; padding-top: 0; }
      .trust-grid { grid-template-columns: 1fr; gap: 10px; }
      .complete-btn-area .btn-action-group { max-width: 100%; }
    }

    /* =========================================================
       Selfcheck Precision Redesign
       ========================================================= */
    .selfcheck-hero-area {
      padding-top: 72px;
      padding-bottom: 84px;
      background:
        radial-gradient(circle at 12% 20%, rgba(184,146,74,0.16), transparent 28%),
        radial-gradient(circle at 84% 18%, rgba(184,146,74,0.12), transparent 24%),
        linear-gradient(180deg, #0a0f1e 0%, #111e37 100%);
    }
    .selfcheck-hero-shell {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
      gap: 34px;
      align-items: center;
    }
    .selfcheck-hero-copy {
      text-align: left;
    }
    .selfcheck-hero-points {
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
      max-width: 640px;
    }
    .selfcheck-hero-points li {
      position: relative;
      padding-left: 18px;
      color: rgba(255,255,255,0.8);
      font-size: 14px;
      line-height: 1.7;
    }
    .selfcheck-hero-points li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 9px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
    }
    .selfcheck-hero-badges {
      margin-top: 22px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .selfcheck-hero-badge {
      display: inline-flex;
      align-items: center;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      color: rgba(255,255,255,0.88);
      font-size: 12px;
      font-weight: 700;
    }
    .selfcheck-hero-panel {
      background: rgba(255,255,255,0.97);
      border-top: 3px solid var(--gold);
      border-radius: 24px;
      padding: 28px 24px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.24);
      text-align: left;
    }
    .selfcheck-hero-panel-kicker {
      display: inline-block;
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 900;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .selfcheck-hero-panel-title {
      margin: 0 0 14px;
      font-family: var(--font-serif);
      font-size: 24px;
      line-height: 1.35;
      color: var(--navy);
      letter-spacing: -0.02em;
    }
    .selfcheck-hero-panel-list {
      margin: 0 0 18px;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }
    .selfcheck-hero-panel-list li {
      position: relative;
      padding-left: 18px;
      color: var(--text-secondary);
      font-size: 14px;
      line-height: 1.7;
    }
    .selfcheck-hero-panel-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 9px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
    }
    .selfcheck-hero-actions {
      display: grid;
      gap: 10px;
    }
    .selfcheck-hero-actions .btn {
      width: 100%;
      justify-content: center;
    }
    .selfcheck-hero-outline {
      border-color: var(--navy) !important;
      color: var(--navy) !important;
    }
    .selfcheck-hero-outline:hover {
      background: rgba(184,146,74,0.08) !important;
      border-color: var(--gold) !important;
    }
    .selfcheck-hero-phone {
      margin-top: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--navy);
      font-size: 13px;
      font-weight: 800;
      text-decoration: none;
    }
    .selfcheck-hero-phone i {
      color: var(--gold);
    }

    .complete-fast-actions {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 20px;
    }
    .complete-fast-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 14px;
      border-radius: var(--radius-md);
      background: var(--bg-warm);
      border: 1px solid var(--border-light);
      color: var(--navy);
      font-size: 13px;
      font-weight: 800;
      text-decoration: none;
    }
    .complete-fast-action:hover {
      border-color: rgba(184,146,74,0.34);
      background: rgba(184,146,74,0.08);
    }
    .complete-fast-action i {
      color: var(--gold);
    }

    @media (max-width: 900px) {
      .selfcheck-hero-shell {
        grid-template-columns: 1fr;
      }
      .selfcheck-hero-copy {
        text-align: center;
      }
      .selfcheck-hero-points {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
      }
      .selfcheck-hero-badges {
        justify-content: center;
      }
    }

    @media (max-width: 640px) {
      .selfcheck-hero-area {
        padding-top: 58px;
        padding-bottom: 72px;
      }
      .selfcheck-hero-panel-title {
        font-size: 21px;
      }
      .complete-fast-actions {
        grid-template-columns: 1fr;
      }
    }

/* =========================================================
   SELFCHECK REDESIGN v2 — 전환 중심 단순화
   다크 네이비 + 골드 · 심플 · 모바일 최적화
   ========================================================= */

.sc-page {
  background: var(--bg-page);
  min-height: 100vh;
}
.sc-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 28px);
}

/* ── Hero — 사이트 통합 DARK NAVY ──────────────────────
   배경/패딩은 common.css 의 .sc-hero 정의가 담당 (dark navy) */
.sc-hero {
  text-align: center;
}
.sc-hero::before { display: none; }

.sc-hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.sc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: rgba(212, 185, 120, 0.10);
  border: 1px solid rgba(212, 185, 120, 0.32);
  border-radius: 999px;
  color: rgba(234, 215, 165, 0.95);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.sc-hero-badge i { color: var(--gold-light); font-size: 11px; }

.sc-hero-title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #fbfcfe;
  margin: 0 0 22px;
  word-break: keep-all;
}
.sc-hl {
  color: var(--gold-light);
  font-weight: 800;
}
.sc-hero-sub {
  font-size: clamp(15.5px, 1.3vw, 17.5px);
  line-height: 1.85;
  color: rgba(241, 244, 250, 0.78);
  margin: 0 auto 38px;
  max-width: 560px;
  word-break: keep-all;
}
.sc-hero-sub strong { color: #fff; font-weight: 700; }

.sc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sc-hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(241, 244, 250, 0.7);
  font-weight: 500;
}
.sc-hero-meta li i { color: var(--gold-light); font-size: 12px; }

/* ── Form Card ──────────────────────────────────────────── */
.sc-form-wrap {
  padding: clamp(32px, 5vw, 56px) 0 clamp(64px, 10vw, 120px);
}
.sc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: clamp(24px, 4vw, 40px);
  margin-top: -40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(10,15,30,0.12);
}

/* ── Mode Tabs ──────────────────────────────────────────── */
.sc-mode-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 6px;
  background: var(--bg-warm);
  margin-bottom: clamp(24px, 4vw, 32px);
}
.sc-mode-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.2s;
}
.sc-mode-btn i { font-size: 15px; }
.sc-mode-btn:hover { color: var(--navy); }
.sc-mode-btn.active {
  background: var(--navy);
  color: #fff;
}
.sc-mode-btn.active i { color: var(--gold); }

/* ── Progress Indicator ─────────────────────────────────── */
.sc-progress {
  margin-bottom: clamp(24px, 4vw, 32px);
  padding: 18px 20px;
  background: var(--bg-warm);
  border-left: 3px solid var(--gold);
}
.sc-progress-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.sc-progress-count {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.sc-progress-count::after {
  content: '질문';
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 6px;
  font-family: var(--font-sans);
  font-weight: 500;
}
.sc-progress-stage {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding: 3px 10px;
  background: var(--gold-muted);
}
.sc-progress-track {
  height: 6px;
  background: var(--border-light);
  position: relative;
  overflow: hidden;
}
.sc-progress-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0;
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.sc-progress-hint {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Question Sections ──────────────────────────────────── */
.sc-form .q-section {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.sc-form .q-header {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.sc-form .q-step {
  display: inline-block;
  padding: 4px 10px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
}
.sc-form .q-title-lg {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.015em;
}

.sc-form .q-item {
  margin-bottom: 28px;
}
.sc-form .q-item:last-child { margin-bottom: 0; }
.sc-form .q-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.55;
  word-break: keep-all;
  letter-spacing: -0.005em;
}

/* ── Option Cards (big touch targets) ───────────────────── */
.sc-options {
  display: grid;
  gap: 8px;
}
.sc-options--stack  { grid-template-columns: 1fr; }
.sc-options--grid   { grid-template-columns: repeat(3, 1fr); }
.sc-options--4      { grid-template-columns: repeat(4, 1fr); }

.sc-option {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px 14px 44px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  word-break: keep-all;
}
.sc-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.sc-option::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-light);
  background: var(--bg-card);
  border-radius: 50%;
  transition: all 0.18s;
}
.sc-option::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.sc-option:hover {
  border-color: rgba(184,146,74,0.5);
  background: var(--bg-warm);
  transform: translateY(-1px);
}
.sc-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(184,146,74,0.06);
  box-shadow: 0 6px 16px rgba(184,146,74,0.12);
}
.sc-option:has(input:checked)::before {
  border-color: var(--gold);
  background: var(--gold-muted);
}
.sc-option:has(input:checked)::after {
  transform: translateY(-50%) scale(1);
}
.sc-option:has(input:checked) span {
  color: var(--navy);
  font-weight: 700;
}

/* ── Wizard Navigation ──────────────────────────────────── */
.sc-nav {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}
.sc-nav-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1.5px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-primary);
  transition: all 0.2s;
}
.sc-nav-btn:hover:not(:disabled) {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.sc-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.sc-nav-btn--next {
  flex: 2;
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.sc-nav-btn--next:hover:not(:disabled) {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,146,74,0.28);
}

/* Wizard active state — hide non-active in wizard mode */
.sc-form.question-wizard-ready .q-section:not(.is-active) { display: none; }
.sc-form.question-wizard-ready .q-item:not(.is-active)    { display: none; }

/* ── Complete Note ──────────────────────────────────────── */
.sc-complete {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(21,128,61,0.06);
  border: 1px solid rgba(21,128,61,0.22);
  color: var(--success);
  font-size: 14px;
  font-weight: 700;
  margin-top: 24px;
  word-break: keep-all;
  line-height: 1.55;
}
.sc-complete i { font-size: 18px; flex-shrink: 0; }

/* ── Contact Section ────────────────────────────────────── */
.sc-contact {
  margin-top: 28px;
  padding: clamp(22px, 3.5vw, 30px);
  background: var(--bg-warm);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--gold);
}
.sc-contact-head {
  margin-bottom: 18px;
}
.sc-contact-kicker {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.sc-contact-head strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.sc-contact-desc {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.sc-contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.sc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sc-field--optional { grid-column: span 2; }
.sc-field-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}
.sc-field-label small {
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 2px;
}
.sc-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
}
.sc-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,74,0.15);
}
.sc-input::placeholder { color: var(--text-light); }

.sc-privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}
.sc-privacy input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.sc-privacy strong { color: var(--navy); font-weight: 700; }

.sc-privacy-detail {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.sc-privacy-detail summary {
  cursor: pointer;
  padding: 4px 0;
  color: var(--text-secondary);
  font-weight: 600;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sc-privacy-detail summary::before {
  content: '▸';
  color: var(--gold);
  transition: transform 0.2s;
  display: inline-block;
}
.sc-privacy-detail[open] summary::before { transform: rotate(90deg); }
.sc-privacy-detail summary::-webkit-details-marker { display: none; }
.sc-privacy-detail div {
  margin-top: 8px;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  line-height: 1.65;
}

/* ── Submit Button ──────────────────────────────────────── */
.sc-submit {
  margin-top: 28px;
  text-align: center;
}
.sc-submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}
.sc-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}
.sc-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(184,146,74,0.35);
}
.sc-submit-btn:hover::before { left: 100%; }
.sc-submit-btn:active { transform: translateY(0); }
.sc-submit-btn i { font-size: 18px; }
.sc-submit-note {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  letter-spacing: 0.01em;
}
.sc-submit-note i { color: var(--gold); font-size: 11px; }

/* ── Alternative CTA ────────────────────────────────────── */
.sc-alt-cta {
  margin-top: 36px;
  padding: 24px 26px;
  background: var(--navy);
  border: 1px solid rgba(184,146,74,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.sc-alt-copy {
  flex: 1;
  min-width: 200px;
}
.sc-alt-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.45;
}
.sc-alt-copy span {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
  word-break: keep-all;
}
.sc-alt-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sc-alt-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
  letter-spacing: -0.005em;
}
.sc-alt-btn:hover {
  background: rgba(184,146,74,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}
.sc-alt-btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.sc-alt-btn--primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  border-color: var(--gold-light);
}
.sc-alt-btn i { font-size: 12px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  .sc-hero { padding: 40px 0 28px; }
  .sc-form-wrap { padding: 24px 0 80px; }
  .sc-card { margin-top: -24px; padding: 22px 18px; }

  .sc-options--grid,
  .sc-options--4 { grid-template-columns: 1fr 1fr; }

  .sc-contact { padding: 20px 18px; }
  .sc-contact-fields { grid-template-columns: 1fr; }
  .sc-field--optional { grid-column: span 1; }

  .sc-mode-btn { font-size: 14px; padding: 12px 10px; }
  .sc-mode-btn i { font-size: 13px; }

  .sc-nav-btn { font-size: 14px; padding: 13px 14px; min-height: 50px; }
  .sc-nav-btn--next { flex: 1.6; }

  .sc-submit-btn { font-size: 16px; min-height: 56px; padding: 16px 20px; }

  .sc-option { font-size: 13.5px; padding: 13px 14px 13px 40px; min-height: 50px; }
  .sc-option::before { left: 12px; width: 16px; height: 16px; }
  .sc-option::after  { left: 17px; width: 6px; height: 6px; }

  .sc-alt-cta { padding: 20px 18px; flex-direction: column; align-items: stretch; text-align: left; }
  .sc-alt-actions { width: 100%; }
  .sc-alt-btn { flex: 1; justify-content: center; }
}

@media (max-width: 400px) {
  .sc-hero-title { font-size: 24px; }
  .sc-form .q-label { font-size: 14.5px; }
  .sc-options--4 { grid-template-columns: 1fr 1fr; }
}

/* ── Hide legacy hero markup (not used in new layout) ──── */
.selfcheck-hero-area,
.hero-area.selfcheck-hero-area { display: none !important; }
