/* ======= MDN Tabs ======= */
.mdn-tabs { margin: 36px 0 18px; }
.mdn-tablist{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.mdn-tab{
  appearance: none; border: 0; background: #fff; cursor: pointer;
  padding: 14px 18px; line-height: 1; font-size: 16px; color: #666;
  font-weight: 600; letter-spacing: -0.01em;
  transition: background .15s ease, color .15s ease;
  position: relative; white-space: nowrap;
}
.mdn-tab + .mdn-tab{ border-left: 1px solid #e6e6e6; }
.mdn-tab:hover{ background: #fafafa; color:#333; }
.mdn-tab.is-active{ background: #ffc400; color:#333; }
.mdn-inkbar{ display:none; }
.mdn-panels{ margin-top: 22px; }
.mdn-panel{ display:none; }
.mdn-panel.is-active{ display:block; }
.mdn-body{ padding:18px 4px; }
.mdn-title{ margin:10px 0 8px; font-size:28px; font-weight:800; letter-spacing:-.02em; }
.mdn-desc{ margin:0 0 10px; color:#555; }
.mdn-bullets{ margin:10px 0 0; padding-left:18px; }
.mdn-bullets li{ list-style:disc; margin:6px 0; }
.mdn-link{ display:inline-block; margin-top:8px; padding:10px 14px; border-radius:8px; background:#111; color:#fff; text-decoration:none; }
.mdn-link:hover{ opacity:.9; }

/* ======= Hero(상단 비주얼) ======= */
#top-vis.about { position: relative; overflow: hidden; }
#top-vis.about .img { position: relative; }
#top-vis.about .img .desktop { display: block; }
#top-vis.about .img .mobile  { display: none; }

/* ======= Form base ======= */
.mdn-f{ max-width: 100%; }
.mdn-f-row{ padding: 10px 0; }
.mdn-f-label{ font-size: 26px; font-weight: 300; color:#222; margin-bottom: 10px; }
.mdn-f-muted{ font-size:14px; color:#888; font-weight: 500; }
.mdn-f-req{ color:#e53935; font-weight:800; }
.mdn-f-sep{ height: 1px; background: #eee; margin: 18px 0; }

.mdn-f-input, .mdn-f-textarea{
  width: 100%; box-sizing: border-box;
  border: 1px solid #e6e6e6; border-radius: 6px;
  padding: 12px 14px; font-size: 15px; color:#333; background:#fff;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.mdn-f-input:focus, .mdn-f-textarea:focus{
  outline: none; border-color: #c9c9c9; box-shadow: 0 0 0 2px rgba(0,0,0,.03);
}
.mdn-f-textarea{ min-height: 180px; resize: vertical; }

/* ======= Tag-like Check / Radio ======= */
.mdn-f-check{
  position: relative;
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 16px 12px 48px;
  margin:6px 10px 6px 0;
  border:1px solid #e6e6e6; border-radius:12px;
  background:#fff; cursor:pointer; user-select:none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .06s ease;
}
.mdn-f-check:hover{
  border-color:#d8d8d8;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

/* 네이티브 input은 보이지 않게(접근성 유지) */
.mdn-f-check > input[type="checkbox"],
.mdn-f-check > input[type="radio"]{
  position:absolute; inset:0; opacity:0; cursor:pointer; margin:0;
}

/* 라벨 텍스트 */
.mdn-f-check span{ color:#333; font-size:15px; font-weight:700; letter-spacing:-.01em; }

/* 왼쪽 박스 */
.mdn-f-check span::before{
  content:""; position:absolute; left:14px; top:50%; transform:translateY(-50%);
  width:22px; height:22px; border-radius:8px;
  background:#fff; border:2px solid #d8d8d8;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.03);
  transition: all .18s ease;
}

/* ✓ (방향 수정: border-left + border-bottom, rotate(45deg)) */
.mdn-f-check span::after{
  content:"";
  position:absolute; left:21px; top:50%;
  width:6px; height:12px;
  /* 우상향 모양: 오른쪽·아래쪽 선을 45도 회전 */
  border-right:3px solid transparent;
  border-bottom:3px solid transparent;
  transform: translateY(-62%) rotate(1deg) scale(.9);
  opacity:0;
  transition: border-color .18s ease, transform .18s ease, opacity .12s ease;
}

/* 2) 선택됨: 선 보이게 + 살짝 확대 */
.mdn-f-check.is-checked span::after{
  border-right-color:#222;
  border-bottom-color:#222;
  transform: translateY(-62%) rotate(1deg) scale(1);
  opacity:1;
}

/* 포커스 링 */
.mdn-f-check input:focus-visible + span::before{
  box-shadow: 0 0 0 3px rgba(255,196,0,.25);
  border-color:#ffc400;
}

/* 선택됨 */
.mdn-f-check.is-checked{
  background: linear-gradient(#fffef6, #fff9d6);
  border-color:#ffd95a;
  box-shadow: 0 2px 0 0 #ffe89f inset, 0 0 0 3px rgba(255,205,0,.12);
}
.mdn-f-check.is-checked span{ color:#222; }
.mdn-f-check.is-checked span::before{
  background:#ffc400; border-color:#ffc400;
  box-shadow: 0 0 0 2px rgba(255,196,0,.18);
}
.mdn-f-check.is-checked span::after{
  border-left-color:#222; border-bottom-color:#222;
  transform: translateY(-62%) rotate(45deg) scale(1);
  opacity:1;
}

/* ‘기타’는 입력칸 없이 일반 항목처럼만 보이도록 */
.mdn-f-check--other .mdn-f-input--inline{ display:none !important; }

/* ======= 요약 칩 비활성(숨김) ======= */
.mdn-f-chips{ display:none !important; }

/* ======= Mobile ======= */
@media (max-width: 980px){
  .mdn-tablist{
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
  }
  .mdn-tab{
    text-align: center;
    border: 1px solid #e6e6e6;
    border-width: 0 1px 1px 0;
    padding: 12px 14px; font-size: 15px; background: #fff;
  }
  .mdn-tab.is-active{
    background: #ffc400;
    border: 1px solid #e6e6e6; border-width: 0 1px 1px 0;
  }
  .mdn-hero img{ height: 220px; }
  .mdn-title{ font-size: 22px; }
}

/* 모션 최소화 환경 */
@media (prefers-reduced-motion: reduce){
  .mdn-f-check, .mdn-f-check span::before, .mdn-f-check span::after{ transition:none !important; }
}

/* ===== Q-Header (공통 섹션 머리) ===== */
.mdn-f{ counter-reset:q; }                 /* 자동 번호 초기화 */

.qhead{
  position:relative;
  display:flex; align-items:baseline; gap:14px; flex-wrap:wrap;
  padding:14px 0 12px;
  margin:22px 0 14px;
  border-bottom:1px solid #eee;
}

/* 좌측 Q 넘버 배지 (자동 증가) */
.qhead::before{
  counter-increment:q;
  content:"Q " counter(q, decimal-leading-zero);
  font-size:12px; font-weight:800; letter-spacing:.04em;
  color:#6b5100; background:#fff9d6; border:1px solid #ffd95a;
  border-radius:999px; padding:6px 10px; line-height:1;
}

/* 하단 포인트 바 */
.qhead::after{
  content:""; position:absolute; left:0; bottom:-1px;
  width:76px; height:2px; background:#ffc400; border-radius:2px;
}

/* 제목 / 부제 / 필수표시 */
.qhead-title{ margin:0; font-size:22px; font-weight:700; color:#222; letter-spacing:-.01em; }
.qhead-note{ font-size:13px; color:#888; font-weight:600; }
.qhead-req{ color:#e53935; margin-left:6px; font-weight:800; }

/* 모바일 */
@media (max-width:640px){
  .qhead{ gap:8px; padding-bottom:10px; }
  .qhead-title{ font-size:18px; }
}

/* ---- 체크 아이콘(방향 고정 & 중복 정의 정리) ---- */
.mdn-f-check span::after{
  content:"";
  position:absolute; left:21px; top:50%;
  width:6px; height:12px;
  border-right:3px solid transparent;  /* 우상향 체크 */
  border-bottom:3px solid transparent;
  transform:translateY(-62%) rotate(45deg) scale(.9);
  opacity:0; transition:border-color .18s, transform .18s, opacity .12s;
}
.mdn-f-check.is-checked span::after{
  border-right-color:#222; border-bottom-color:#222; /* ← 오른쪽/아래쪽 선만 사용 */
  transform:translateY(-62%) rotate(45deg) scale(1);
  opacity:1;
}

/* ===== 섹션 헤더 ===== */
.mdn-sec{
  position:relative;
  margin:34px 0 14px;
  padding-top:22px;
  border-top:1px solid #eee;
}
.mdn-sec-title{
  margin:0;
  font-size:20px;
  font-weight:800;
  color:#111;
  letter-spacing:-.01em;
}
.mdn-sec-title::after{
  content:"";
  display:block;
  width:120px; height:2px;
  background:#ffc400; border-radius:2px;
  margin-top:10px;
}
.mdn-sec-desc{ /* 필요하면 부제용 */
  margin:6px 0 0;
  font-size:13px; color:#888; font-weight:600;
}
@media (max-width:640px){
  .mdn-sec-title{ font-size:18px; }
}

/* ===== 섹션 헤더 ===== */
:root{
  --mdn-accent:#ffc400;       /* 포인트(라인) */
  --mdn-primary:#b71924;      /* 버튼/체크 색상(빨강 느낌) */
  --mdn-line:#e8e8e8;
  --mdn-text:#111;
}
.mdn-sec{position:relative;margin:34px 0 18px;padding-top:22px;border-top:1px solid var(--mdn-line);}
.mdn-sec-title{margin:0;font-size:22px;font-weight:800;color:var(--mdn-text);letter-spacing:-.01em;}
.mdn-sec-title::after{content:"";display:block;width:140px;height:2px;background:var(--mdn-accent);border-radius:2px;margin-top:10px;}

/* ===== 입력 행 ===== */
.mdn-f-row{padding:0 0;}
.mdn-f-label{display:flex;align-items:center;gap:6px;font-size:15px;color:#666;font-weight:700;margin:8px 0;}
.mdn-f-req{color:#d92c2c;}
.mdn-f-input{width:100%;border:1px solid var(--mdn-line);border-radius:6px;padding:12px 14px;font-size:15px;transition:border-color .15s, box-shadow .15s;}
.mdn-f-input:focus{outline:none;border-color:#cfcfcf;box-shadow:0 0 0 2px rgba(0,0,0,.03);}

/* ===== 이메일 그룹 ===== */
.mdn-email{display:flex;align-items:center;gap:10px;}
.mdn-email .mdn-f-input{flex:1;}
.mdn-email__at{flex:0 0 auto;color:#999;font-weight:700;}
.mdn-select{border:1px solid var(--mdn-line);border-radius:6px;padding:12px 12px;font-size:15px;background:#fff;cursor:pointer;}
/* 모바일에선 줄바꿈 */
@media (max-width:640px){
  .mdn-email{flex-wrap:wrap;}
  .mdn-email__at{order:2;}
}

/* ===== 약관 동의 ===== */
.mdn-privacy{display:flex;align-items:center;gap:8px;margin:10px 0 6px;}
.mdn-privacy input[type="checkbox"]{width:18px;height:18px;accent-color:var(--mdn-primary);}
.mdn-privacy a{color:#666;text-decoration:underline;text-underline-offset:2px;}
.mdn-note{font-size:12px;color:#777;line-height:1.6;margin-top:6px}

/* ===== 버튼 ===== */
.mdn-actions{display:flex;justify-content:center;margin:28px 0 10px;}
.mdn-btn{min-width:220px;padding:14px 22px;border:0;border-radius:8px;background:var(--mdn-primary);color:#fff;font-size:15px;font-weight:800;cursor:pointer;transition:transform .05s ease, filter .15s ease;}
.mdn-btn:hover{filter:brightness(.96);}
.mdn-btn:active{transform:translateY(1px);}

/* ===== 하단 입력 섹션(컴팩트) ===== */
.mdn-contact .mdn-sec{ margin:20px 0 8px; padding-top:12px; border-top:1px solid var(--mdn-line); }
.mdn-contact .mdn-sec-title{ font-size:18px; font-weight:800; margin:0; }
.mdn-contact .mdn-sec-title::after{ width:110px; height:2px; margin-top:6px; }

/* Q 마크(글로벌에서 ::before로 넣는 경우) 제거 */
.mdn-contact .mdn-f-label::before{ content:none !important; display:none !important; }

/* 패딩/간격 최소화 */
.mdn-contact .mdn-f-row{ padding:6px 0; }
.mdn-contact .mdn-f-label{ margin:2px 0; font-size:14px; font-weight:700; color:#555; }
.mdn-contact .mdn-f-input{ padding:10px 12px; font-size:14px; border-radius:6px; }
.mdn-contact .mdn-email{ gap:8px; }
.mdn-contact .mdn-select{ padding:10px 10px; font-size:14px; }
.mdn-contact .mdn-note{ margin-top:4px; }

/* 버튼도 슬림하게 */
.mdn-contact .mdn-actions{ margin:16px 0 6px; }
.mdn-contact .mdn-btn{ min-width:200px; padding:12px 18px; font-size:14px; border-radius:7px; }
/* ===== 하단 문의 정보: 콤팩트 레이아웃 ===== */
.mdn-compact { --row-pad:10px; --label-w:88px; }

.mdn-compact .mdn-sec{margin:24px 0 10px;padding-top:12px;border-top:1px solid #e8e8e8;}
.mdn-compact .mdn-sec-title{margin:0 0 6px;font-size:20px;font-weight:800;}
.mdn-compact .mdn-sec-title::after{width:120px;height:2px;margin-top:8px;background:var(--mdn-accent,#ffc400);border-radius:2px;}

.mdn-compact .mdn-f-row{
  display:flex; align-items:center; gap:16px;
  padding: var(--row-pad) 0;
  border-top:1px solid #efefef;
}
.mdn-compact .mdn-f-row:first-of-type{border-top:1px solid #e4e4e4;}
.mdn-compact .mdn-f-row:last-of-type{border-bottom:1px solid #efefef;}

.mdn-compact .mdn-f-label{
  width:var(--label-w); margin:0;
  font-size:14px; color:#555; font-weight:700; letter-spacing:-.01em;
  display:flex; align-items:center; gap:6px;
}
.mdn-compact .mdn-f-req{color:#d92c2c;}

/* 입력/셀렉트 높이 ↓ */
.mdn-compact .mdn-f-input,
.mdn-compact .mdn-select{
  height:40px; padding:10px 12px; border-radius:6px;
  border:1px solid #e6e6e6; font-size:14px;
}
.mdn-compact .mdn-f-input::placeholder{color:#b7b7b7;}

/* 이메일 한 줄 정렬 */
.mdn-compact .mdn-email{flex:1; display:flex; align-items:center; gap:10px;}
.mdn-compact .mdn-email .mdn-f-input{flex:1;}
.mdn-compact .mdn-email__at{color:#bbb; font-weight:700;}

/* 약관/노트/버튼 여백 */
.mdn-compact .mdn-privacy{ margin:8px 0 4px; }
.mdn-compact .mdn-note{ margin-top:4px; font-size:12px; color:#777; }
.mdn-compact .mdn-actions{ margin:24px 0 8px; }
.mdn-compact .mdn-btn{ min-width:200px; padding:12px 18px; border-radius:8px; }

/* 모바일: 라벨 위, 입력 아래 */
@media (max-width:720px){
  .mdn-compact .mdn-f-row{display:block; padding:12px 0;}
  .mdn-compact .mdn-f-label{width:auto; margin:0 0 6px;}
  .mdn-compact .mdn-email{gap:8px;}
}

/* Q 배지 제거 (요소/가상요소 모두 대응) */
.mdn-compact .mdn-q{ display:none !important; }
.mdn-compact .mdn-f-label::before{ content:none !important; }

/* 배지 공간 있었다면 좌측 여백/간격 정리 */
.mdn-compact .mdn-f-label{ padding-left:0 !important; }
.mdn-compact .mdn-f-row{ gap:14px; }

/* 하단 연락처 섹션에서는 Q 배지(숫자 뱃지) 숨김 */
.mdn-contact .qhead::before { content: none !important; display: none !important; }

/* qhead를 일반 라벨처럼 보이게(선·여백 제거) */
.mdn-contact .qhead{
  padding: 0; margin: 0 0 6px; border: 0;
}
.mdn-contact .qhead-title{ font-size:14px; font-weight:700; color:#555; }
.mdn-contact .qhead-req{ color:#d92c2c; margin-left:4px; }

.mdn-btn[disabled]{
  opacity:.5;
  cursor:not-allowed;
  filter: grayscale(10%);
}

/* 동의 체크박스: 시각 피드백 강화 */
.mdn-privacy {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
}

/* 체크박스 크기 키우기 + 색상 */
.mdn-privacy input[type="checkbox"]{
  width: 20px;
  height: 20px;
  accent-color: var(--mdn-primary); /* 위에서 정의한 빨강 */
}

/* 라벨 텍스트 옆에 상태 배지 붙이기 */
.mdn-privacy input[type="checkbox"] + span{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color:#666;
}

/* 기본: 미동의 */
.mdn-privacy input[type="checkbox"] + span::after{
  content: "미동의";
  font-size: 12px;
  font-weight: 800;
  color: #d92c2c;
  background: #ffecec;
  border-radius: 999px;
  padding: 2px 8px;
}

/* 체크됨: 동의함 배지 + 텍스트 강조 */
.mdn-privacy input[type="checkbox"]:checked + span{
  color:#222;
  font-weight: 700;
}
.mdn-privacy input[type="checkbox"]:checked + span::after{
  content: "동의함";
  color: #096b40;
  background: #e6f4ea;
}

/* 포커스 링(키보드 접근성) */
.mdn-privacy input[type="checkbox"]:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,196,0,.35);
  border-radius: 4px;
}

/* 비활성 버튼 스타일(이미 있으나 참고) */
.mdn-btn[disabled]{
  opacity:.5;
  cursor:not-allowed;
  filter: grayscale(10%);
}

/* 동의 라벨 앞에 체크 아이콘 표시 */
.mdn-privacy input[type="checkbox"] + span{
  display: inline-flex;
  align-items: center;
  gap: 8px;           /* 아이콘 ↔ 텍스트 간격 */
}

/* □ 기본(미체크) 상태의 아이콘 박스 */
.mdn-privacy input[type="checkbox"] + span::before{
  content: "\2713";                /* 체크 문자(✓) */
  width: 18px; height: 18px;
  display: inline-grid; place-items: center;
  border: 2px solid #cfcfcf; border-radius: 4px;
  color: transparent;              /* 미체크일 땐 체크 표시 안 보이게 */
  background: #fff;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.04);
  transition: background .18s, border-color .18s, color .18s, transform .06s;
}

/* ■ 체크됨: 아이콘에 색 + 하이라이트 */
.mdn-privacy input[type="checkbox"]:checked + span::before{
  background: var(--mdn-primary);
  border-color: var(--mdn-primary);
  color: #fff;                     /* 체크(✓) 보이게 */
  box-shadow: 0 0 0 3px rgba(183,25,36,.15);
  transform: translateY(-1px);
}

/* (이미 추가했던 배지와 함께 동작) */
.mdn-privacy input[type="checkbox"] + span::after{
  content: "미동의";
  font-size: 12px; font-weight: 800;
  color: #d92c2c; background: #ffecec;
  border-radius: 999px; padding: 2px 8px;
}
.mdn-privacy input[type="checkbox"]:checked + span{
  color:#222; font-weight:700;
}
.mdn-privacy input[type="checkbox"]:checked + span::after{
  content: "동의함";
  color: #096b40; background: #e6f4ea;
}

/* === Inquiry 헤더 === */
.inq-wrap{ text-align:center; padding:28px 12px 6px; }
.inq-title{ margin:0 0 12px; font-size:52px; font-weight:900; letter-spacing:-.02em; color:#111; }
.inq-title .dot{ color:#c61b1b; }          /* 빨간 점 */

.inq-lead{ margin:0 0 8px; font-size:26px; font-weight:700; color:#222; line-height:1.5; }
.inq-desc{
  max-width:920px; margin:0 auto 26px; color:#666; line-height:1.75;
  font-size:16px; font-weight:600;
}
.inq-phone a{ color:#b71924; font-weight:800; text-decoration:none; }

.inq-subq{
  position:relative; margin:28px 0 4px;
  font-size:18px; font-weight:800; color:#b71924;
}
/* 대각선 포인터 */
.inq-subq::before{
  content:""; position:absolute; left:50%; top:-18px;
  width:42px; height:2px; background:#b71924;
  transform:translateX(-50%) rotate(-22deg); border-radius:2px;
}

/* 반응형 */
@media (max-width:980px){
  .inq-title{ font-size:44px; }
  .inq-lead{ font-size:22px; }
}
@media (max-width:640px){
  .inq-title{ font-size:38px; }
  .inq-lead{ font-size:20px; }
  .inq-desc{ font-size:15px; }
}

/* === Inquiry Hero (개선) === */
.inq-hero{
  --ring: var(--mdn-accent, #ffc400);
  --pri:  var(--mdn-primary, #b71924);
  --line: var(--mdn-line, #e8e8e8);
  --text: var(--mdn-text, #111);

  position: relative;
  text-align: center;
  margin: 28px 0 14px;
  padding: 34px 20px 18px;
  border: 0px solid #f1f1f1;
  border-radius: 18px;
  background:
    radial-gradient(60% 120% at 50% -20%, rgba(255,196,0,.10), rgba(255,196,0,0) 55%),
    #fff;
}

.inq-hero__eyebrow{
  margin: 0 auto 10px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 900; letter-spacing: .08em;
  color: #7a7a7a; text-transform: uppercase;
  background: #fafafa; border:1px solid #eee; border-radius:999px; padding:6px 12px;
}
.inq-hero__title{
  margin: 6px 0 10px;
  font-size: 56px; font-weight: 900; letter-spacing: -0.02em; color: var(--text);
}
.inq-hero__title .dot{ color: var(--pri); }

.inq-hero__bar{
  width: 84px; height: 4px; margin: 10px auto 18px;
  background: var(--ring); border-radius: 3px;
}

.inq-hero__lead{
  margin: 0;
  font-size: 24px; font-weight: 800; color:#222; line-height: 1.55;
}
.inq-hero__tag{ margin: 2px 0 8px; font-size: 18px; font-weight: 700; color:#555; }

.inq-hero__desc{
  max-width: 940px; margin: 10px auto 18px;
  font-size: 16px; font-weight: 600; color:#666; line-height: 1.8;
}

.inq-hero__call{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border:1px solid var(--line); border-radius:999px;
  background:#fff; color:var(--pri); font-weight: 900; text-decoration:none;
  transition: transform .06s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.inq-hero__call::before{
  content:"☎"; font-size:16px; line-height:1; transform: translateY(-1px);
}
.inq-hero__call:hover{
  background: var(--pri); color:#fff; border-color:var(--pri);
  box-shadow: 0 6px 18px rgba(183,25,36,.22); transform: translateY(-1px);
}

.inq-hero__divider{
  width: 100%; max-width: 760px; height:1px; margin: 22px auto 10px;
  background: linear-gradient(90deg, transparent, #eee 20% 80%, transparent);
}

.inq-hero__subq{
  position:relative; margin: 16px 0 4px;
  font-size:18px; font-weight: 900; color: var(--pri);
}
.inq-hero__subq::before{
  content:""; position:absolute; left:50%; top:-14px;
  width:40px; height:2px; background:var(--pri);
  transform: translateX(-50%) rotate(-22deg); border-radius:2px;
  animation: inq-wink 1.8s ease-in-out infinite;
}

@keyframes inq-wink{
  0%,100%{ transform:translateX(-50%) rotate(-22deg); opacity:.9; }
  50%{ transform:translateX(-50%) rotate(-22deg) translateY(-2px); opacity:1; }
}

/* 반응형 */
@media (max-width: 980px){
  .inq-hero{ padding:28px 16px 14px; }
  .inq-hero__title{ font-size: 46px; }
  .inq-hero__lead{ font-size:22px; }
}

@media (max-width: 640px){
  .inq-hero__title{ font-size: 38px; }
  .inq-hero__lead{ font-size:20px; }
  .inq-hero__desc{ font-size:15px; }
}

/* 모션 최소화 환경 */
@media (prefers-reduced-motion: reduce){
  .inq-hero__subq::before{ animation: none; }
}

.mdn-f { counter-reset: none !important; }

/* 탭 전체에서 한 번만 01부터 시작 → 모든 패널 합쳐 연속 번호 */
#mdnTabs { counter-reset: q; }
#mdnTabs .qhead::before{ counter-increment: q; content: "Q " counter(q, decimal-leading-zero); }

/* ===== mdn-modal (privacy) ===== */
.mdn-modal{position:fixed;inset:0;display:none;z-index:9999;}
.mdn-modal.is-open{display:block;}
.mdn-modal__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.55);}
.mdn-modal__dialog{
  position:relative;box-sizing:border-box;max-width:880px;width:calc(100% - 32px);
  max-height:calc(100% - 80px);margin:40px auto;padding:0;border-radius:16px;
  background:#fff;box-shadow:0 10px 40px rgba(0,0,0,.25);overflow:hidden;outline:none;
}
.mdn-modal__header{display:flex;align-items:center;justify-content:space-between;
  padding:16px 20px;border-bottom:1px solid #eee;}
.mdn-modal__title{margin:0;font-size:18px;font-weight:700;}
.mdn-modal__close{border:0;background:transparent;font-size:28px;line-height:1;cursor:pointer;}
.mdn-modal__body{padding:0;height:60vh;max-height:65vh;overflow:auto;}
.mdn-modal__loading{padding:24px 20px;font-size:14px;color:#666;}
.mdn-modal__content{padding:20px;}
.mdn-modal__content h1,.mdn-modal__content h2,.mdn-modal__content h3{margin-top:1.2em}
.mdn-modal__content img, .mdn-modal__content video{max-width:100%;height:auto}
.mdn-modal__footer{display:flex;gap:8px;justify-content:flex-end;padding:12px 16px;border-top:1px solid #eee;background:#fafafa;}
.mdn-modal__ok{
  border:0;border-radius:10px;padding:10px 16px;cursor:pointer;background:#111;color:#fff;
}
.mdn-modal__open-origin{align-self:center;font-size:13px;color:#555;text-decoration:underline;}
@media (max-width:560px){
  .mdn-modal__dialog{margin:12px auto;max-height:calc(100% - 24px)}
}