    :root {
      --primary: #12816e;
      --primary-light: #e8f5f2;
      --primary-mid: #c2e4dd;
      --primary-dark: #0a5e50;
      --bg: #f7f8fa;
      --white: #ffffff;
      --gray-100: #f2f4f6;
      --gray-200: #e5e8ec;
      --gray-300: #cdd1d6;
      --gray-400: #adb3ba;
      --gray-500: #767e87;
      --gray-600: #5a6169;
      --gray-700: #3d4349;
      --gray-900: #1a1e22;
      --red: #e03131;
      --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
      --shadow-md: 0 4px 16px rgba(0,0,0,0.09);
      --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Nanum Square Neo', sans-serif;
      background: var(--bg);
      color: var(--gray-900);
      min-height: 100vh;
      word-break: keep-all;
      overflow-wrap: break-word;
    }

    /* ════════════════════════════════
       HEADER
    ════════════════════════════════ */
    .site-header {
      background: var(--white);
      border-bottom: 1px solid var(--gray-200);
      box-shadow: var(--shadow-sm);
      position: sticky;
      top: 0;
      z-index: 50;
    }

    .header-inner {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 32px;
      display: flex;
      align-items: center;
      height: 80px;
      gap: 0;
    }

    .logo-img {
      height: 56px;
      object-fit: contain;
      cursor: pointer;
      flex-shrink: 0;
      margin-right: auto;
    }

    .nav-tabs {
      display: flex;
      align-items: stretch;
      height: 80px;
      gap: 4px;
    }

    .nav-tab {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 0 22px;
      font-size: 14px;
      font-weight: 700;
      color: var(--gray-400);
      cursor: pointer;
      border: none;
      background: none;
      font-family: 'Nanum Square Neo', sans-serif;
      position: relative;
      transition: color 0.15s;
      white-space: nowrap;
    }

    .nav-tab::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--primary);
      border-radius: 3px 3px 0 0;
      opacity: 0;
      transition: opacity 0.15s;
    }

    .nav-tab:hover { color: var(--gray-700); }

    .nav-tab.active {
      color: var(--primary);
    }

    .nav-tab.active::after { opacity: 1; }

    .nav-tab-icon { font-size: 16px; }

    /* ════════════════════════════════
       PAGE SECTIONS (tab panels)
    ════════════════════════════════ */
    .page-section { display: none; }
    .page-section.active { display: block; }

    /* ════════════════════════════════
       HERO
    ════════════════════════════════ */
    .hero {
      background: linear-gradient(135deg, var(--primary) 0%, #1aab90 100%);
      color: white;
      text-align: center;
      padding: 48px 24px 44px;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(255,255,255,0.18);
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.08em;
      padding: 4px 14px;
      margin-bottom: 14px;
      color: rgba(255,255,255,0.95);
    }

    .hero h1 {
      font-size: clamp(20px, 4vw, 30px);
      font-weight: 700;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }

    .hero p {
      font-size: 14px;
      color: rgba(255,255,255,0.82);
      font-weight: 400;
      line-height: 1.7;
    }

    /* ════════════════════════════════
       CONTAINER
    ════════════════════════════════ */
    .container {
      max-width: 840px;
      margin: 0 auto;
      padding: 32px 20px 60px;
    }

    /* ════════════════════════════════
       STEP CARD (견적)
    ════════════════════════════════ */
    .step-card {
      background: var(--white);
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--gray-200);
      margin-bottom: 16px;
      overflow: hidden;
      transition: box-shadow 0.2s;
      scroll-margin-top: 96px;
    }

    .step-card:not(.active-card):not(.hidden) {
      opacity: 0.5;
    }

    .step-card.active-card {
      border-color: var(--primary-mid);
      box-shadow: var(--shadow-md);
      opacity: 1;
    }

    .step-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 20px;
      border-bottom: 1px solid var(--gray-100);
    }

    .step-num {
      width: 26px; height: 26px;
      border-radius: 50%;
      background: var(--gray-200);
      color: var(--gray-500);
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.2s;
    }

    .step-card.active-card .step-num {
      background: var(--primary);
      color: white;
    }

    .step-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--gray-700);
    }

    .step-card.active-card .step-title { color: var(--gray-900); }

    .step-body { padding: 20px; }

    /* ════════════════════════════════
       TYPE BUTTONS (견적 STEP1)
    ════════════════════════════════ */
    .type-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .btn-type {
      border: 2px solid var(--gray-200);
      border-radius: 10px;
      background: var(--white);
      cursor: pointer;
      padding: 20px 16px;
      text-align: center;
      transition: all 0.18s;
      font-family: 'Nanum Square Neo', sans-serif;
    }

    .btn-type:hover { border-color: var(--primary); background: var(--primary-light); }

    .btn-type.active {
      border-color: var(--primary);
      background: var(--primary-light);
      box-shadow: 0 0 0 3px rgba(18,129,110,0.12);
    }

    .btn-type-icon { font-size: 28px; display: block; margin-bottom: 8px; }

    .btn-type-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--gray-900);
      display: block;
      margin-bottom: 4px;
    }

    .btn-type.active .btn-type-name { color: var(--primary); }
    .btn-type-desc { font-size: 12px; color: var(--gray-600); font-weight: 400; }

    /* ════════════════════════════════
       APPLICANT BUTTONS
    ════════════════════════════════ */
    .applicant-list { display: flex; flex-direction: column; gap: 8px; }

    .btn-applicant {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 1.5px solid var(--gray-200);
      border-radius: 8px;
      background: var(--white);
      padding: 14px 16px;
      cursor: pointer;
      transition: all 0.18s;
      font-family: 'Nanum Square Neo', sans-serif;
      text-align: left;
    }

    .btn-applicant:hover { border-color: var(--primary); background: var(--primary-light); }

    .btn-applicant.active {
      border-color: var(--primary);
      background: var(--primary-light);
      box-shadow: 0 0 0 2px rgba(18,129,110,0.1);
    }

    .btn-applicant-label { font-size: 14px; font-weight: 400; color: var(--gray-700); }
    .btn-applicant.active .btn-applicant-label { color: var(--primary-dark); }

    .disc-badge {
      font-size: 12px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 100px;
      background: var(--gray-100);
      color: var(--gray-500);
      white-space: nowrap;
      flex-shrink: 0;
      transition: all 0.18s;
    }

    .btn-applicant.active .disc-badge { background: var(--primary); color: white; }

    /* ════════════════════════════════
       PRIORITY TOGGLE
    ════════════════════════════════ */
    .priority-box {
      border: 1.5px solid var(--gray-200);
      border-radius: 10px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      cursor: pointer;
      transition: all 0.18s;
      background: var(--white);
    }

    .priority-box:hover { border-color: var(--primary); background: var(--primary-light); }

    .priority-box.active {
      border-color: var(--primary);
      background: var(--primary-light);
      box-shadow: 0 0 0 2px rgba(18,129,110,0.1);
    }

    .priority-info { flex: 1; }

    .priority-title { font-size: 15px; font-weight: 700; color: var(--gray-700); margin-bottom: 4px; }
    .priority-box.active .priority-title { color: var(--primary-dark); }
    .priority-desc { font-size: 12px; color: var(--gray-600); font-weight: 400; line-height: 1.6; }

    .toggle-track {
      width: 46px; height: 26px;
      border-radius: 13px;
      background: var(--gray-300);
      position: relative;
      flex-shrink: 0;
      transition: background 0.2s;
    }

    .priority-box.active .toggle-track { background: var(--primary); }

    .toggle-thumb {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: white;
      box-shadow: 0 1px 3px rgba(0,0,0,0.2);
      position: absolute;
      top: 3px; left: 3px;
      transition: left 0.2s;
    }

    .priority-box.active .toggle-thumb { left: 23px; }

    /* ════════════════════════════════
       TIP TOOLTIP
    ════════════════════════════════ */
    .tip-btn {
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 6px;
      font-family: 'Nanum Square Neo', sans-serif;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      cursor: pointer;
      letter-spacing: 0.03em;
      transition: background 0.15s, transform 0.15s;
      flex-shrink: 0;
    }
    .tip-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

    .tip-balloon {
      display: none;
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      background: var(--gray-900);
      color: #fff;
      font-size: 12px;
      font-weight: 400;
      line-height: 1.8;
      padding: 12px 16px;
      border-radius: 10px;
      width: 280px;
      box-shadow: 0 6px 24px rgba(0,0,0,0.22);
      z-index: 100;
      word-break: keep-all;
    }
    .tip-balloon.show { display: block; animation: fadeUp 0.2s ease; }

    .tip-balloon-arrow {
      position: absolute;
      top: -7px;
      left: 50%;
      transform: translateX(-50%);
      width: 0; height: 0;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 7px solid var(--gray-900);
    }

    /* ════════════════════════════════
       RESULT PANEL
    ════════════════════════════════ */
    .result-panel {
      background: var(--white);
      border-radius: 12px;
      border: 1.5px solid var(--primary-mid);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .result-panel-header {
      background: var(--primary);
      padding: 16px 22px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .result-panel-title { font-size: 15px; font-weight: 700; color: white; }

    .result-panel-body { padding: 20px 22px; }

    .result-group {
      border: 1px solid var(--gray-100);
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .result-group-title {
      background: var(--gray-100);
      padding: 7px 14px;
      font-size: 12px;
      font-weight: 700;
      color: var(--gray-500);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .result-group-title.green { background: var(--primary-light); color: var(--primary-dark); }

    .result-group-rows { padding: 14px; }

    .result-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid var(--gray-100);
      gap: 12px;
    }

    .result-row:last-child { border-bottom: none; }

    .result-label {
      font-size: 13px;
      font-weight: 400;
      color: var(--gray-600);
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    .tag-discount {
      font-size: 12px; font-weight: 700;
      padding: 2px 7px; border-radius: 4px;
      background: #e8f0fe; color: #3b5bdb;
    }

    .tag-no-discount {
      font-size: 12px; font-weight: 700;
      padding: 2px 7px; border-radius: 4px;
      background: var(--gray-100); color: var(--gray-600);
    }

    .result-value { text-align: right; }
    .result-original { font-size: 12px; color: var(--gray-300); text-decoration: line-through; margin-bottom: 1px; }
    .result-amount { font-size: 15px; font-weight: 700; color: var(--gray-900); }
    .result-sub-note { font-size: 12px; color: var(--gray-600); margin-top: 1px; }

    .result-total-box {
      background: var(--primary-light);
      border-radius: 10px;
      padding: 18px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 14px;
      gap: 12px;
    }

    .total-label { font-size: 12px; font-weight: 700; color: var(--primary-dark); letter-spacing: 0.05em; margin-bottom: 4px; white-space: nowrap; }
    .total-desc { font-size: 12px; font-weight: 400; color: var(--primary); line-height: 1.6; }
    .total-amount-big { font-size: clamp(24px, 5vw, 36px); font-weight: 800; color: var(--primary); white-space: nowrap; }

    .notice {
      margin-top: 14px;
      background: var(--gray-100);
      border-radius: 8px;
      padding: 12px 14px;
      font-size: 12px;
      color: var(--gray-600);
      font-weight: 400;
      line-height: 1.9;
    }

    /* ════════════════════════════════
       CONSULT CTA
    ════════════════════════════════ */
    .consult-cta {
      background: var(--white);
      border-top: 1px solid var(--gray-200);
      padding: 30px 20px 44px;
      text-align: center;
    }

    .consult-cta p {
      font-size: 14px;
      color: var(--gray-600);
      font-weight: 400;
      margin-bottom: 18px;
    }

    .btn-consult {
      display: inline-block;
      background: var(--primary);
      color: white;
      font-family: 'Nanum Square Neo', sans-serif;
      font-size: 18px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      padding: 20px 64px;
      border-radius: 12px;
      box-shadow: 0 6px 24px rgba(18,129,110,0.35);
      letter-spacing: -0.01em;
      transition: all 0.18s;
      width: 100%;
      max-width: 400px;
    }

    .btn-consult:hover {
      background: #0f6e5c;
      box-shadow: 0 10px 32px rgba(18,129,110,0.45);
      transform: translateY(-2px);
    }

    /* ════════════════════════════════
       CONSULTATION PAGE
    ════════════════════════════════ */

    /* 출원 유형 선택 (상담 탭) */
    .consult-type-select {
      max-width: 840px;
      margin: 0 auto;
      padding: 28px 20px 0;
    }

    .consult-type-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .btn-ctype {
      border: 2px solid var(--gray-200);
      border-radius: 10px;
      background: var(--white);
      cursor: pointer;
      padding: 22px 16px;
      text-align: center;
      transition: all 0.18s;
      font-family: 'Nanum Square Neo', sans-serif;
      box-shadow: var(--shadow-sm);
    }

    .btn-ctype:hover { border-color: var(--primary); background: var(--primary-light); }

    .btn-ctype.active {
      border-color: var(--primary);
      background: var(--primary-light);
      box-shadow: 0 0 0 3px rgba(18,129,110,0.12);
    }

    .btn-ctype-icon { font-size: 26px; display: block; margin-bottom: 8px; }
    .btn-ctype-name { font-size: 17px; font-weight: 700; color: var(--gray-900); display: block; margin-bottom: 3px; }
    .btn-ctype.active .btn-ctype-name { color: var(--primary); }
    .btn-ctype-desc { font-size: 12px; color: var(--gray-600); font-weight: 400; }

    /* SECTION CARD (상담) */
    .section-card {
      background: var(--white);
      border-radius: 12px;
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow-sm);
      margin-bottom: 16px;
      overflow: hidden;
    }

    .section-header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 20px;
      border-bottom: 1px solid var(--gray-100);
      background: var(--gray-100);
    }

    .section-num {
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--primary);
      color: white;
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .section-title { font-size: 14px; font-weight: 700; color: var(--gray-700); }

    .section-body { padding: 20px; }

    .field-group { display: flex; flex-direction: column; gap: 14px; }

    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

    .field-item { display: flex; flex-direction: column; gap: 6px; }

    label {
      font-size: 12px;
      font-weight: 700;
      color: var(--gray-600);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .required { color: var(--red); font-size: 13px; line-height: 1; }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="password"],
    textarea {
      font-family: 'Nanum Square Neo', sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: var(--gray-900);
      border: 1.5px solid var(--gray-200);
      border-radius: 8px;
      padding: 12px 14px;
      outline: none;
      transition: border-color 0.15s, box-shadow 0.15s;
      width: 100%;
      background: var(--white);
    }

    input:focus, textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(18,129,110,0.1);
    }

    input::placeholder, textarea::placeholder { color: var(--gray-300); }

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

    /* CHIPS */
    .chip-group { display: flex; flex-wrap: wrap; gap: 8px; }

    .chip {
      border: 1.5px solid var(--gray-200);
      border-radius: 100px;
      padding: 8px 18px;
      font-size: 13px;
      font-weight: 400;
      color: var(--gray-500);
      cursor: pointer;
      transition: all 0.15s;
      background: var(--white);
      font-family: 'Nanum Square Neo', sans-serif;
    }

    .chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
    .chip.active { border-color: var(--primary); background: var(--primary); color: white; font-weight: 700; }

    /* FILE UPLOAD */
    .file-upload-area {
      border: 2px dashed var(--gray-200);
      border-radius: 10px;
      padding: 26px 20px;
      text-align: center;
      cursor: pointer;
      transition: all 0.18s;
      background: var(--gray-100);
      position: relative;
    }

    .file-upload-area:hover { border-color: var(--primary); background: var(--primary-light); }
    .file-upload-area.drag-over { border-color: var(--primary); background: var(--primary-light); }

    .file-upload-area input[type="file"] {
      position: absolute; inset: 0;
      opacity: 0; cursor: pointer;
      width: 100%; height: 100%;
    }

    .file-upload-icon { font-size: 26px; margin-bottom: 8px; }

    .file-upload-text {
      font-size: 13px; color: var(--gray-500); font-weight: 400; line-height: 1.7;
    }

    .file-upload-text strong { color: var(--primary); font-weight: 700; }

    .file-upload-ext {
      margin-top: 10px;
      padding: 8px 12px;
      background: var(--white);
      border: 1px dashed var(--gray-200);
      border-radius: 6px;
      font-size: 11px; color: var(--gray-500);
      line-height: 1.6; word-break: break-all;
      pointer-events: none;
    }

    .file-list {
      margin-top: 12px;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 10px;
    }

    .file-card {
      position: relative;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 10px;
      padding: 10px;
      display: flex; flex-direction: column;
      transition: border-color 0.15s, box-shadow 0.15s;
    }
    .file-card:hover {
      border-color: var(--primary-mid);
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .file-card-thumb {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 8px;
      overflow: hidden;
      background: var(--gray-100);
      border: 1px solid var(--gray-200);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 8px;
    }
    .file-card.is-image .file-card-thumb { cursor: zoom-in; }
    .file-card-thumb img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
    }
    .file-card-zoom {
      position: absolute;
      right: 6px; bottom: 6px;
      background: rgba(0,0,0,0.55);
      color: #fff;
      font-size: 12px;
      padding: 3px 8px;
      border-radius: 100px;
      opacity: 0; transition: opacity 0.15s;
      pointer-events: none;
    }
    .file-card.is-image:hover .file-card-zoom { opacity: 1; }

    .file-card-thumb-doc {
      flex-direction: column; gap: 4px;
      background: var(--gray-100);
    }
    .file-card-doc-icon { font-size: 36px; line-height: 1; }
    .file-card-doc-ext {
      font-size: 11px; font-weight: 700;
      color: var(--gray-500);
      letter-spacing: 0.04em;
    }

    .file-card-name {
      font-size: 12px; font-weight: 700; color: var(--gray-700);
      line-height: 1.4;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      word-break: break-all;
      min-height: 2.8em;
    }
    .file-card-size {
      font-size: 11px;
      color: var(--gray-500);
      margin-top: 2px;
    }
    .file-card-dl {
      margin-top: 8px;
      text-align: center;
      font-size: 11px;
      font-weight: 700;
      color: var(--primary-dark);
      background: var(--primary-light);
      padding: 6px 8px;
      border-radius: 6px;
      transition: background 0.15s;
    }
    .file-card:hover .file-card-dl { background: var(--primary-mid); }

    .file-card-remove {
      position: absolute;
      top: 4px; right: 4px;
      width: 22px; height: 22px;
      border: 0; border-radius: 50%;
      background: rgba(0,0,0,0.55); color: #fff;
      font-size: 14px; line-height: 1; cursor: pointer;
      font-family: sans-serif;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.15s;
      z-index: 2;
    }
    .file-card-remove:hover { background: var(--red); }

    @media (max-width: 640px) {
      .file-list { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px; }
      .file-card { padding: 8px; }
      .file-card-doc-icon { font-size: 30px; }
      .file-card-name { font-size: 11px; min-height: 2.6em; }
    }

    /* SUBMIT */
    .submit-wrap { margin-top: 24px; text-align: center; }

    .btn-submit {
      display: inline-block;
      background: var(--primary); color: white;
      font-family: 'Nanum Square Neo', sans-serif;
      font-size: 18px; font-weight: 700;
      border: none; cursor: pointer;
      padding: 20px 72px;
      border-radius: 12px;
      box-shadow: 0 6px 24px rgba(18,129,110,0.35);
      letter-spacing: -0.01em;
      transition: all 0.18s;
      width: 100%; max-width: 400px;
    }

    .btn-submit:hover {
      background: #0f6e5c;
      box-shadow: 0 10px 32px rgba(18,129,110,0.45);
      transform: translateY(-2px);
    }

    /* ════════════════════════════════
       MODAL
    ════════════════════════════════ */
    .modal-overlay {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 200;
      align-items: center; justify-content: center;
    }

    .modal-overlay.show { display: flex; }

    .modal {
      background: var(--white); border-radius: 16px;
      padding: 40px 36px; text-align: center;
      max-width: 360px; width: 90%;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
      animation: popIn 0.25s ease;
    }

    .modal-icon { font-size: 48px; margin-bottom: 14px; }
    .modal-title { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
    .modal-desc { font-size: 13px; color: var(--gray-500); font-weight: 400; line-height: 1.8; margin-bottom: 24px; }

    .modal-btn {
      background: var(--primary); color: white; border: none;
      border-radius: 8px; font-family: 'Nanum Square Neo', sans-serif;
      font-size: 14px; font-weight: 700; padding: 12px 32px;
      cursor: pointer; transition: background 0.15s;
    }

    .modal-btn:hover { background: #0f6e5c; }

    /* ════════════════════════════════
       CONSULT CTA STICKY (비용견적)
    ════════════════════════════════ */
    .consult-cta-sticky {
      position: sticky;
      bottom: 0;
      z-index: 30;
    }

    /* ════════════════════════════════
       STATUS DETAIL CLOSE BUTTON
    ════════════════════════════════ */
    .status-detail-close {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 18px;
      color: var(--gray-600);
      font-family: sans-serif;
      padding: 4px 8px;
      border-radius: 6px;
      transition: background 0.15s, color 0.15s;
    }
    .status-detail-close:hover {
      background: var(--gray-100);
      color: var(--gray-900);
    }

    /* ════════════════════════════════
       CUSTOM CHECKBOX
    ════════════════════════════════ */
    .custom-checkbox {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      font-size: 13px;
      font-weight: 700;
      color: var(--gray-700);
      user-select: none;
    }
    .custom-checkbox input[type="checkbox"] {
      display: none;
    }
    .custom-checkbox .check-mark {
      width: 20px; height: 20px;
      border: 2px solid var(--gray-300);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.15s;
      background: var(--white);
    }
    .custom-checkbox .check-mark::after {
      content: '';
      width: 6px; height: 10px;
      border: solid white;
      border-width: 0 2.5px 2.5px 0;
      transform: rotate(45deg) scale(0);
      transition: transform 0.15s;
    }
    .custom-checkbox input[type="checkbox"]:checked + .check-mark {
      background: var(--primary);
      border-color: var(--primary);
    }
    .custom-checkbox input[type="checkbox"]:checked + .check-mark::after {
      transform: rotate(45deg) scale(1);
    }

    /* ════════════════════════════════
       UTILS
    ════════════════════════════════ */
    .hidden { display: none !important; }

    /* ════════════════════════════════
       상담현황 진행 상태 스텝
    ════════════════════════════════ */
    .status-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .status-step-dot {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--gray-200);
      color: var(--gray-400);
      font-size: 13px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }
    .status-step-dot.active-step {
      background: var(--primary);
      color: white;
    }
    .status-step-dot.done-step {
      background: var(--primary-mid);
      color: var(--primary-dark);
    }
    .status-step-label {
      font-size: 12px;
      font-weight: 700;
      color: var(--gray-600);
    }
    .status-step-dot.active-step + .status-step-label,
    .status-step:has(.active-step) .status-step-label {
      color: var(--primary);
    }
    .status-step-line {
      width: 60px;
      height: 2px;
      background: var(--gray-200);
      margin: 0 8px;
      margin-bottom: 20px;
      transition: background 0.3s;
    }
    .status-step-line.active-line {
      background: var(--primary-mid);
    }

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

    @keyframes popIn {
      from { opacity: 0; transform: scale(0.92); }
      to   { opacity: 1; transform: scale(1); }
    }

    .fade-in { animation: fadeUp 0.3s ease forwards; }

    /* ── 햄버거 버튼 (모바일 전용) ── */
    .hamburger-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      margin-left: auto;
      border-radius: 6px;
      transition: background 0.15s;
    }
    .hamburger-btn:hover { background: var(--gray-100); }
    .hamburger-btn span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--gray-700);
      border-radius: 2px;
      transition: all 0.25s ease;
      transform-origin: center;
    }
    .hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── 모바일 드롭다운 메뉴 ── */
    .mobile-nav {
      display: none;
      flex-direction: column;
      background: var(--white);
      border-top: 1px solid var(--gray-200);
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      position: absolute;
      top: 80px;
      left: 0;
      right: 0;
      z-index: 49;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav-tab {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px 24px;
      font-size: 15px;
      font-weight: 700;
      color: var(--gray-500);
      cursor: pointer;
      border: none;
      background: none;
      font-family: 'Nanum Square Neo', sans-serif;
      text-align: left;
      border-bottom: 1px solid var(--gray-100);
      transition: background 0.12s, color 0.12s;
      width: 100%;
    }
    .mobile-nav-tab:last-child { border-bottom: none; }
    .mobile-nav-tab:hover { background: var(--gray-50); color: var(--gray-700); }
    .mobile-nav-tab.active { color: var(--primary); background: #f0f4ff; }

    .mobile-only { display: none; }

    @media (max-width: 640px) {
      .mobile-only { display: inline; }
      .site-header { position: sticky; top: 0; z-index: 50; }
      .header-inner { padding: 0 16px; gap: 0; }
      .logo-img { margin-right: 0; height: 42px; }
      .nav-tabs { display: none; }
      .hamburger-btn { display: flex; }
      .field-row { grid-template-columns: 1fr; }
      .btn-submit, .btn-consult { padding: 18px 24px; font-size: 16px; }
      .type-grid, .consult-type-grid { grid-template-columns: 1fr 1fr; }
      /* 상담현황 카드 1열 */
      .home-status-wrap { flex-direction: column; }
      /* 터치 타겟 최소 44px */
      .chip { min-height: 44px; display: inline-flex; align-items: center; }
      .btn-applicant { min-height: 44px; }
      .home-field-item { min-height: 44px; }

      /* 모바일 폼 input — 터치하기 편한 사이즈 + iOS auto-zoom 방지(16px) */
      input[type="text"],
      input[type="tel"],
      input[type="email"],
      input[type="password"],
      input[type="number"],
      input[type="search"],
      textarea {
        font-size: 16px !important;
        padding: 14px 16px !important;
        border-radius: 10px !important;
        min-height: 52px;
      }
      textarea { min-height: 120px; }
      label { font-size: 13px; }
      .field-group { gap: 18px; }
      .field-item { gap: 8px; }
    }
    /* ════════════════════════════════
       상담신청 현황
    ════════════════════════════════ */
    .status-section {
      margin-top: 32px;
      background: var(--white);
      border-radius: 12px;
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .status-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 20px;
      background: var(--gray-100);
      border-bottom: 1px solid var(--gray-200);
    }

    .status-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--gray-700);
    }

    .status-count {
      font-size: 12px;
      font-weight: 700;
      color: var(--white);
      background: var(--primary);
      padding: 2px 10px;
      border-radius: 100px;
    }

    .status-list {
      padding: 8px 0;
      max-height: 320px;
      overflow-y: auto;
    }

    .status-empty {
      text-align: center;
      padding: 28px 20px;
      font-size: 13px;
      color: var(--gray-600);
      font-weight: 400;
    }

    .status-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 20px;
      border-bottom: 1px solid var(--gray-100);
      gap: 12px;
      animation: fadeUp 0.3s ease;
    }

    .status-item:last-child { border-bottom: none; }

    .status-item-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .status-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--primary-light);
      border: 1.5px solid var(--primary-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: var(--primary-dark);
      flex-shrink: 0;
    }

    .status-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--gray-900);
    }

    .status-time {
      font-size: 12px;
      color: var(--gray-600);
      font-weight: 400;
      margin-top: 2px;
    }

    .status-type-badge {
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .status-type-badge.new {
      background: #fff4e6;
      color: #e67700;
      border: 1px solid #ffd8a8;
    }

    .status-type-badge.reviewing {
      background: #e7f5ff;
      color: #1971c2;
      border: 1px solid #a5d8ff;
    }

    .status-type-badge.done {
      background: #ebfbee;
      color: #2f9e44;
      border: 1px solid #b2f2bb;
    }


    /* ════════════════════════════════
       HOME PAGE
    ════════════════════════════════ */

    /* HOME 상담신청 현황 */
    .home-status-wrap {
      max-width: 760px;
      margin: 0 auto;
      padding: 24px 20px 0;
      display: flex;
      gap: 14px;
    }
    .home-status-col {
      flex: 1;
      min-width: 0;
    }
    .home-status-col .status-section {
      margin-top: 0;
      border-radius: 12px;
    }

    /* HERO SLIDER */
    .hero-slider-wrap {
      position: relative;
      overflow: hidden;
    }

    .hero-slider-track {
      display: flex;
      transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
      will-change: transform;
    }

    .hero-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 10;
    }

    .hero-dot {
      width: 8px; height: 8px;
      border-radius: 4px;
      background: rgba(255,255,255,0.35);
      cursor: pointer;
      border: none;
      padding: 0;
      transition: all 0.25s;
    }

    .hero-dot.active {
      background: white;
      width: 24px;
    }

    .hero-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      border: 1.5px solid rgba(255,255,255,0.45);
      color: white;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.18s;
      font-family: sans-serif;
    }

    .hero-arrow:hover { background: rgba(255,255,255,0.5); }
    .hero-arrow.prev { left: 18px; }
    .hero-arrow.next { right: 18px; }

    /* HERO */
    .home-hero {
      position: relative;
      min-height: 560px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 0;
      flex-shrink: 0;
      width: 100%;
    }
    .home-hero-inner {
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
      padding: 60px 32px;
      display: flex;
      align-items: stretch;
      gap: 40px;
      position: relative;
      z-index: 2;
    }

    .home-hero-content {
      position: relative;
      flex: 1;
      max-width: 560px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .home-hero-1 {
      background: linear-gradient(135deg, #0a3d1f 0%, #1a7a3a 55%, #4caf50 100%);
    }

    .home-hero-brand {
      background: linear-gradient(135deg, #050e0c 0%, #0a3d30 50%, #0f5c48 100%);
    }

    .home-hero-brand .home-hero-bg {
      background-image:
        radial-gradient(circle at 80% 20%, rgba(168,237,218,0.07) 0%, transparent 50%),
        radial-gradient(circle at 15% 75%, rgba(0,0,0,0.3) 0%, transparent 40%);
    }

    .home-hero-2 {
      background: linear-gradient(135deg, #1a0a14 0%, #5a1a2e 50%, #8a2540 100%);
    }

    .home-hero-2 .home-hero-bg::before {
      background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    /* 알림 배지 (2번 슬라이드) */
    .hero-alert-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(180,40,80,0.25);
      border: 1px solid rgba(220,120,150,0.55);
      color: #ffd0dd;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 22px;
    }

    .hero-alert-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #e85a7a;
      animation: blink 1.2s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.25; }
    }

    /* 수임 현황 미터 */
    .intake-meter-wrap {
      margin: 28px 0 32px;
      max-width: 480px;
    }

    .intake-meter-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 10px;
    }

    .intake-meter-label {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      font-weight: 400;
    }

    .intake-meter-count {
      font-size: 20px;
      font-weight: 800;
      color: #ffd0dd;
    }

    .intake-meter-count span {
      font-size: 13px;
      font-weight: 400;
      color: rgba(255,255,255,0.5);
      margin-left: 2px;
    }

    .intake-bar-bg {
      height: 10px;
      background: rgba(255,255,255,0.12);
      border-radius: 5px;
      overflow: hidden;
    }

    .intake-bar-fill {
      height: 100%;
      border-radius: 5px;
      background: linear-gradient(90deg, #c43060, #e85a7a);
      width: 0%;
      transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .intake-bar-marker {
      position: relative;
      margin-top: 6px;
      height: 14px;
    }

    .intake-marker-line {
      position: absolute;
      right: 0;
      top: 0;
      width: 1.5px;
      height: 10px;
      background: rgba(255,255,255,0.35);
    }

    .intake-marker-text {
      position: absolute;
      right: 0;
      top: 12px;
      font-size: 10px;
      color: rgba(255,255,255,0.45);
      transform: translateX(50%);
      white-space: nowrap;
    }

    /* 안내 박스 카드 (2번 슬라이드 우측) */
    .hero-notice-card {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,200,80,0.3);
      border-radius: 14px;
      padding: 24px 22px;
      width: 280px;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
    }

    .hn-icon { font-size: 28px; margin-bottom: 12px; }

    .hn-title {
      font-size: 14px;
      font-weight: 700;
      color: #ffd280;
      margin-bottom: 14px;
    }

    .hn-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 10px;
      font-size: 12px;
      font-weight: 400;
      color: rgba(255,255,255,0.78);
      line-height: 1.6;
    }

    .hn-bullet {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: #ff8c00;
      margin-top: 6px;
      flex-shrink: 0;
    }

    .home-hero-bg {
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0,0,0,0.15) 0%, transparent 40%);
    }

    /* dot pattern */
    .home-hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .home-hero-eyebrow {
      display: inline-block;
      align-self: flex-start;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      color: rgba(255,255,255,0.95);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 22px;
    }

    .home-hero-title {
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 900;
      color: white;
      line-height: 1.45;
      letter-spacing: -0.03em;
      margin-bottom: 18px;
    }

    .home-hero-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.78);
      font-weight: 400;
      line-height: 1.75;
      margin-bottom: 34px;
    }

    .home-hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 44px;
    }

    .home-btn-primary {
      background: white;
      color: var(--primary-dark);
      font-family: 'Nanum Square Neo', sans-serif;
      font-size: 15px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      padding: 15px 28px;
      border-radius: 10px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
      transition: all 0.18s;
      white-space: nowrap;
    }

    .home-btn-primary:hover {
      background: #f0faf8;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    }

    .home-btn-secondary {
      background: rgba(255,255,255,0.15);
      color: white;
      font-family: 'Nanum Square Neo', sans-serif;
      font-size: 15px;
      font-weight: 700;
      border: 1.5px solid rgba(255,255,255,0.45);
      cursor: pointer;
      padding: 15px 28px;
      border-radius: 10px;
      transition: all 0.18s;
      white-space: nowrap;
    }

    .home-btn-secondary:hover {
      background: rgba(255,255,255,0.25);
      transform: translateY(-2px);
    }

    .home-btn-ghost {
      background: transparent;
      color: white;
      font-family: 'Nanum Square Neo', sans-serif;
      font-size: 15px;
      font-weight: 700;
      border: 1.5px solid rgba(255,255,255,0.5);
      cursor: pointer;
      padding: 14px 28px;
      border-radius: 10px;
      transition: all 0.18s;
    }

    .home-btn-ghost:hover { background: rgba(255,255,255,0.1); }

    .home-hero-stats {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .home-stat-num {
      font-size: 28px;
      font-weight: 800;
      color: white;
      line-height: 1;
    }

    .home-stat-num span { font-size: 18px; }

    .home-stat-label {
      font-size: 12px;
      color: rgba(255,255,255,0.65);
      font-weight: 400;
      margin-top: 4px;
    }

    .home-stat-divider {
      width: 1px;
      height: 36px;
      background: rgba(255,255,255,0.25);
    }

    /* floating cards */
    .home-hero-visual {
      position: relative;
      width: 280px;
      flex-shrink: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 14px;
      justify-content: center;
      padding-top: 18px;
    }

    .hero-card-float {
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 14px;
      padding: 16px 18px;
      display: flex;
      align-items: center;
      gap: 14px;
      color: white;
      animation: floatCard 3s ease-in-out infinite;
    }

    .hero-card-2 { animation-delay: 0.8s; }
    .hero-card-3 { animation-delay: 1.6s; }

    @keyframes floatCard {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-5px); }
    }

    .hc-icon { font-size: 24px; width: 28px; text-align: center; flex-shrink: 0; }
    .hc-title { font-size: 13px; font-weight: 700; color: white; }
    .hc-sub { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; }

    /* SECTIONS */
    .home-section {
      padding: 72px 40px;
    }

    .home-section-gray {
      background: var(--gray-100);
    }

    .home-section-inner {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .section-cta-btns {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 36px;
      flex-wrap: wrap;
    }

    .section-btn-primary {
      background: var(--primary);
      color: white;
      font-family: 'Nanum Square Neo', sans-serif;
      font-size: 14px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      padding: 13px 28px;
      border-radius: 8px;
      box-shadow: 0 4px 14px rgba(18,129,110,0.3);
      transition: all 0.18s;
      white-space: nowrap;
    }

    .section-btn-primary:hover {
      background: #0f6e5c;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(18,129,110,0.4);
    }

    .section-btn-secondary {
      background: white;
      color: var(--primary);
      font-family: 'Nanum Square Neo', sans-serif;
      font-size: 14px;
      font-weight: 700;
      border: 1.5px solid var(--primary-mid);
      cursor: pointer;
      padding: 13px 28px;
      border-radius: 8px;
      transition: all 0.18s;
      white-space: nowrap;
    }

    .section-btn-secondary:hover {
      background: var(--primary-light);
      border-color: var(--primary);
      transform: translateY(-2px);
    }

    .home-section-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--primary);
      background: var(--primary-light);
      padding: 4px 14px;
      border-radius: 100px;
      margin-bottom: 14px;
    }

    .home-section-title {
      font-size: clamp(22px, 3.5vw, 32px);
      font-weight: 800;
      color: var(--gray-900);
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .home-section-sub {
      font-size: 14px;
      color: var(--gray-600);
      font-weight: 400;
      margin-bottom: 44px;
    }

    /* FEATURES */
    .home-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .home-feature-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 14px;
      padding: 28px 22px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .home-feature-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }

    .hf-icon-wrap {
      width: 44px; height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin: 0 auto 14px;
    }

    .hf-icon-wrap.green  { background: #e8f5f2; }
    .hf-icon-wrap.blue   { background: #e8f0fe; }
    .hf-icon-wrap.orange { background: #fff4e6; }
    .hf-icon-wrap.purple { background: #f3f0ff; }
    .hf-icon-wrap.teal   { background: #e3fafc; }
    .hf-icon-wrap.red    { background: #fff5f5; }

    .hf-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--gray-900);
      margin-bottom: 8px;
    }

    .hf-desc {
      font-size: 13px;
      color: var(--gray-600);
      font-weight: 400;
      line-height: 1.75;
    }

    /* PROCESS */
    .home-process {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
      align-items: center;
      gap: 0;
    }

    .home-process-item {
      text-align: center;
      padding: 28px 16px;
      background: var(--white);
      border-radius: 14px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--gray-200);
      position: relative;
      height: 100%;
      box-sizing: border-box;
    }

    .hp-num {
      font-size: 12px;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: 0.05em;
      margin-bottom: 10px;
    }

    .hp-icon { font-size: 30px; margin-bottom: 10px; }

    .hp-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--gray-900);
      margin-bottom: 8px;
    }

    .hp-desc {
      font-size: 12px;
      color: var(--gray-600);
      font-weight: 400;
      line-height: 1.7;
    }

    .home-process-arrow {
      font-size: 20px;
      color: var(--primary-mid);
      padding: 0 8px;
      margin-top: 52px;
      flex-shrink: 0;
    }

    /* FIELDS */
    .home-fields {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .home-field-item {
      background: var(--white);
      border: 1.5px solid var(--gray-200);
      border-radius: 12px;
      padding: 20px 28px;
      text-align: center;
      min-width: 120px;
      box-shadow: var(--shadow-sm);
      transition: all 0.18s;
      cursor: default;
    }

    .home-field-item:hover {
      border-color: var(--primary);
      background: var(--primary-light);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .hfi-icon { font-size: 28px; margin-bottom: 8px; }
    .hfi-name { font-size: 13px; font-weight: 700; color: var(--gray-700); }

    /* CTA SECTION */
    .home-cta-section {
      background: linear-gradient(135deg, #0a4f42 0%, #12816e 100%);
      padding: 64px 40px;
    }

    .home-cta-inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 28px;
    }

    .home-cta-title {
      font-size: clamp(22px, 3vw, 30px);
      font-weight: 800;
      color: white;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }

    .home-cta-sub {
      font-size: 14px;
      color: rgba(255,255,255,0.72);
      font-weight: 400;
    }

    .home-cta-btns {
      display: flex;
      gap: 12px;
      flex-shrink: 0;
      flex-wrap: wrap;
    }

    /* FOOTER */
    .home-footer {
      background: #111;
      padding: 44px 40px 32px;
    }

    .home-footer-inner { max-width: 860px; margin: 0 auto; }

    .home-footer-logo {
      font-size: 20px;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .home-footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px 40px;
      margin-bottom: 20px;
    }

    .home-footer-row {
      display: flex;
      gap: 6px;
      font-size: 12px;
      line-height: 1.7;
      color: #666;
    }

    .home-footer-row .ft-label {
      color: #444;
      font-weight: 700;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .home-footer-row .ft-val {
      color: #666;
      font-weight: 400;
    }

    .home-footer-divider {
      border: none;
      border-top: 1px solid #222;
      margin: 18px 0 14px;
    }

    .home-footer-copy {
      font-size: 12px;
      color: #444;
      font-weight: 400;
      line-height: 1.8;
      text-align: center;
    }

    /* ── 성공 사례 섹션 ── */
    .success-cases {
      position: relative;
      overflow: hidden;
      background: #eef3f1;
    }
    .success-cases::before,
    .success-cases::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      background: rgba(18,129,110,0.04);
      pointer-events: none;
    }
    .success-cases::before { width: 300px; height: 300px; top: -80px; right: -60px; }
    .success-cases::after { width: 200px; height: 200px; bottom: -40px; left: -40px; }

    .success-cases-link {
      color: var(--gray-500);
      font-size: 13px;
      text-decoration: none;
      cursor: pointer;
      transition: color 0.18s;
      margin-bottom: 32px;
    }
    .success-cases-link:hover { color: var(--primary); }

    .success-carousel-wrap {
      position: relative;
      margin-top: 0;
    }
    .success-carousel-viewport {
      overflow: hidden;
    }
    .success-carousel-track {
      display: flex;
      gap: 20px;
      transition: transform 0.4s ease;
    }
    .success-card {
      flex: 0 0 calc((100% - 40px) / 3);
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 14px;
      padding: 24px 22px 18px;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .success-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }
    .success-card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
    }
    .success-card-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      flex: 1;
      min-width: 0;
    }
    .success-card-logo {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 700;
      color: var(--gray-600);
    }
    .success-card-logo svg {
      width: 20px;
      height: 20px;
    }
    .success-card-badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 100px;
      letter-spacing: 0.02em;
    }
    .success-card-badge.green { background: #f3f0ff; color: #6741d9; }
    .success-card-badge.dark  { background: #e8f5f2; color: #0a5e50; }
    .success-card-badge.blue  { background: #e8f5f2; color: #0a5e50; }

    .success-card-name {
      font-size: 16px;
      font-weight: 800;
      color: var(--gray-900);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      max-width: 100%;
    }
    .success-card-category {
      font-size: 12px;
      color: var(--gray-500);
    }
    .success-card-cert {
      width: 100px;
      height: 100px;
      flex-shrink: 0;
      background: var(--gray-100);
      border: 1px dashed var(--gray-300);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--gray-400);
      overflow: hidden;
    }
    .success-card-cert img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .success-card-date {
      text-align: left;
      font-size: 12px;
      color: var(--gray-400);
      margin-top: auto;
      padding-top: 14px;
    }

    .success-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow-md);
      cursor: pointer;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: var(--gray-600);
      transition: all 0.18s;
    }
    .success-arrow:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-50%) scale(1.05);
    }
    .success-arrow.disabled {
      opacity: 0.3;
      pointer-events: none;
    }
    .success-arrow-left  { left: -20px; }
    .success-arrow-right { right: -20px; }

    .success-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }
    .success-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gray-300);
      border: none;
      cursor: pointer;
      transition: background 0.2s;
      padding: 0;
    }
    .success-dot.active {
      background: var(--primary);
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .home-hero { min-height: auto; }
      .home-hero-inner { flex-direction: column; align-items: center; padding: 48px 24px; }
      .home-hero-content { max-width: 100%; justify-content: flex-start; }
      .home-hero-visual { width: 100%; }
      .hero-notice-card { width: 100%; }
      .intake-meter-wrap { max-width: 100%; }
      .home-features { grid-template-columns: 1fr 1fr; }
      .home-fields { grid-template-columns: repeat(2, 1fr); }
      .home-process { grid-template-columns: 1fr; gap: 14px; }
      .home-process-arrow { display: none; }
      .home-process-item { height: auto; }
      .home-section { padding: 52px 24px; }
      .home-cta-inner { gap: 20px; }
      .home-cta-btns { justify-content: center; }
      .hero-arrow { display: none; }
      .hero-card-float { max-width: 280px; }
      .success-card { flex: 0 0 100%; }
      .success-carousel-wrap { padding: 0 36px; }
      .success-arrow-left { left: 0; }
      .success-arrow-right { right: 0; }
      .success-arrow { width: 32px; height: 32px; font-size: 14px; }
    }

    @media (max-width: 480px) {
      .home-features { grid-template-columns: 1fr; }
      .home-hero-stats { gap: 16px; }
      .home-footer { padding: 28px 20px; }
      .home-footer-grid { grid-template-columns: 1fr; }
      .result-total-box { flex-direction: column; align-items: flex-start; gap: 8px; }
      .total-amount-big { font-size: clamp(22px, 7vw, 32px); align-self: flex-end; }
    }

    /* ════════════════════════════════
       특허맨소개 페이지
    ════════════════════════════════ */
    .about-hero {
      background: linear-gradient(135deg, var(--primary) 0%, #1aab90 100%);
      color: white;
      text-align: center;
      padding: 52px 24px 48px;
    }
    .about-hero-alt {
      background: linear-gradient(135deg, #0a5e50 0%, var(--primary) 100%);
    }
    .about-hero-badge {
      display: inline-block;
      background: rgba(255,255,255,0.18);
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.08em;
      padding: 4px 16px;
      margin-bottom: 16px;
      color: rgba(255,255,255,0.95);
    }
    .about-hero-title {
      font-size: clamp(20px, 4vw, 28px);
      font-weight: 800;
      line-height: 1.45;
      letter-spacing: -0.02em;
    }
    .about-container {
      max-width: 760px;
      margin: 0 auto;
      padding: 40px 20px 48px;
    }
    .about-section {
      background: var(--white);
      border-radius: 14px;
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow-sm);
      padding: 32px 28px;
    }
    .about-point {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 24px 0;
      border-bottom: 1px solid var(--gray-100);
    }
    .about-point:last-of-type {
      border-bottom: none;
    }
    .about-point-num {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), #1aab90);
      color: white;
      font-size: 13px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      letter-spacing: 0;
    }
    .about-point-body { flex: 1; }
    .about-point-title {
      font-size: 15px;
      font-weight: 800;
      color: var(--gray-900);
      margin-bottom: 8px;
      line-height: 1.5;
    }
    .about-point-text {
      font-size: 13.5px;
      color: var(--gray-600);
      line-height: 1.8;
    }
    .about-point-text strong {
      color: var(--primary);
      font-weight: 800;
    }

    /* ─── 철학 섹션: 아이콘 카드 ─── */
    .about-icon-strip {
      display: flex;
      gap: 12px;
      margin-bottom: 28px;
      justify-content: center;
    }
    .about-icon-card {
      flex: 1;
      max-width: 200px;
      background: linear-gradient(135deg, #f0fdf9 0%, #e6f9f4 100%);
      border: 1px solid #b2edd9;
      border-radius: 12px;
      padding: 18px 10px 14px;
      text-align: center;
    }
    .about-icon-card svg {
      display: block;
      margin: 0 auto 8px;
    }
    .about-icon-card-label {
      font-size: 17px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1.4;
    }

    /* ─── 철학 섹션: 상한제 강조 배너 ─── */
    .about-limit-banner {
      background: linear-gradient(135deg, var(--primary) 0%, #1aab90 100%);
      border-radius: 12px;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 12px 0 0;
    }
    .about-limit-banner svg { flex-shrink: 0; }
    .about-limit-banner-text {
      color: white;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.55;
    }
    .about-limit-banner-text span {
      font-size: 18px;
      font-weight: 900;
      display: block;
      letter-spacing: -0.02em;
    }

    /* ─── 전문성 섹션: 비교 칩 ─── */
    .about-compare {
      display: flex;
      gap: 10px;
      margin-bottom: 28px;
      align-items: stretch;
    }
    .about-compare-col {
      flex: 1;
      border-radius: 12px;
      padding: 16px 14px;
      text-align: center;
    }
    .about-compare-col.bad {
      background: #fff4f4;
      border: 1px solid #fecaca;
    }
    .about-compare-col.good {
      background: #f0fdf9;
      border: 1px solid #b2edd9;
    }
    .about-compare-col-icon {
      font-size: 33px;
      margin-bottom: 6px;
    }
    .about-compare-col-title {
      font-size: 16.5px;
      font-weight: 800;
      letter-spacing: 0.04em;
      margin-bottom: 8px;
    }
    .bad .about-compare-col-title { color: #ef4444; }
    .good .about-compare-col-title { color: var(--primary); }
    .about-compare-col-items {
      list-style: none;
      padding: 0; margin: 0;
      font-size: 12px;
      line-height: 1.9;
      color: var(--gray-600);
      white-space: nowrap;
    }
    .about-compare-vs {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 900;
      color: var(--gray-600);
      flex-shrink: 0;
    }

    /* ─── 협업 섹션: 통계 카드 ─── */
    .about-stats-row {
      display: flex;
      gap: 10px;
      margin-bottom: 28px;
    }
    .about-stat-card {
      flex: 1;
      background: white;
      border: 1px solid var(--gray-200);
      border-radius: 12px;
      padding: 16px 10px;
      text-align: center;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }
    .about-stat-card svg {
      display: block;
      margin: 0 auto 6px;
    }
    .about-stat-num {
      font-size: 22px;
      font-weight: 900;
      color: var(--primary);
      letter-spacing: -0.03em;
      line-height: 1.1;
    }
    .about-stat-label {
      font-size: 12px;
      color: var(--gray-500);
      margin-top: 3px;
      line-height: 1.4;
    }

    /* ─── 협업 실적: 로고 그리드 ─── */
    .about-collab-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin-bottom: 24px;
    }
    .about-collab-chip {
      background: #f8fffe;
      border: 1px solid #d0f0e8;
      border-radius: 8px;
      padding: 10px 6px;
      text-align: center;
      font-size: 11.5px;
      font-weight: 700;
      color: var(--gray-600);
      line-height: 1.3;
      white-space: nowrap;
    }
    .about-collab-chip-icon {
      font-size: 16px;
      display: block;
      margin-bottom: 4px;
    }
    .about-cta-row {
      display: flex;
      gap: 12px;
      justify-content: center;
      padding-top: 28px;
      flex-wrap: wrap;
    }
    .about-btn-primary {
      background: linear-gradient(135deg, var(--primary), #1aab90);
      color: white;
      border: none;
      border-radius: 10px;
      padding: 14px 28px;
      font-size: 14px;
      font-weight: 800;
      font-family: 'Nanum Square Neo', sans-serif;
      cursor: pointer;
      transition: opacity 0.15s, transform 0.1s;
    }
    .about-btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
    .about-btn-secondary {
      background: var(--white);
      color: var(--primary);
      border: 1.5px solid var(--primary);
      border-radius: 10px;
      padding: 14px 28px;
      font-size: 14px;
      font-weight: 800;
      font-family: 'Nanum Square Neo', sans-serif;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
    }
    .about-btn-secondary:hover { background: var(--primary-light); }

    /* 변리사 카드 */
    .about-attorneys {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 0;
    }
    .attorney-card {
      background: var(--white);
      border-radius: 14px;
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow-sm);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      align-items: center;
      transition: box-shadow 0.2s;
      min-width: 0;
    }
    .attorney-card:hover {
      box-shadow: var(--shadow-md);
      border-color: var(--primary-mid);
    }
    .attorney-photo-wrap {
      flex-shrink: 0;
      width: 180px;
      height: 225px;
      border-radius: 10px;
      overflow: hidden;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .attorney-photo-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .attorney-photo-placeholder {
      font-size: 32px;
      font-weight: 800;
      color: var(--primary);
    }
    .attorney-info { flex: 1; min-width: 0; }
    .attorney-name-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 12px;
    }
    .attorney-name {
      font-size: 19px;
      font-weight: 800;
      color: var(--gray-900);
      letter-spacing: -0.02em;
    }
    .attorney-title-badge {
      background: linear-gradient(135deg, var(--primary), #1aab90);
      color: white;
      font-size: 12px;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: 100px;
    }
    .attorney-career {
      list-style: none;
      margin: 0 0 10px 0;
      padding: 0;
    }
    .attorney-career li {
      font-size: 12.5px;
      color: var(--gray-500);
      line-height: 1.9;
      padding-left: 12px;
      position: relative;
    }
    .attorney-career li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 9px;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--gray-300);
    }
    .attorney-expertise {
      list-style: none;
      margin: 0;
      padding: 10px 0 0 0;
      border-top: 1px solid var(--gray-100);
    }
    .attorney-expertise li {
      font-size: 12px;
      color: var(--primary);
      font-weight: 700;
      line-height: 1.9;
      padding-left: 14px;
      position: relative;
    }
    .attorney-expertise li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--primary);
      font-weight: 900;
    }
    @media (max-width: 768px) {
      .about-attorneys { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .about-icon-strip { flex-direction: column; align-items: center; }
      .about-icon-card { max-width: 100%; width: 100%; }
    }
    @media (max-width: 540px) {
      .attorney-card { flex-direction: column; align-items: center; gap: 16px; }
      .attorney-photo-wrap { width: 192px; height: 240px; }
      .attorney-info { width: 100%; }
      .about-section { padding: 24px 16px; }
      .about-point { gap: 14px; }
      .attorney-card { padding: 24px 16px; }
      .attorney-expertise li { font-size: 11px; letter-spacing: -0.03em; }
      .attorney-career li { font-size: 11.5px; letter-spacing: -0.02em; }
    }

    /* ════════════════════════════════
       우측 플로팅바
    ════════════════════════════════ */
    .side-float {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 40;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 20px;
    }

    .side-float-list {
      list-style: none;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }

    .side-float-list .sf-item + .sf-item {
      border-top: 1px solid var(--gray-100);
    }

    .side-float-list .sf-item a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 76px;
      height: 76px;
      padding: 8px 4px;
      text-decoration: none;
      color: var(--gray-700);
      transition: background 0.2s, color 0.2s;
    }

    .side-float-list .sf-item img {
      width: 26px;
      height: 26px;
      object-fit: contain;
    }

    .side-float-list .sf-markup img {
      width: 22px;
      height: 22px;
    }

    .side-float-list .sf-item span {
      font-size: 12px;
      font-weight: 700;
      line-height: 1.25;
      text-align: center;
      letter-spacing: -0.03em;
    }

    /* 브랜드별 hover (markup_local 참고) */
    .side-float-list .sf-markup:hover a { background: var(--white); color: #0b63c5; }
    .side-float-list .sf-kakao:hover a  { background: #F9E000; color: #371D1E; }
    .side-float-list .sf-online:hover a { background: #81CAFF; color: var(--white); }
    .side-float-list .sf-youtube:hover a { background: #FF0000; color: var(--white); }

    .sf-top {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      background: var(--white);
      color: var(--gray-600);
      border: 1px solid var(--gray-200);
      border-radius: 50%;
      box-shadow: var(--shadow-sm);
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }

    .sf-top:hover {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
    }

    @media (max-width: 767px) {
      .side-float {
        top: auto;
        bottom: 12%;
        transform: none;
        gap: 14px;
      }
      .side-float-list .sf-item a {
        width: 58px;
        height: 58px;
        gap: 4px;
        padding: 6px 3px;
      }
      .side-float-list .sf-item img { width: 22px; height: 22px; }
      .side-float-list .sf-markup img { width: 22px; height: 22px; }
      .side-float-list .sf-item span { font-size: 10px; }
      .sf-top { width: 38px; height: 38px; }
    }

