/* ============================================================
   대성화스너 — 신고센터 페이지 고유 스타일
   ============================================================ */


  :root {
    --bg: #FFFFFF; --bg-soft: #F6F9F7; --bg-tint: #ECF5EF;
    --bg-dark: #0B1410; --bg-darker: #060B08;
    --border: #E5E9E6; --border-hover: #CCD5CF;
    --green: #16A34A; --green-bright: #22C55E; --green-soft: #4ADE80;
    --green-tint: #DCFCE7; --green-bg: #F0FDF4; --green-dark: #0F7A37;
    --text-1: #0B1410; --text-2: #3F4A42; --text-3: #6B7A70; --text-4: #9AA69E;
    --amber: #B45309; --amber-bg: #FFFBEB; --amber-tint: #FEF3C7;
    --shadow-sm: 0 1px 2px rgba(11, 20, 16, 0.04);
    --shadow: 0 4px 16px rgba(11, 20, 16, 0.06);
    --shadow-lg: 0 12px 40px rgba(11, 20, 16, 0.08);
    --font-sans: 'Pretendard Variable', 'Pretendard', -apple-system, system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  em { font-style: normal; }
  body {
    background: var(--bg); color: var(--text-1);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    cursor: none;
    overflow-x: hidden;
    /* Korean typography — 자연스러운 줄바꿈 */
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  @media (pointer: coarse) { body { cursor: default; } }
  ::selection { background: var(--green); color: #fff; }

  /* Headings & paragraphs — 균형잡힌 줄바꿈 (최신 브라우저) */
  h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
  p, li, dd, blockquote { text-wrap: pretty; }
  .grain {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 9998;
    opacity: 0.025; mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' seed='5'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }
  .cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 10000;
    border-radius: 50%; transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }
  .cursor-dot { width: 6px; height: 6px; background: #fff; transition: width 0.2s, height 0.2s, background 0.2s; }
  .cursor-ring {
    width: 32px; height: 32px;
    border: 1.2px solid rgba(255, 255, 255, 0.55);
    transition: width 0.3s var(--ease-expo), height 0.3s var(--ease-expo), border-color 0.3s, transform 0.12s linear;
  }
  .cursor-ring.hover { width: 56px; height: 56px; border-color: var(--green-soft); background: rgba(74, 222, 128, 0.06); }
  .cursor-dot.hover { width: 4px; height: 4px; background: var(--green-soft); }
  @media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }
  .scroll-progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--green); z-index: 200; width: 0%; transition: width 0.1s linear; }

  /* NAV */
  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    padding: 18px 48px; display: flex; justify-content: space-between; align-items: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 100; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav.scrolled { padding: 12px 48px; }
  .nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; color: var(--text-1); letter-spacing: -0.01em; text-decoration: none; }
  .nav-logo svg { width: 28px; height: 28px; }
  .nav-menu { display: flex; gap: 36px; list-style: none; }
  .nav-menu a { color: var(--text-2); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.25s; position: relative; }
  .nav-menu a.active { color: var(--green); font-weight: 600; }
  .nav-menu a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 1px; background: currentColor; transition: width 0.3s var(--ease-expo); }
  .nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
  .nav-menu a:hover { color: var(--green); }
  .nav-right { display: flex; align-items: center; gap: 20px; }
  .lang-toggle { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); letter-spacing: 0.1em; cursor: none; }
  .btn-nav-cta { display: inline-flex; align-items: center; padding: 10px 20px; background: var(--text-1); color: #fff; font-size: 13px; font-weight: 600; border-radius: 8px; border: none; cursor: none; transition: all 0.3s var(--ease-expo); }
  .btn-nav-cta:hover { background: var(--green); transform: translateY(-1px); }

  /* PAGE HEADER */
  .page-header { padding: 140px 48px 80px; background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%); position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
  .page-header-pattern { position: absolute; top: 0; right: 0; width: 600px; height: 600px; opacity: 0.04; pointer-events: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'><path d='M60 0L120 34.6V69.3L60 104L0 69.3V34.6L60 0Z' fill='none' stroke='%2316A34A' stroke-width='1'/></svg>"); background-size: 120px 104px; }
  .page-header-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
  .breadcrumb { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; color: var(--text-3); letter-spacing: 0.05em; margin-bottom: 32px; text-transform: uppercase; }
  .breadcrumb a { color: var(--text-3); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--green); }
  .breadcrumb .sep { color: var(--text-4); }
  .breadcrumb .current { color: var(--green); font-weight: 600; }
  .page-eyebrow { display: inline-block; font-size: 12px; font-weight: 600; font-family: var(--font-mono); color: var(--green); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; padding: 5px 12px; border: 1px solid var(--green-tint); border-radius: 100px; background: var(--green-bg); }
  .page-title { font-size: clamp(44px, 5.5vw, 72px); font-weight: 800; line-height: 1.05; letter-spacing: -0.035em; color: var(--text-1); margin-bottom: 20px; max-width: 900px; }
  .page-title em { color: var(--green); }
  .page-subtitle { font-size: clamp(18px, 1.8vw, 22px); color: var(--text-2); line-height: 1.6; max-width: 720px; font-weight: 500; }

  /* SECTIONS */
  .section { padding: 100px 48px; }
  .section + .section { border-top: 1px solid var(--border); }
  .section-inner { max-width: 1280px; margin: 0 auto; }
  .section-header { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; margin-bottom: 56px; }
  .section-label-block {}
  .section-tag { display: inline-block; font-family: var(--font-mono); font-size: 11px; color: var(--green); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px; font-weight: 600; }
  .section-label { font-size: clamp(32px, 3.5vw, 44px); font-weight: 800; color: var(--text-1); letter-spacing: -0.025em; line-height: 1.05; }
  .section-label em { color: var(--green); }
  .section-desc { font-size: clamp(16px, 1.4vw, 18px); color: var(--text-2); line-height: 1.7; padding-top: 8px; max-width: 680px; font-weight: 500; }

  /* PHILOSOPHY — 윤리경영 이념 (3 cards) */
  .philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .philosophy-card { padding: 36px 32px; background: var(--bg); border: 1px solid var(--border); border-radius: 16px; transition: all 0.4s var(--ease-expo); position: relative; overflow: hidden; }
  .philosophy-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--green-bright), var(--green-soft)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-expo); }
  .philosophy-card:hover { border-color: var(--green-tint); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
  .philosophy-card:hover::before { transform: scaleX(1); }
  .philosophy-num { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); letter-spacing: 0.2em; font-weight: 700; margin-bottom: 20px; }
  .philosophy-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green-bg); border: 1px solid var(--green-tint); display: flex; align-items: center; justify-content: center; color: var(--green); margin-bottom: 24px; }
  .philosophy-icon svg { width: 24px; height: 24px; }
  .philosophy-name-en { font-family: var(--font-mono); font-size: 10px; color: var(--text-3); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-bottom: 6px; }
  .philosophy-name { font-size: 22px; font-weight: 800; color: var(--text-1); letter-spacing: -0.02em; margin-bottom: 12px; }
  .philosophy-desc { font-size: 14px; color: var(--text-3); line-height: 1.65; }

  /* CODE — 윤리강령 */
  .code-list { display: flex; flex-direction: column; gap: 12px; }
  .code-item { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 24px 28px; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; transition: all 0.3s var(--ease-expo); align-items: start; }
  .code-item:hover { border-color: var(--green-tint); background: var(--bg-soft); }
  .code-num { font-size: 32px; color: var(--green); line-height: 1; font-weight: 400; }
  .code-content {}
  .code-title { font-size: 16px; font-weight: 700; color: var(--text-1); letter-spacing: -0.015em; margin-bottom: 6px; }
  .code-desc { font-size: 14px; color: var(--text-3); line-height: 1.6; }

  /* REPORT TARGET — 신고 대상 */
  .target-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .target-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 22px; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; transition: all 0.3s ease; }
  .target-item:hover { border-color: var(--green-tint); background: var(--green-bg); }
  .target-check { flex-shrink: 0; width: 24px; height: 24px; border-radius: 6px; background: var(--green-bg); color: var(--green); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
  .target-check svg { width: 14px; height: 14px; }
  .target-text { font-size: 14px; color: var(--text-2); line-height: 1.55; font-weight: 500; }

  /* WHO CAN REPORT — 누구든 */
  .who-band { padding: 36px 40px; background: linear-gradient(135deg, var(--green-bg) 0%, var(--bg-soft) 100%); border: 1px solid var(--green-tint); border-radius: 16px; margin-bottom: 56px; display: flex; align-items: center; gap: 28px; }
  .who-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25); }
  .who-icon svg { width: 26px; height: 26px; }
  .who-content { flex: 1; }
  .who-title { font-size: 18px; font-weight: 800; color: var(--text-1); letter-spacing: -0.015em; margin-bottom: 6px; }
  .who-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }
  .who-desc strong { color: var(--green-dark); font-weight: 700; }

  /* REPORT CHANNELS — 신고 채널 */
  .channels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
  .channel-card { padding: 32px; background: var(--bg); border: 1px solid var(--border); border-radius: 16px; transition: all 0.4s var(--ease-expo); position: relative; overflow: hidden; cursor: none; text-decoration: none; color: inherit; display: block; }
  .channel-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--green-bg) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s; }
  .channel-card:hover { border-color: var(--green-tint); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
  .channel-card:hover::before { opacity: 1; }
  .channel-card > * { position: relative; z-index: 2; }
  .channel-icon { width: 52px; height: 52px; border-radius: 13px; background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25); }
  .channel-icon svg { width: 26px; height: 26px; }
  .channel-label { font-family: var(--font-mono); font-size: 10px; color: var(--text-3); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 6px; font-weight: 700; }
  .channel-name { font-size: 18px; font-weight: 800; color: var(--text-1); letter-spacing: -0.015em; margin-bottom: 14px; }
  .channel-value { font-size: 17px; font-weight: 700; color: var(--text-1); line-height: 1.4; letter-spacing: -0.005em; margin-bottom: 4px; word-break: break-all; }
  .channel-note { font-size: 13px; color: var(--text-3); line-height: 1.5; margin-bottom: 16px; }
  .channel-cta { display: inline-flex; align-items: center; gap: 6px; padding-top: 16px; border-top: 1px solid var(--border); font-family: var(--font-mono); font-size: 11px; color: var(--green); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: gap 0.3s ease; width: 100%; }
  .channel-card:hover .channel-cta { gap: 12px; }
  .channel-cta svg { width: 12px; height: 12px; }

  /* PROCESS — 처리 절차 (4 steps) */
  .process { position: relative; }
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
  .process-line { position: absolute; top: 38px; left: calc(12.5% + 30px); right: calc(12.5% + 30px); height: 2px; background: linear-gradient(90deg, var(--border) 0%, var(--green-tint) 50%, var(--border) 100%); z-index: 0; }
  .process-step { position: relative; z-index: 1; }
  .process-circle { width: 76px; height: 76px; border-radius: 50%; background: var(--bg); border: 2px solid var(--border); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; margin: 0 auto 20px; transition: all 0.4s var(--ease-expo); }
  .process-step:hover .process-circle { border-color: var(--green); background: var(--green-bg); transform: scale(1.05); }
  .process-num { font-family: var(--font-mono); font-size: 10px; color: var(--text-4); letter-spacing: 0.15em; font-weight: 700; }
  .process-icon { width: 28px; height: 28px; color: var(--green); display: flex; align-items: center; justify-content: center; }
  .process-icon svg { width: 26px; height: 26px; }
  .process-info { text-align: center; padding: 0 12px; }
  .process-title { font-size: 16px; font-weight: 700; color: var(--text-1); letter-spacing: -0.015em; margin-bottom: 8px; }
  .process-desc { font-size: 13px; color: var(--text-3); line-height: 1.55; }

  /* PROTECTION — 신고자 보호 */
  .protection-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .protection-card { padding: 28px 32px; background: var(--bg); border: 1px solid var(--border); border-radius: 14px; transition: all 0.3s ease; display: flex; align-items: flex-start; gap: 20px; }
  .protection-card:hover { border-color: var(--green-tint); box-shadow: var(--shadow); }
  .protection-shield { flex-shrink: 0; width: 44px; height: 44px; border-radius: 11px; background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(22, 163, 74, 0.25); }
  .protection-shield svg { width: 22px; height: 22px; }
  .protection-content { flex: 1; }
  .protection-title { font-size: 16px; font-weight: 800; color: var(--text-1); letter-spacing: -0.015em; margin-bottom: 8px; }
  .protection-desc { font-size: 13px; color: var(--text-3); line-height: 1.6; }

  /* ANONYMOUS REPORT FORM — 익명 신고 폼 */
  .report-form-section { background: var(--bg-soft); }
  .form-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
  .form-side {}
  .form-side-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--green-bg);
    color: var(--green-dark);
    border: 1px solid var(--green-tint);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .form-side-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }
  .form-side-title { font-size: 26px; font-weight: 800; color: var(--text-1); letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.2; }
  .form-side-title em { color: var(--green); }
  .form-side-desc { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; }

  .anonymity-shield {
    padding: 22px 26px;
    background: var(--bg);
    border: 1px solid var(--green-tint);
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
  }
  .anonymity-shield-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.25);
  }
  .anonymity-shield-icon svg { width: 20px; height: 20px; }
  .anonymity-shield-text {
    flex: 1;
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.6;
  }
  .anonymity-shield-text strong { color: var(--green-dark); font-weight: 700; }

  /* Tally embed placeholder */
  .tally-placeholder {
    background: var(--bg);
    border: 2px dashed var(--green-tint);
    border-radius: 18px;
    padding: 56px 40px;
    text-align: center;
    position: relative;
  }
  .tally-placeholder-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--green-bg);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid var(--green-tint);
  }
  .tally-placeholder-icon svg { width: 32px; height: 32px; }
  .tally-placeholder-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -0.015em;
    margin-bottom: 12px;
  }
  .tally-placeholder-desc {
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Form preview (used when Tally not yet embedded) */
  .form-preview {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 40px;
  }
  .form-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }
  .form-preview-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -0.015em;
  }
  .form-preview-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
  }
  .form-preview-status::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2s infinite;
  }
  .form-group {
    margin-bottom: 18px;
  }
  .form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-2);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .form-label .required { color: var(--green); }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-1);
    transition: all 0.25s ease;
  }
  .form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%236B7A70' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
  }
  .form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--green);
    background: var(--bg);
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.1);
  }
  .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Reporter type — segmented control (라디오 탭) */
  .form-segmented {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 4px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 10px;
  }
  .form-segmented input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .form-segmented label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 7px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    cursor: none;
    transition: all 0.22s ease;
    user-select: none;
    letter-spacing: -0.005em;
  }
  .form-segmented label:hover {
    color: var(--text-1);
    background: rgba(255, 255, 255, 0.6);
  }
  .form-segmented input[type="radio"]:checked + label {
    background: var(--bg);
    border-color: var(--green-tint);
    color: var(--green-dark);
    box-shadow: 0 1px 3px rgba(11, 20, 16, 0.06);
  }
  .form-segmented input[type="radio"]:focus-visible + label {
    outline: 2px solid var(--green);
    outline-offset: 2px;
  }

  .form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: var(--text-1);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    cursor: none;
    transition: all 0.3s var(--ease-expo);
    letter-spacing: 0.02em;
    margin-top: 8px;
  }
  .form-submit:hover {
    background: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(22, 163, 74, 0.3);
    gap: 14px;
  }
  .form-submit svg { width: 16px; height: 16px; }

  .form-note {
    margin-top: 14px;
    padding: 14px 18px;
    background: var(--bg-soft);
    border-radius: 10px;
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.6;
  }
  .form-note strong { color: var(--green-dark); font-weight: 700; }

  /* NOTICE — 유의사항 (warning style) */
  .notice-band { padding: 32px 36px; background: var(--amber-bg); border-left: 4px solid var(--amber); border-radius: 0 14px 14px 0; }
  .notice-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
  .notice-icon { width: 24px; height: 24px; color: var(--amber); flex-shrink: 0; }
  .notice-title { font-size: 16px; font-weight: 800; color: var(--text-1); letter-spacing: -0.015em; }
  .notice-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .notice-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-2); line-height: 1.6; }
  .notice-list li::before { content: '·'; color: var(--amber); font-weight: 700; flex-shrink: 0; }

  /* FOOTER */
  footer { padding: 48px; background: #060B08; border-top: 1px solid rgba(255, 255, 255, 0.06); }
  .footer-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; color: rgba(255, 255, 255, 0.4); font-size: 13px; flex-wrap: wrap; gap: 24px; }

  @media (max-width: 1024px) {
    .nav-menu { display: none; }
    .page-header { padding: 110px 28px 60px; }
    .section { padding: 60px 28px; }
    .section-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .target-list { grid-template-columns: 1fr; }
    .who-band { flex-direction: column; align-items: flex-start; text-align: left; padding: 28px; gap: 20px; }
    .channels-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-line { display: none; }
    .protection-grid { grid-template-columns: 1fr; }
    .form-wrap { grid-template-columns: 1fr; gap: 32px; }
  }
  @media (max-width: 640px) {
    .nav { padding: 16px 20px; }
    .page-header { padding: 100px 20px 50px; }
    .section { padding: 50px 20px; }
    .code-item { grid-template-columns: 36px 1fr; gap: 16px; padding: 18px 20px; }
    .code-num { font-size: 26px; }
    .process-grid { grid-template-columns: 1fr; }
    .form-preview { padding: 28px 22px; }
    .form-row-2 { grid-template-columns: 1fr; }
    .tally-placeholder { padding: 40px 24px; }
    .footer-inner { flex-direction: column; text-align: center; }
  }
  @media (prefers-reduced-motion: reduce) { * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

  /* ============================================== */
  /* 📌 공통 네비게이션 드롭다운                       */
  /* ============================================== */
  .nav-menu li { position: relative; }
  .nav-menu li > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 180px;
    background: #FFFFFF;
    border: 1px solid var(--border, #E5E9E6);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 14px 40px -8px rgba(11, 20, 16, 0.18), 0 4px 12px -2px rgba(11, 20, 16, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s var(--ease-expo, cubic-bezier(0.22, 1, 0.36, 1)), transform 0.22s var(--ease-expo, cubic-bezier(0.22, 1, 0.36, 1)), visibility 0.22s;
    list-style: none;
    z-index: 1000;
    margin: 0;
  }
  .nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
  }
  .nav-menu li.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown li { width: 100%; }
  .nav-dropdown a {
    display: block;
    padding: 10px 14px;
    color: var(--text-1, #0B1410) !important;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.18s, color 0.18s;
  }
  .nav-dropdown a::after { display: none !important; }
  .nav-dropdown a:hover {
    background: var(--green-bg, #F0FDF4);
    color: var(--green-dark, #0F7A37) !important;
  }
  @media (max-width: 768px) {
    .nav-dropdown { display: none; }
  }

  /* ── 폼 전송 결과 메시지 (Web3Forms) ── */
  .form-result {
    margin-top: 16px;
    padding: 0;
    font-size: 13.5px;
    line-height: 1.6;
    border-radius: 10px;
    transition: all 0.2s ease;
  }
  .form-result.sending {
    padding: 14px 16px;
    background: var(--bg-2);
    color: var(--text-3);
    border: 1px solid var(--border);
  }
  .form-result.success {
    padding: 16px 18px;
    background: #F0FDF4;
    color: #15803D;
    border: 1px solid #86EFAC;
  }
  .form-result.error {
    padding: 14px 16px;
    background: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FECACA;
  }
