/* =========================================================
   안양보청기 — 기본 스타일시트
   브랜드 컬러/폰트는 아래 :root 변수만 바꾸면 전체에 반영됩니다.
   ========================================================= */

:root {
  /* ---- 브랜드 컬러 (네이비) : 실제 값 확정되면 이 두 줄만 교체 ---- */
  --brand:        #0B2340;   /* 메인 네이비 */
  --brand-2:      #16457C;   /* 밝은 네이비 (그라데이션/호버) */
  --accent:       #2e9fe6;   /* 포인트 골드 (CTA 강조) */

  /* ---- 중립 색 ---- */
  --ink:          #1a2230;   /* 기본 텍스트 */
  --ink-soft:     #566072;   /* 보조 텍스트 */
  --line:         #e5e8ee;   /* 구분선 */
  --bg:           #ffffff;
  --bg-soft:      #f5f7fa;   /* 섹션 배경 */
  --white:        #ffffff;

  /* ---- 타이포 ---- */
  --font: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont,
          "Malgun Gothic", "맑은 고딕", sans-serif;
  --fs-base: 17px;           /* JS 글자크기 조절 시 이 값을 변경 */

  /* ---- 레이아웃 ---- */
  --wrap: 1240px;
  --header-h: 84px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 35, 64, .08);
  --shadow-lg: 0 20px 50px rgba(11, 35, 64, .14);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-y: scroll; scrollbar-gutter: stable; zoom: 0.9; } /* 전 페이지 기본 배율 90% 통일 */
@media print { html { zoom: 1; } } /* 인쇄(청력검사 결과지 등)는 원래 배율 유지 */
body {
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
/* 이모지 대체용 라인 아이콘(흑백, 주변 색 상속) */
.ico { display: inline-block; width: 1em; height: 1em; vertical-align: -0.14em; flex: 0 0 auto; }
a { color: inherit; text-decoration: none; }
ul, li { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
:focus-visible { outline: 3px solid var(--brand-2); outline-offset: 2px; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  color: var(--white);
  background: var(--brand);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
/* 어두운 히어로가 있는 페이지 : 최상단에서는 투명, 스크롤/hover 시 솔리드 */
.header.has-transparent.at-top:not(:hover) { background: transparent; box-shadow: none; }
.header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { flex: 0 0 auto; }
.logo svg { height: 26px; width: auto; fill: #fff; }
.logo svg .st0 { fill: #fff; }
.logo img { height: 26px; }

.header__right { display: flex; align-items: center; gap: 14px; }

/* 오른쪽 투명 필(pill) 네비 */
.header__nav {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px; padding: 4px 8px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.gnb__list { display: flex; align-items: center; gap: clamp(2px, .5vw, 10px); }
.gnb__item { position: static; }
.gnb__link {
  display: flex; align-items: center; height: 34px; padding: 0 clamp(12px, 1.2vw, 20px);
  border-radius: 999px; font-size: 1rem; font-weight: 600;
  color: rgba(255,255,255,.9); white-space: nowrap;
  transition: background .2s, color .2s;
}
.gnb__item:hover .gnb__link { background: rgba(255,255,255,.18); color: #fff; }

/* 언어(글로브) 버튼 */
.lang {
  width: 52px; height: 52px; border-radius: 50%; flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.3); color: #fff;
  display: grid; place-items: center; font-size: 1.2rem;
  transition: background .2s;
}
.lang:hover { background: rgba(255,255,255,.14); }

/* 로그인 / 상담예약 (글로브 대체) */
.hd-login {
  display: flex; align-items: center; gap: 7px; color: #fff;
  font-size: .98rem; font-weight: 600; padding: 0 6px; opacity: .9;
  transition: opacity .2s;
}
.hd-login:hover { opacity: 1; }
.hd-login svg { width: 19px; height: 19px; fill: currentColor; }
.btn-reserve {
  display: flex; align-items: center; height: 44px; padding: 0 22px;
  border-radius: 999px; background: var(--accent); color: #ffffff;
  font-size: .98rem; font-weight: 700; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-reserve:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(46, 159, 230,.4); }

/* 메가 드롭다운 — 우측 네비 아래에만 뜨는 글래스 카드 (헤더 pill과 같은 색감) */
.header__mega {
  position: absolute; top: 100%;
  right: max(20px, calc((100% - var(--wrap)) / 2));
  width: min(760px, calc(100% - 40px));
  background: rgba(9, 19, 35, .97);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  overflow: hidden; max-height: 0; opacity: 0; pointer-events: none;
  box-shadow: 0 26px 56px rgba(0,0,0,.45);
  transition: max-height .4s var(--ease), opacity .26s var(--ease);
}
.header:hover .header__mega, .header:focus-within .header__mega {
  max-height: 460px; opacity: 1; pointer-events: auto;
}
.header__mega > .wrap { width: auto; margin: 0; }
.mega__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
  padding: 14px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease) .05s, transform .3s var(--ease) .05s;
}
.header:hover .mega__grid, .header:focus-within .mega__grid { opacity: 1; transform: none; }
.mega__col { padding: 12px 6px 14px; }
.mega__col h4 {
  font-size: .9rem; font-weight: 800; color: #fff; margin-bottom: 8px; padding: 0 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.12); letter-spacing: -.01em;
}
.mega__col a {
  display: block; padding: 9px 10px; border-radius: 8px;
  color: rgba(255,255,255,.66); font-size: .9rem; font-weight: 600; line-height: 1.35;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.mega__col a:hover { background: rgba(255,255,255,.09); color: #fff; }

.hamburger { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; overflow: hidden; background: var(--brand); }
.hero__track { position: relative; z-index: 1; height: min(88vh, 760px); }
/* 각 슬라이드 = 배경 사진 한 장 (텍스트 없는 풀스크린 포토 슬라이더).
   실제 사진은 assets/img/hero1.jpg ~ hero4.jpg 로 넣으면 됩니다. */
.hero__slide {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0; transition: opacity 1s var(--ease);
  background-size: cover; background-position: center;
  background-color: var(--brand);
}
.hero__slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.3) 100%);
}
.hero__slide.is-active { opacity: 1; }
/* 사진이 없을 때도 슬라이드가 구분되도록 톤 차이 (사진 넣으면 사진이 우선) */
.hero__slide:nth-child(odd) { background-color: #0B2340; }
.hero__slide:nth-child(even) { background-color: #123458; }
.hero__slide:nth-child(3n) { background-color: #16457C; }
.hero__ghost {
  position: absolute; z-index: 1; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(90px, 20vw, 320px); font-weight: 900; letter-spacing: .05em;
  color: rgba(255,255,255,.06); pointer-events: none; user-select: none;
}
.hero__content { position: relative; z-index: 2; padding: 0 20px; }
.hero__eyebrow {
  display: inline-block; margin-bottom: 22px; padding: 8px 20px;
  border: 1px solid rgba(255,255,255,.4); border-radius: 999px;
  font-size: .95rem; font-weight: 600; letter-spacing: .02em;
}
.hero__title {
  font-size: clamp(30px, 5vw, 58px); font-weight: 800; line-height: 1.25;
  letter-spacing: -.02em;
}
.hero__title .pt { color: var(--accent); }
.hero__desc { margin-top: 20px; font-size: clamp(15px, 1.5vw, 19px); color: rgba(255,255,255,.82); }
.hero__cta { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- 히어로 컨트롤 : 원 없이 화살표만 크게 (호버 애니메이션) --- */
.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  background: none; border: 0; color: #fff;
  font-size: clamp(2.8rem, 4.4vw, 4.4rem); line-height: 1; opacity: .82;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  transition: opacity .2s var(--ease);
}
.hero__arrow:hover { opacity: 1; }
.hero__arrow span { display: block; transition: transform .25s var(--ease); }
.hero__arrow--prev { left: clamp(10px, 3.5vw, 50px); }
.hero__arrow--next { right: clamp(10px, 3.5vw, 50px); }
.hero__arrow--prev:hover span { transform: translateX(-6px); }
.hero__arrow--next:hover span { transform: translateX(6px); }

/* --- 심플 인디케이터 (활성 도트가 늘어나며 채워짐) --- */
.hero__dots {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; align-items: center; gap: 10px;
}
.hero__dot {
  width: 11px; height: 11px; border-radius: 999px; position: relative; overflow: hidden;
  background: rgba(255,255,255,.35);
  transition: width .45s var(--ease), background .3s var(--ease);
}
.hero__dot:hover { background: rgba(255,255,255,.6); }
.hero__dot.is-active { width: 48px; background: rgba(255,255,255,.25); }
.hero__dot span { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: #fff; border-radius: 999px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px;
  font-size: 1rem; font-weight: 700; letter-spacing: -.01em;
  transition: .2s var(--ease);
}
.btn--primary { background: var(--accent); color: #ffffff; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(46, 159, 230,.4); }
.btn--ghost { background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.22); }
.btn--navy { background: var(--brand); color: var(--white); }
.btn--navy:hover { background: var(--brand-2); }

/* =========================================================
   SECTION 공통
   ========================================================= */
.section { padding: clamp(44px, 6vw, 82px) 0; }
.section--soft { background: var(--bg-soft); }
/* 소제목(소제목 묶음) — 사이트 전체 통일: 영문 태그 제거 + 간격 축소 */
.sec-head { text-align: center; margin-bottom: 34px; }
.sec-head__tag { display: none; }   /* 영문 태그(SERVICE/ABOUT 등) 전 페이지 숨김 */
.sec-head__title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; letter-spacing: -.02em; }
.sec-head__desc { margin-top: 6px; color: var(--ink-soft); font-size: 1.05rem; }

/* --- 퀵 서비스 4카드 --- */
.quick-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: -60px; position: relative; z-index: 10; }
.qcard {
  background: var(--white); border-radius: var(--radius); padding: 34px 28px;
  box-shadow: var(--shadow); text-align: center; transition: .25s var(--ease);
  border: 1px solid var(--line);
}
.qcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.qcard__ico {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--bg-soft); display: grid; place-items: center; font-size: 1.7rem;
  color: var(--brand);
}
.qcard__title { font-size: 1.2rem; font-weight: 800; }
.qcard__desc { margin-top: 8px; color: var(--ink-soft); font-size: .96rem; }

/* --- 보청기 종류 그리드 --- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.fcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: .25s var(--ease);
}
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.fcard__thumb { aspect-ratio: 16 / 10; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%); display: grid; place-items: center; color: rgba(255,255,255,.85); font-weight: 800; font-size: 1.3rem; }
.fcard__body { padding: 26px; }
.fcard__title { font-size: 1.25rem; font-weight: 800; }
.fcard__desc { margin-top: 10px; color: var(--ink-soft); font-size: .98rem; }
.fcard__more { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; color: var(--brand-2); font-weight: 700; }

/* --- 정부지원 배너 --- */
.support {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 100%);
  color: var(--white); border-radius: 22px; padding: clamp(40px, 5vw, 66px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
.support__title { font-size: clamp(24px, 3vw, 36px); font-weight: 800; line-height: 1.35; }
.support__title b { color: var(--accent); }
.support__desc { margin-top: 16px; color: rgba(255,255,255,.85); }
.support__box { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius); padding: 28px; text-align: center; }
.support__amount { font-size: clamp(30px, 4vw, 46px); font-weight: 900; color: var(--accent); }
.support__note { margin-top: 6px; font-size: .95rem; color: rgba(255,255,255,.8); }

/* --- 게시판(공지/이벤트) --- */
.board { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.board__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--brand); }
.board__head h3 { font-size: 1.4rem; font-weight: 800; }
.board__head a { color: var(--ink-soft); font-size: .92rem; font-weight: 600; }
.board__item { display: flex; align-items: center; gap: 14px; padding: 15px 4px; border-bottom: 1px solid var(--line); transition: .18s; }
.board__item:hover { background: var(--bg-soft); padding-left: 10px; }
.board__badge { flex: 0 0 auto; font-size: .78rem; font-weight: 800; color: var(--brand-2); background: #eaf0f8; padding: 4px 10px; border-radius: 6px; }
.board__txt { flex: 1 1 auto; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.board__date { flex: 0 0 auto; color: var(--ink-soft); font-size: .88rem; }

/* =========================================================
   FLOATING QUICK MENU
   ========================================================= */
.floating { position: fixed; right: 24px; bottom: 28px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab {
  width: 76px; height: 76px; border-radius: 18px; display: grid; place-content: center; justify-items: center; gap: 4px;
  text-align: center; font-size: .82rem; font-weight: 700; box-shadow: var(--shadow-lg); transition: .2s;
}
.fab i { font-size: 1.25rem; font-style: normal; }
.fab svg { width: 31px; height: 31px; }
.fab--naver svg { width: 23px; height: 23px; }
.fab--brand { background: var(--brand); color: var(--white); }
.fab--dark  { background: var(--accent); color: #ffffff; }
.fab--tel   { background: var(--brand); color: #fff; }
.fab--kakao { background: #FEE500; color: #3B1E1E; }
.fab--bot   { background: var(--brand-2); color: #fff; }
.fab--naver { background: #03C75A; color: #fff; }
.fab .ni { font-weight: 900; font-style: normal; font-size: 1.35rem; line-height: 1; }
.fab--top   { background: var(--white); color: var(--brand); border: 1px solid var(--line); width: 76px; height: 56px; }
.fab:hover { transform: translateY(-3px); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: linear-gradient(180deg, #0b1c33 0%, #06111f 100%);
  color: rgba(255,255,255,.66); padding: 64px 0 30px; font-size: .94rem;
}
.footer__top {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 34px 60px; align-items: flex-start;
  padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand { flex: 0 0 auto; max-width: 440px; }
.footer__logo svg { height: 30px; fill: #fff; }
.footer__logo svg .st0 { fill: #fff; }
.footer__info {
  margin-top: 20px; font-style: normal; display: flex; flex-direction: column; gap: 7px;
  color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.55;
}
.footer__info b { color: rgba(255,255,255,.9); font-weight: 700; }
.footer__social { display: flex; gap: 9px; margin-top: 22px; }
.footer__social .soc {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22);
  display: grid; place-items: center; color: rgba(255,255,255,.72); transition: .2s var(--ease);
}
.footer__social .soc svg { width: 19px; height: 19px; display: block; }
.footer__social .soc:hover { background: #fff; color: var(--brand); border-color: #fff; transform: translateY(-3px); }

.footer__sitemap { display: flex; gap: 74px; flex-wrap: wrap; }
.fcol h4 { color: #fff; font-size: 1.08rem; font-weight: 800; margin-bottom: 16px; }
.fcol a { display: block; padding: 4px 0; color: rgba(255,255,255,.6); font-size: 1.02rem; font-weight: 500; transition: color .16s var(--ease), transform .16s var(--ease); }
.fcol a:hover { color: #fff; transform: translateX(3px); }

.footer__bottom { padding-top: 12px; }
.footer__copy { font-size: .84rem; color: rgba(255,255,255,.4); }

@media (max-width: 760px) {
  .footer { padding: 48px 0 28px; }
  .footer__top { gap: 30px 44px; }
  .footer__brand { max-width: none; }
  .footer__sitemap { gap: 44px; }
}

/* =========================================================
   반응형
   ========================================================= */
@media (max-width: 1080px) {
  .quick-cards { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .header__nav, .lang, .hd-login, .btn-reserve, .header__mega { display: none; }
  .hamburger { display: grid; place-items: center; width: 42px; height: 42px; color: #fff; font-size: 1.5rem; }
  .support, .board { grid-template-columns: 1fr; }

  /* 모바일 슬라이드 메뉴 */
  .m-nav { position: fixed; inset: 0 0 0 auto; width: min(84%, 340px); background: var(--white); z-index: 200; transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto; box-shadow: var(--shadow-lg); }
  .m-nav.is-open { transform: translateX(0); }
  .m-nav__head { display: flex; align-items: center; justify-content: space-between; padding: 20px; background: var(--brand); color: #fff; }
  .m-nav__head svg { height: 24px; fill: #fff; } .m-nav__head svg .st0 { fill:#fff; }
  .m-nav details { border-bottom: 1px solid var(--line); }
  .m-nav summary { padding: 18px 22px; font-weight: 800; font-size: 1.08rem; cursor: pointer; }
  .m-nav ul { padding: 4px 0 14px; }
  .m-nav ul a { display: block; padding: 10px 34px; color: var(--ink-soft); font-weight: 600; }
  .m-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 150; opacity: 0; visibility: hidden; transition: .3s; }
  .m-backdrop.is-open { opacity: 1; visibility: visible; }
}
@media (max-width: 620px) {
  .quick-cards, .feature-grid { grid-template-columns: 1fr; }
  .hero__arrow { display: none; }
  .floating { right: 14px; bottom: 16px; }
  .fab { width: 62px; height: 62px; font-size: .72rem; }
  .fab--top { height: 46px; }
}
@media (min-width: 901px) { .m-nav, .m-backdrop { display: none; } }


/* =========================================================
   서브페이지 공통
   ========================================================= */
/* 로고를 <img>로 넣는 서브페이지용 (로고 파일에 흰색 내장) */
.logo img { height: 30px; width: auto; }
.footer__logo img { height: 26px; }
.m-nav__head img { height: 24px; }

/* 페이지 상단 타이틀 배너 */
.page-hero {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff; text-align: center;
  padding: calc(var(--header-h) + clamp(46px, 6vw, 80px)) 0 clamp(46px, 6vw, 78px);
}
.page-hero__tag { color: var(--accent); font-weight: 800; letter-spacing: .16em; font-size: .86rem; text-transform: uppercase; }
.page-hero__title { margin-top: 12px; font-size: clamp(28px, 4vw, 46px); font-weight: 800; letter-spacing: -.02em; }
.page-hero__crumb { margin-top: 16px; color: rgba(255,255,255,.72); font-size: .94rem; }
.page-hero__crumb span { color: #fff; }

/* 콘텐츠 서브페이지: 파란 타이틀 배너 제거 → 본문이 헤더 바로 아래에서 시작.
   헤더는 항상 솔리드 네이비로 고정하고 첫 섹션에 상단 여백 확보. */
.page-hero { display: none !important; }
body:has(.page-hero) .header { background: var(--brand) !important; box-shadow: 0 2px 14px rgba(11,35,64,.18); }
.page-hero + section { padding-top: calc(var(--header-h) + clamp(34px, 4vw, 54px)); }

/* 흰 배경형 페이지 헤더 (공지사항 / 뉴스) — 레퍼런스식 */
.page-head { padding-top: calc(var(--header-h) + 56px); }
.page-head__inner {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-bottom: 28px; border-bottom: 1px solid var(--line);
}
.page-head__title { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.page-head__desc { margin-top: 6px; color: var(--ink-soft); }
.page-head__crumb { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); font-size: .9rem; }
.page-head__crumb b { color: var(--ink); font-weight: 700; }

/* =========================================================
   통계 벤토 그리드 (시설안내)
   ========================================================= */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; grid-auto-rows: 168px; }
.bento__card {
  border-radius: 22px; padding: 30px; overflow: hidden; position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--line);
}
.bento__card.is-wide  { grid-column: span 2; }
.bento__card.is-tall  { grid-row: span 2; }
.bento__card.c-navy   { background: linear-gradient(145deg, var(--brand), var(--brand-2)); color: #fff; border-color: transparent; }
.bento__card.c-mint   { background: #eef4fb; }
.bento__card.c-soft   { background: var(--bg-soft); }
.bento__card.c-award  { background: linear-gradient(160deg, #eef2f7, #dfe7f1); align-items: center; text-align: center; justify-content: center; gap: 14px; }
.stat__label { font-size: 1rem; font-weight: 700; color: var(--ink-soft); }
.c-navy .stat__label { color: rgba(255,255,255,.85); }
.stat__num { font-size: clamp(34px, 4.2vw, 56px); font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.stat__num .stat__unit { font-size: .4em; font-weight: 700; margin-left: 6px; color: var(--ink-soft); }
.c-navy .stat__num { color: #fff; } .c-navy .stat__unit { color: rgba(255,255,255,.75); }
.stat__ico { font-size: 2.4rem; align-self: flex-end; opacity: .9; }
.award__badge { font-size: 2.8rem; }
.award__title { font-size: 1.35rem; font-weight: 800; color: var(--brand); line-height: 1.35; }

/* 사진 갤러리 */
.gallery { display: grid; grid-template-columns: 1.1fr 1.3fr; gap: 20px; margin-top: 20px; }
.gallery__item {
  border-radius: 22px; overflow: hidden; position: relative;
  aspect-ratio: 16 / 10; background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid; place-items: center; color: rgba(255,255,255,.9);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.gallery__ph { text-align: center; font-weight: 700; }
.gallery__ph b { display: block; font-size: 2rem; margin-bottom: 8px; }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .bento__card.is-wide { grid-column: span 2; }
  .gallery { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento__card.is-wide { grid-column: span 1; }
}

/* =========================================================
   난청 도넛 인포그래픽 (경고형)
   ========================================================= */
.infographic { --warn: #E8552D; background: linear-gradient(150deg, var(--brand) 0%, #0f1c30 100%); color: #fff; }
.info__head { text-align: center; max-width: 760px; margin: 0 auto 46px; }
.info__title { font-size: clamp(26px, 3.6vw, 42px); font-weight: 800; line-height: 1.35; }
.info__title b { color: var(--accent); }
.info__pill {
  display: inline-block; margin-top: 22px; padding: 12px 26px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  font-size: 1.05rem; font-weight: 700;
}
.info__pill b { color: var(--warn); }
.info__src { margin-top: 12px; font-size: .86rem; color: rgba(255,255,255,.6); }

.info__card {
  background: #fff8f5; color: var(--ink); border-radius: 24px;
  padding: clamp(32px, 5vw, 56px); max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr; gap: clamp(30px, 5vw, 64px); align-items: center;
}
/* 도넛 */
.donut { position: relative; width: 200px; height: 200px; flex: 0 0 auto; }
.donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut circle { fill: none; stroke-width: 22; }
.donut .track { stroke: #f0ddd4; }
.donut .bar {
  stroke: var(--warn); stroke-linecap: round;
  stroke-dasharray: 502; stroke-dashoffset: 502;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.donut.is-on .bar { stroke-dashoffset: 150.6; } /* 502 * (1-0.70) */
.donut__num { position: absolute; inset: 0; display: grid; place-content: center; font-size: 2.6rem; font-weight: 900; color: var(--warn); }
/* 사람 아이콘 */
.people { display: flex; flex-wrap: wrap; gap: 8px; }
.people svg { width: 44px; height: 44px; }
.people .p { fill: #e7d3c9; transition: fill .3s var(--ease); }
.people.is-on .p.on { fill: var(--warn); }
.info__ratio { margin-top: 20px; font-size: 1rem; }
.info__ratio b { font-size: 1.5rem; font-weight: 900; color: var(--warn); }
.info__ratio .sub { color: var(--ink-soft); }
.info__cardsrc { margin-top: 14px; font-size: .84rem; color: var(--ink-soft); }

@media (max-width: 720px) {
  .info__card { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .people { justify-content: center; }
}

/* =========================================================
   증상 말풍선 + 체크리스트 (이명상담)
   ========================================================= */
.symptoms-sec { background: linear-gradient(160deg, var(--brand) 0%, var(--brand-2) 100%); color: #fff; }
.symptoms-sec .sec-head__title, .symptoms-sec .sec-head__desc { color: #fff; }
.symptoms-sec .sec-head__desc { color: rgba(255,255,255,.82); }
.symptoms {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 50px;
}
.symptom { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.symptom__avatar {
  width: 92px; height: 92px; border-radius: 50%; overflow: hidden;
  background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.4);
  display: grid; place-items: center; font-size: 2.2rem; flex: 0 0 auto;
}
.symptom__avatar img { width: 100%; height: 100%; object-fit: cover; }
.symptom__bubble {
  position: relative; background: #fff; color: var(--ink);
  padding: 14px 18px; border-radius: 16px; font-size: .95rem; font-weight: 600;
  text-align: center; box-shadow: var(--shadow);
}
.symptom__bubble::before {
  content: ""; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 8px solid #fff;
}

/* 체크리스트 */
.checklist-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 46px; align-items: start; }
.checklist-wrap h3 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 800; }
.checklist-wrap p { margin-top: 14px; color: var(--ink-soft); }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; }
.check-item { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.check-item i {
  width: 26px; height: 26px; flex: 0 0 auto; border-radius: 50%;
  background: var(--brand); color: #fff; display: grid; place-items: center;
  font-size: .8rem; font-style: normal;
}

@media (max-width: 900px) {
  .symptoms { grid-template-columns: repeat(2, 1fr); }
  .checklist-wrap { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 560px) {
  .symptoms { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
}


/* =========================================================
   고정 헤더 대응 (본문이 헤더에 가려지지 않도록)
   ========================================================= */
/* 헤더는 fixed 오버레이. 각 페이지의 첫 섹션(.hero / .page-hero)이
   헤더 높이만큼 상단 여백을 확보하므로 body 자체 여백은 두지 않습니다. */

/* =========================================================
   게시판 목록 (공지사항) — 테이블형
   ========================================================= */
.board-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; }
.board-count { font-weight: 700; }
.board-count b { color: var(--brand); }
.board-search {
  display: flex; align-items: center; gap: 8px; width: min(100%, 340px);
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px;
}
.board-search input { flex: 1; border: 0; background: none; font: inherit; outline: none; }
.board-search button { color: var(--ink-soft); font-size: 1.05rem; }

.board-list { border-top: 2px solid var(--brand); margin-bottom: 30px; }
.board-row {
  display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 20px;
  padding: 22px 12px; border-bottom: 1px solid var(--line);
  cursor: pointer; transition: background .18s;
}
.board-row:hover { background: var(--bg-soft); }
.board-row:hover .board-row__title { color: var(--brand); }
.board-row__no { color: #b9c0cc; font-weight: 700; text-align: center; font-size: .95rem; }
.board-row__title {
  font-size: 1.1rem; font-weight: 700; transition: color .18s;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.board-row__badge {
  display: inline-block; margin-left: 10px; vertical-align: middle;
  font-size: .76rem; font-weight: 700; color: var(--brand-2);
  background: #eaf0f8; padding: 4px 11px; border-radius: 999px;
}
.board-row__date { color: var(--ink-soft); font-size: .92rem; white-space: nowrap; }

/* 사용설명서 상세 — 제목·작성일·조회수·첨부파일 (스타키 레퍼런스 스타일) */
.mn-view { max-width: 100%; }
.mn-meta { border-top: 2px solid var(--brand); margin: 0 0 26px; }
.mn-meta__row { display: flex; align-items: stretch; border-bottom: 1px solid var(--line); }
.mn-meta__row--2 { }
.mn-meta__cell { flex: 1; display: flex; align-items: stretch; }
.mn-meta__cell + .mn-meta__cell { border-left: 1px solid var(--line); }
.mn-meta dt {
  flex: 0 0 118px; display: flex; align-items: center; gap: 10px;
  padding: 16px 20px; font-weight: 700; color: var(--ink);
  background: var(--bg-soft); border-right: 1px solid var(--line);
}
.mn-meta__cell dt { flex-basis: 118px; }
.mn-tools { display: flex; justify-content: flex-end; align-items: center; gap: 4px; margin-bottom: 14px; }
.mn-meta dd { flex: 1; display: flex; align-items: center; padding: 16px 20px; color: var(--ink-soft); min-width: 0; }
.mn-file { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-2); font-weight: 600; word-break: break-all; }
.mn-file svg { width: 18px; height: 18px; flex: 0 0 auto; }
.mn-file:hover { color: var(--brand); text-decoration: underline; }
.mn-file--none { color: #b0b6c0; font-weight: 500; }
.mn-body { padding: 8px 4px 30px; line-height: 2; color: var(--ink); font-size: 1.02rem; min-height: 90px; }
.mn-actions { display: flex; justify-content: flex-end; padding-top: 22px; border-top: 1px solid var(--line); }
@media (max-width: 560px) {
  .mn-meta__row--2 { flex-direction: column; }
  .mn-meta__cell + .mn-meta__cell { border-left: 0; border-top: 1px solid var(--line); }
  .mn-meta dt { flex-basis: 84px; padding: 13px 14px; }
  .mn-meta dd { padding: 13px 14px; }
}

/* 사용설명서(자료실) — 상세 다운로드 박스(구) */
.dl-box {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  margin: 4px 0 30px; padding: 20px 24px; border: 1px solid var(--line);
  background: var(--bg-soft); border-radius: 16px;
}
.dl-box__meta { display: flex; align-items: center; gap: 14px; min-width: 0; }
.dl-box__ico {
  width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center;
  border-radius: 12px; background: #eaf0f8; color: var(--brand);
}
.dl-box__ico svg { width: 24px; height: 24px; }
.dl-box__name { font-weight: 700; color: var(--ink); word-break: break-all; }
.dl-box__name em { font-style: normal; font-weight: 500; color: var(--ink-soft); font-size: .9em; margin-left: 4px; }
.dl-box--soon { color: var(--ink-soft); }

/* =========================================================
   뉴스 카드 그리드
   ========================================================= */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card { cursor: pointer; }
.news-card__thumb {
  aspect-ratio: 1 / 1; border-radius: 18px; overflow: hidden;
  background: #e8ecf2;
  display: grid; place-items: center; text-align: center; color: var(--ink-soft); font-weight: 700; font-size: 1.76rem;
  transition: transform .3s var(--ease);
}
.news-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-card:hover .news-card__thumb { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card__badge { display: inline-block; margin-top: 18px; font-size: .82rem; font-weight: 700; color: var(--ink-soft); border: 1px solid var(--line); padding: 4px 12px; border-radius: 999px; }
.news-card__title { margin-top: 14px; font-size: 1.16rem; font-weight: 700; line-height: 1.4; }
.news-card__date { margin-top: 12px; color: var(--ink-soft); font-size: .9rem; }

/* =========================================================
   게시글 상세
   ========================================================= */
.detail-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  border-bottom: 2px solid var(--brand); padding-bottom: 26px; margin-bottom: 30px;
}
.detail-head__main { min-width: 0; }
.detail-tools { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; }
.detail-views { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-soft); font-size: .9rem; margin-right: 10px; }
.detail-views svg { width: 17px; height: 17px; opacity: .55; }
.detail-views b { color: var(--ink); font-weight: 700; }
.detail-tool {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 13px;
  border-radius: 9px; background: transparent; color: var(--ink-soft);
  font-weight: 600; font-size: .9rem; cursor: pointer;
  transition: background .16s var(--ease), color .16s var(--ease);
}
.detail-tool svg { width: 16px; height: 16px; }
.detail-tool:hover { background: var(--bg-soft); color: var(--brand); }

/* 토스트 (링크 복사 알림 등) */
.toast {
  position: fixed; left: 50%; bottom: 42px; transform: translate(-50%, 18px);
  display: flex; align-items: center; gap: 9px;
  background: rgba(15, 26, 43, .96); color: #fff; padding: 14px 24px; border-radius: 999px;
  font-size: .95rem; font-weight: 600; letter-spacing: -.01em;
  box-shadow: 0 14px 38px rgba(0,0,0,.32); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; z-index: 300;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: var(--accent); }

/* 공유 옵션 시트 (모달) */
.share-modal { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; opacity: 0; transition: opacity .25s var(--ease); }
.share-modal.show { opacity: 1; }
.share-modal__backdrop { position: absolute; inset: 0; background: rgba(10,20,36,.55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.share-modal__card {
  position: relative; width: min(420px, calc(100% - 40px)); background: #fff; border-radius: 20px;
  padding: 30px 26px 32px; box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(.98); transition: transform .28s var(--ease);
}
.share-modal.show .share-modal__card { transform: none; }
.share-modal__close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%;
  color: var(--ink-soft); font-size: 1.05rem; display: grid; place-items: center; transition: background .16s;
}
.share-modal__close:hover { background: var(--bg-soft); }
.share-modal__title { text-align: center; font-size: 1.2rem; font-weight: 800; margin-bottom: 24px; }
.share-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 8px; }
.share-opt { display: flex; flex-direction: column; align-items: center; gap: 9px; background: none; cursor: pointer; }
.share-opt__label { font-size: .84rem; font-weight: 600; color: var(--ink-soft); transition: color .16s; }
.share-opt:hover .share-opt__label { color: var(--ink); }
.share-ico { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; transition: transform .18s var(--ease); }
.share-opt:hover .share-ico { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0,0,0,.16); }
.share-ico svg { width: 26px; height: 26px; }
.share-ico--kakao     { background: #FEE500; color: #3B1E1E; }
.share-ico--x         { background: #000; color: #fff; }
.share-ico--threads   { background: #000; color: #fff; }
.share-ico--instagram { background: linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7); color: #fff; }
.share-ico--facebook  { background: #1877F2; color: #fff; }
.share-ico--copy      { background: var(--bg-soft); color: var(--brand); }
.detail-badge { display: inline-block; font-size: .84rem; font-weight: 700; color: var(--brand-2); background: #eaf0f8; padding: 5px 14px; border-radius: 999px; }
.detail-title { margin-top: 16px; font-size: clamp(24px, 3vw, 34px); font-weight: 800; line-height: 1.35; }
.detail-meta { margin-top: 14px; color: var(--ink-soft); font-size: .94rem; }
.detail-meta b { color: var(--ink); font-weight: 700; }
.detail-body { font-size: 1.05rem; line-height: 1.9; color: #333; min-height: 160px; }
.detail-body p { margin-bottom: 18px; }
.detail-actions { margin: 120px 0 120px; text-align: center; }

/* 이전글 / 다음글 내비 */
.detail-nav { margin-top: 30px; border-top: 1px solid var(--line); }
.detail-nav__row {
  display: flex; align-items: center; gap: 20px; padding: 18px 6px;
  border-bottom: 1px solid var(--line); transition: background .18s;
}
.detail-nav__row:hover { background: var(--bg-soft); }
.detail-nav__label { flex: 0 0 64px; font-weight: 800; color: var(--brand); font-size: .95rem; }
.detail-nav__title { min-width: 0; color: var(--ink); font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.detail-nav__row.is-none { pointer-events: none; }
.detail-nav__row.is-none .detail-nav__label { color: var(--ink-soft); }
.detail-nav__row.is-none .detail-nav__title { color: #b0b6c0; }

@media (max-width: 820px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .news-grid { grid-template-columns: 1fr; }
  .board-row { grid-template-columns: 40px 1fr; }
  .board-row__date { grid-column: 2; }
  .dl-box { padding: 16px 18px; }
}

/* =========================================================
   로그인 / 회원 페이지
   ========================================================= */
.auth {
  display: grid; place-items: center;
  padding: calc(var(--header-h) + 64px) 20px 90px;
  background: var(--bg-soft); min-height: 78vh;
}
.auth__card {
  width: min(100%, 430px); background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: clamp(32px, 5vw, 46px); box-shadow: var(--shadow);
}
.auth__title { text-align: center; font-size: 1.65rem; font-weight: 800; }
.auth__sub { text-align: center; color: var(--ink-soft); margin: 8px 0 30px; font-size: .95rem; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .9rem; font-weight: 700; margin-bottom: 8px; }
.field input {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px;
  font: inherit; outline: none; transition: border-color .18s;
}
.field input:focus { border-color: var(--brand-2); }
.auth__row { display: flex; align-items: center; justify-content: space-between; font-size: .9rem; margin: 4px 0 22px; }
.auth__row label { color: var(--ink-soft); display: flex; gap: 7px; align-items: center; cursor: pointer; }
.auth__row a { color: var(--brand-2); font-weight: 600; }
.auth__btn {
  width: 100%; padding: 15px; border-radius: 12px; background: var(--brand); color: #fff;
  font-weight: 800; font-size: 1.05rem; cursor: pointer; transition: background .2s;
}
.auth__btn:hover { background: var(--brand-2); }
.auth__divider { text-align: center; margin: 26px 0; color: #c2c2c2; font-size: .84rem; position: relative; }
.auth__divider::before, .auth__divider::after {
  content: ""; position: absolute; top: 50%; width: 38%; height: 1px; background: var(--line);
}
.auth__divider::before { left: 0; } .auth__divider::after { right: 0; }
.auth__social { display: flex; flex-direction: column; gap: 10px; }
.social-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: filter .18s var(--ease), box-shadow .18s var(--ease);
}
.social-btn:hover { filter: brightness(.97); box-shadow: 0 6px 16px rgba(0,0,0,.08); }
.social-btn__ico { width: 20px; height: 20px; flex: 0 0 auto; }
.social-btn--google { background: #fff; border-color: #e2e5ea; color: #3c4043; }
.social-btn--kakao  { background: #FEE500; color: #191600; }
.social-btn--naver  { background: #03C75A; color: #fff; }
.auth__foot { text-align: center; margin-top: 24px; font-size: .93rem; color: var(--ink-soft); }
.auth__foot a { color: var(--brand); font-weight: 700; }
.auth__agree { display: flex; align-items: flex-start; gap: 8px; font-size: .9rem; color: var(--ink-soft); margin: 6px 0 18px; cursor: pointer; }
.auth__agree input { margin-top: 3px; flex: 0 0 auto; }
.auth__tabs { display: flex; gap: 6px; margin-bottom: 24px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 5px; }
.auth__tab { flex: 1; padding: 11px; border-radius: 9px; font-weight: 700; color: var(--ink-soft); font-size: .95rem; cursor: pointer; transition: background .16s var(--ease), color .16s var(--ease); }
.auth__tab.is-active { background: #fff; color: var(--brand); box-shadow: var(--shadow); }

/* =========================================================
   보청기 상세페이지 (제품 상세 · kup 스타일)
   ========================================================= */
.pd { padding-top: calc(var(--header-h) + 40px); }
.pd__back { display: inline-block; margin-bottom: 24px; color: var(--ink-soft); font-weight: 600; font-size: .95rem; }
.pd__back:hover { color: var(--brand); }
.pd__top { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: start; margin-bottom: 44px; }
.pd__img { aspect-ratio: 1 / 1; border: 1px solid var(--line); border-radius: 18px; background: var(--bg-soft); display: grid; place-content: center; text-align: center; gap: 8px; }
.pd__img span { font-size: 1.9rem; font-weight: 800; color: var(--brand); }
.pd__img em { font-style: normal; font-size: .9rem; color: var(--ink-soft); }
.pd__thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pd__thumb { width: 84px; height: 84px; border: 1px solid var(--brand); border-radius: 12px; background: var(--bg-soft); display: grid; place-items: center; font-size: .78rem; font-weight: 700; color: var(--ink-soft); }
.pd__tag { color: var(--brand-2); font-weight: 800; font-size: .85rem; letter-spacing: .04em; }
.pd__name { margin: 10px 0 24px; font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -.02em; line-height: 1.3; }
.pd__spec { width: 100%; border-top: 2px solid var(--brand); border-collapse: collapse; }
.pd__spec th, .pd__spec td { padding: 15px 6px; text-align: left; border-bottom: 1px solid var(--line); font-size: .98rem; vertical-align: top; }
.pd__spec th { width: 108px; color: var(--ink-soft); font-weight: 600; }
.pd__spec td { font-weight: 600; }
.pd__download { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; padding: 14px 24px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); font-weight: 700; cursor: pointer; transition: border-color .16s var(--ease), color .16s var(--ease), background .16s var(--ease); }
.pd__download svg { width: 18px; height: 18px; }
.pd__download:hover { border-color: var(--brand); color: var(--brand); background: var(--bg-soft); }
.pd__tabs { display: flex; border-bottom: 1px solid var(--line); }
.pd__tab { flex: 1; padding: 16px; font-weight: 700; color: var(--ink-soft); border-bottom: 3px solid transparent; margin-bottom: -1px; cursor: pointer; transition: color .16s var(--ease), border-color .16s var(--ease); }
.pd__tab.is-active { color: var(--brand); border-bottom-color: var(--brand); }
.pd__tab:hover { color: var(--brand); }
.pd__panel { padding: 34px 4px; line-height: 1.9; color: #333; font-size: 1.02rem; }
.pd__panel p { margin-bottom: 16px; }
.pd__lead { color: var(--brand-2); font-weight: 700; font-size: 1.1rem; margin-bottom: 22px; }
@media (max-width: 820px) { .pd__top { grid-template-columns: 1fr; gap: 28px; } }

/* =========================================================
   국가별 난청 유병률 (원형 그래프 + 표)
   ========================================================= */
.wl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 20px; }
.wl-item { text-align: center; }
.wl-ring {
  --v: 10; width: 128px; height: 128px; border-radius: 50%; margin: 0 auto; position: relative;
  display: grid; place-items: center;
  background: conic-gradient(var(--brand-2) calc(var(--v) * 1%), #dbe2ec 0);
}
.wl-ring::before { content: ""; position: absolute; inset: 13px; background: var(--bg-soft); border-radius: 50%; }
.wl-ring span { position: relative; font-weight: 900; font-size: 1.32rem; color: var(--brand); letter-spacing: -.02em; }
.wl-flag { font-size: 1.55rem; margin-top: 13px; line-height: 1; }
.wl-name { margin-top: 5px; font-weight: 700; font-size: .98rem; }
@media (max-width: 820px) { .wl-grid { grid-template-columns: repeat(2, 1fr); } }

.wl-table { min-width: 640px; }
.wl-table thead th { text-align: center; }
.wl-table tbody td { text-align: center; }
.wl-table tbody th { text-align: left; white-space: nowrap; }
.wl-table .hi { color: var(--brand); font-weight: 800; }

/* 국기 */
.flag { display: inline-block; width: 22px; height: 15px; object-fit: cover; border-radius: 2px; vertical-align: -2px; margin-right: 9px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.wl-flag { margin-top: 13px; line-height: 1; }
.wl-flag img { width: 34px; height: 23px; object-fit: cover; border-radius: 3px; box-shadow: 0 1px 5px rgba(0,0,0,.18); }

/* 세계 난청 현황 (지도 밴드) */
.globe__inner { display: grid; grid-template-columns: .82fr 1.18fr; gap: 44px; align-items: center; }
.globe__title { margin-top: 12px; font-size: clamp(24px, 3vw, 36px); font-weight: 800; letter-spacing: -.02em; }
.globe__desc { margin-top: 14px; color: var(--ink-soft); line-height: 1.7; }
.globe__nums { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.globe__num { display: flex; align-items: baseline; gap: 14px; border-left: 3px solid var(--brand); padding-left: 16px; }
.globe__num b { font-size: 2rem; font-weight: 900; color: var(--brand); letter-spacing: -.02em; min-width: 96px; }
.globe__num span { color: var(--ink-soft); font-weight: 600; }
.globe__src { margin-top: 20px; font-size: .84rem; color: var(--ink-soft); }
.globe__map img { width: 100%; height: auto; display: block; }
@media (max-width: 860px) { .globe__inner { grid-template-columns: 1fr; gap: 30px; } }

/* =========================================================
   자주 묻는 질문 (아코디언)
   ========================================================= */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px;
  padding: 24px 8px; font-size: 1.08rem; font-weight: 700;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__q {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 8px;
  background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .95rem;
}
.faq__t { flex: 1; }
.faq__toggle { flex: 0 0 auto; color: var(--brand-2); font-size: 1.5rem; line-height: 1; transition: transform .3s var(--ease); }
.faq__item[open] .faq__toggle { transform: rotate(45deg); }
.faq__a {
  padding: 2px 8px 26px 60px; color: var(--ink-soft); line-height: 1.85; font-size: 1rem;
  animation: faqDown .28s var(--ease);
}
@keyframes faqDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* =========================================================
   자주 묻는 질문 — 사이드바 + 그룹 아코디언 (리뉴얼)
   ========================================================= */
.faq-section { padding: calc(var(--header-h) + 86px) 0 clamp(70px, 9vw, 120px); }
.faq-layout { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start; }
.faq-aside { position: sticky; top: calc(var(--header-h) + 30px); }
.faq-eyebrow { color: var(--brand-2); font-weight: 800; letter-spacing: .14em; font-size: .82rem; }
.faq-h1 { margin-top: 12px; font-size: clamp(26px, 3vw, 34px); font-weight: 800; letter-spacing: -.02em; }
.faq-desc { margin-top: 14px; color: var(--ink-soft); font-size: .95rem; line-height: 1.65; }
.faq-search {
  display: flex; align-items: center; gap: 10px; margin-top: 26px; padding: 13px 18px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff; transition: border-color .16s;
}
.faq-search:focus-within { border-color: var(--brand-2); }
.faq-search svg { width: 18px; height: 18px; color: var(--ink-soft); flex: 0 0 auto; }
.faq-search input { flex: 1; border: 0; outline: 0; background: none; font: inherit; }
.faq-cats { margin-top: 26px; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-cat {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 6px 14px 14px; border-bottom: 1px solid var(--line); border-left: 2px solid transparent;
  background: none; text-align: left; color: var(--ink-soft); font-weight: 600; font-size: .96rem;
  cursor: pointer; transition: color .16s var(--ease), border-color .16s var(--ease);
}
.faq-cat:hover { color: var(--brand); }
.faq-cat.is-active { color: var(--brand); font-weight: 800; border-left-color: var(--brand); }
.faq-cat__count { color: var(--ink-soft); font-size: .9rem; font-weight: 600; }
.faq-cat.is-active .faq-cat__count { color: var(--brand); }

.faq-main { padding-top: 52px; }
.faq-group { margin-bottom: 44px; }
@media (max-width: 860px) { .faq-main { padding-top: 0; } }
.faq-group:last-child { margin-bottom: 0; }
.faq-group__head { display: flex; align-items: center; gap: 9px; font-size: 1.16rem; font-weight: 800; margin-bottom: 4px; }
.faq-group__count { color: var(--brand-2); font-weight: 800; font-size: 1rem; }
.faq-item { border-bottom: 1px solid var(--line); border-left: 2px solid transparent; transition: border-color .16s, background .16s; }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px;
  padding: 22px 10px 22px 18px; font-size: 1.02rem; font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__q { flex: 1; transition: color .16s; }
.faq-item__ico { flex: 0 0 auto; color: var(--ink-soft); font-size: 1.5rem; line-height: 1; transition: transform .3s var(--ease), color .16s; }
.faq-item[open] { border-left-color: var(--brand); background: linear-gradient(90deg, rgba(11,35,64,.035), transparent 44%); }
.faq-item[open] .faq-item__q { color: var(--brand); font-weight: 700; }
.faq-item[open] .faq-item__ico { transform: rotate(45deg); color: var(--brand); }
.faq-item__a { padding: 0 18px 24px 18px; color: var(--ink-soft); line-height: 1.85; font-size: .98rem; animation: faqDown .28s var(--ease); }
.faq-empty { padding: 80px 20px; text-align: center; color: var(--ink-soft); }

@media (max-width: 860px) {
  .faq-layout { grid-template-columns: 1fr; gap: 34px; }
  .faq-aside { position: static; }
  .faq-cats { max-width: 460px; }
}

/* =========================================================
   건강정보 (블로그형 연재)
   ========================================================= */
/* 카테고리 탭 (건강정보 하위 분류) — 헤더 바로 아래 빈 영역으로 끌어올리고 폭 꽉 차게 */
.section:has(#board[data-board="health"]) { padding-top: clamp(20px, 3vw, 36px); }
.cat-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 56px; }
.cat-tab {
  flex: 1 1 auto; text-align: center; white-space: nowrap;
  padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  color: var(--ink-soft); font-weight: 600; font-size: .88rem; cursor: pointer;
  transition: background .16s var(--ease), color .16s var(--ease), border-color .16s var(--ease);
}
.cat-tab:hover { border-color: var(--brand-2); color: var(--brand); }
.cat-tab.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.cat-tabs--brand { gap: 8px 10px; margin-bottom: 26px; }
.cat-tabs--brand .cat-tab { flex: 0 0 auto; }
.cat-tab__n { display: inline-block; margin-left: 5px; font-size: .78em; font-weight: 700; color: var(--brand-2); }
.cat-tab.is-active .cat-tab__n { color: rgba(255,255,255,.85); }
@media (max-width: 560px) { .cat-tab { flex: 0 1 auto; font-size: .84rem; padding: 8px 13px; } }
.cat-empty { grid-column: 1 / -1; padding: 70px 20px; text-align: center; color: var(--ink-soft); background: var(--bg-soft); border-radius: var(--radius); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 30px; }
.blog-card { cursor: pointer; }
.blog-card__thumb {
  aspect-ratio: 16 / 10; border-radius: 16px; overflow: hidden;
  background: #e8ecf2;
  display: grid; place-items: center; text-align: center; color: var(--ink-soft); font-weight: 700; font-size: 1.46rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card:hover .blog-card__thumb { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card__cat { margin-top: 16px; color: var(--brand-2); font-weight: 800; font-size: .82rem; letter-spacing: .04em; }
.blog-card__title { margin-top: 8px; font-size: 1.28rem; font-weight: 800; line-height: 1.4; }
.blog-card__excerpt {
  margin-top: 10px; color: var(--ink-soft); font-size: .96rem; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card__date { margin-top: 12px; color: var(--ink-soft); font-size: .88rem; }
.blog-card__date b { color: var(--ink); font-weight: 700; }

/* placeholder(준비 중) 카드 표시 */
.blog-card.is-soon .blog-card__thumb { position: relative; }

/* 더보기 버튼 */
.more-wrap { text-align: center; margin-top: 46px; }
.more-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 700; font-size: .98rem;
  cursor: pointer; transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.more-btn:hover { border-color: var(--brand); color: var(--brand); background: var(--bg-soft); }
.more-btn span { font-size: .8rem; }

/* NEW 배지 (신규 글, 펄스 애니메이션) */
.new-badge {
  display: inline-flex; align-items: center; gap: 5px; vertical-align: middle; margin-left: 7px;
  font-size: .6rem; font-weight: 800; letter-spacing: .08em; color: #fff;
  background: #ff4d4f; padding: 3px 8px 3px 7px; border-radius: 999px; line-height: 1;
}
.new-badge::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: #fff;
  animation: newBlink 1.3s ease-in-out infinite;
}
@keyframes newBlink { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }
.new-badge--float { position: absolute; top: 12px; left: 12px; margin: 0; font-size: .64rem; padding: 4px 9px 4px 8px; z-index: 2; box-shadow: 0 4px 12px rgba(255,77,79,.4); }
.news-card__thumb, .blog-card__thumb { position: relative; }

/* 페이지네이션 */
.pager { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 4px; }
.pager__btn {
  min-width: 40px; height: 40px; padding: 0 8px; border-radius: 10px; border: 1px solid var(--line);
  background: #fff; color: var(--ink-soft); font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
}
.pager__btn:hover:not(:disabled) { border-color: var(--brand); color: var(--brand); }
.pager__btn.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.pager__btn:disabled { opacity: .4; cursor: default; }
.board-empty { padding: 60px 20px; text-align: center; color: var(--ink-soft); }

/* =========================================================
   AI 챗봇 상담 페이지
   ========================================================= */
.chatbot-section { padding: calc(var(--header-h) + 44px) 0 clamp(56px, 8vw, 96px); background: var(--bg-soft); }
.chatbot-wrap { max-width: 640px; }
.chatbot {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column; height: min(74vh, 700px);
}
.chatbot__head { display: flex; align-items: center; gap: 12px; padding: 18px 22px; background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #fff; }
.chatbot__ava { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; font-size: 1.4rem; }
.chatbot__name { font-weight: 800; }
.chatbot__status { font-size: .82rem; color: rgba(255,255,255,.82); margin-top: 2px; }
.chatbot__status::before { content: "●"; color: #4ade80; margin-right: 5px; font-size: .7em; vertical-align: middle; }
.chatbot__body { flex: 1; overflow-y: auto; padding: 22px; display: flex; flex-direction: column; gap: 12px; background: var(--bg-soft); }
.msg { max-width: 82%; padding: 12px 16px; border-radius: 16px; line-height: 1.62; font-size: .96rem; white-space: pre-line; animation: msgIn .25s var(--ease); }
@keyframes msgIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.msg--bot { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.msg--user { align-self: flex-end; background: var(--brand); color: #fff; border-bottom-right-radius: 5px; }
.chatbot__quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 18px 4px; background: #fff; }
.chip { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--brand); font-weight: 600; font-size: .86rem; cursor: pointer; transition: .15s var(--ease); }
.chip:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.chatbot__input { display: flex; gap: 10px; padding: 14px 18px; border-top: 1px solid var(--line); background: #fff; }
.chatbot__input input { flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 12px 18px; font: inherit; outline: none; transition: border-color .16s; }
.chatbot__input input:focus { border-color: var(--brand-2); }
.chatbot__input button { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 50%; background: var(--brand); color: #fff; font-size: 1.05rem; display: grid; place-items: center; transition: background .16s; }
.chatbot__input button:hover { background: var(--brand-2); }

/* AI 챗봇 (Goldpiece 스타일 · 네이비 포인트) */
.cb2 { min-height: 100vh; display: grid; place-items: center; padding: calc(var(--header-h) + 40px) 20px 80px; background: #fff; }
.cb2__panel { width: min(760px, 100%); text-align: center; }
.cb2__orb { width: min(440px, 82vw); height: min(300px, 56vw); margin: 0 auto 6px; display: block; }
.cb2__eyebrow { color: var(--brand-2); font-weight: 800; font-size: 1rem; }
.cb2__title { margin-top: 10px; font-size: clamp(26px, 4vw, 40px); font-weight: 800; letter-spacing: -.02em; }
.cb2__chat { display: none; flex-direction: column; gap: 12px; text-align: left; max-height: 48vh; overflow-y: auto; padding: 6px 4px; margin-bottom: 6px; }
.cb2.is-chat .cb2__intro { display: none; }
.cb2.is-chat .cb2__chat { display: flex; }
.cb2__form {
  display: flex; align-items: center; gap: 10px; margin-top: 34px; padding: 7px 7px 7px 24px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff;
  box-shadow: 0 10px 30px rgba(11,35,64,.08); transition: border-color .16s, box-shadow .16s;
}
.cb2__form:focus-within { border-color: var(--brand-2); box-shadow: 0 12px 34px rgba(11,35,64,.14); }
.cb2__form input { flex: 1; border: 0; outline: 0; background: none; font: inherit; font-size: 1.02rem; padding: 12px 0; }
.cb2__form button { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 50%; background: var(--brand); color: #fff; font-size: 1.2rem; display: grid; place-items: center; transition: background .16s, transform .16s; }
.cb2__form button:hover { background: var(--brand-2); transform: translateX(1px); }
.cb2__hint { margin-top: 16px; color: var(--ink-soft); font-size: .92rem; }
.cb2__hint a { color: var(--brand); font-weight: 700; }
.cb2__chips { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* 인스타그램 실시간 피드 (index) */
.insta-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.insta-cell {
  position: relative; aspect-ratio: 4 / 5; border-radius: 14px; overflow: hidden;
  display: grid; place-items: center; gap: 8px; text-align: center;
  background: #e8ecf2; color: var(--ink-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.insta-cell img { width: 100%; height: 100%; object-fit: cover; }
.insta-cell__ico { display: none; }
.insta-cell__ph { font-size: 1rem; font-weight: 700; }
.insta-cell::after {
  content: ""; position: absolute; inset: 0; background: rgba(11,35,64,0);
  transition: background .25s var(--ease);
}
.insta-cell:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.insta-cell:hover::after { background: rgba(11,35,64,.06); }
.insta-cta { text-align: center; margin-top: 34px; }
@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }


/* =========================================================
   서브페이지 공용 추가 컴포넌트
   (센터소개 · 원장소개 · 오시는길 · 청력검사 · 난청정보 ·
    보청기 · 정부지원 페이지에서 재사용)
   ========================================================= */

/* 리드 문단 (섹션 상단 도입부) */
.lead { max-width: 840px; margin: 0 auto; text-align: center; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.95; }
.lead b { color: var(--ink); }

/* 아이콘 특징 카드 (3열) */
.icards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.icards.is-2 { grid-template-columns: repeat(2, 1fr); }
.icards.is-4 { grid-template-columns: repeat(4, 1fr); }
.icard { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; transition:.25s var(--ease); }
.icard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.icard__ico { width:60px; height:60px; border-radius:16px; background: var(--bg-soft); color: var(--brand); display:grid; place-items:center; font-size:1.6rem; margin-bottom:18px; }
.icard__title { font-size:1.18rem; font-weight:800; }
.icard__desc { margin-top:10px; color: var(--ink-soft); font-size:.98rem; line-height:1.72; }
@media (max-width:980px){ .icards, .icards.is-4 { grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .icards, .icards.is-2, .icards.is-4 { grid-template-columns:1fr; } }

/* 프로세스 스텝 (세로 타임라인) */
.steps { max-width: 920px; margin: 0 auto; display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px 30px; transition:.2s var(--ease); }
.step:hover { box-shadow: var(--shadow); border-color: transparent; }
.step__no { width:56px; height:56px; border-radius:16px; background: linear-gradient(145deg,var(--brand),var(--brand-2)); color:#fff; display:grid; place-items:center; font-size:1.5rem; font-weight:900; }
.step__title { font-size:1.2rem; font-weight:800; }
.step__desc { margin-top:8px; color: var(--ink-soft); line-height:1.78; }
@media (max-width:560px){ .step{ grid-template-columns:48px 1fr; gap:16px; padding:22px; } .step__no{width:48px;height:48px;font-size:1.25rem;} }

/* 스펙 / 비교 / 안내 표 */
.table-wrap { overflow-x: auto; border:1px solid var(--line); border-radius: var(--radius); }
.spec-table { width:100%; border-collapse: collapse; min-width: 560px; }
.spec-table th, .spec-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size:.98rem; vertical-align: top; }
.spec-table thead th { background: var(--brand); color:#fff; font-weight:700; white-space:nowrap; }
.spec-table tbody th { background: var(--bg-soft); font-weight:700; white-space:nowrap; }
.spec-table tr:last-child td, .spec-table tr:last-child th { border-bottom:0; }
.spec-table td b, .spec-table .hi { color: var(--brand); font-weight:800; }

/* 오시는 길 : 지도 + 연락 정보 */
.contact { display:grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: stretch; }
.map-ph { border-radius: 22px; overflow:hidden; min-height: 360px;
  background: repeating-linear-gradient(45deg,#eef2f7,#eef2f7 16px,#e6ebf2 16px,#e6ebf2 32px);
  display:grid; place-items:center; color: var(--ink-soft); font-weight:700; text-align:center; border:1px solid var(--line); padding: 20px; }
.map-ph b { display:block; font-size:2rem; margin-bottom:10px; }
.contact-box { background:#fff; border:1px solid var(--line); border-radius:22px; padding: 32px; display:flex; flex-direction:column; gap:20px; }
.contact-row { display:flex; gap:14px; align-items:flex-start; }
.contact-row > i { width:42px;height:42px;flex:0 0 auto;border-radius:12px;background:var(--bg-soft);color:var(--brand);display:grid;place-items:center;font-size:1.15rem;font-style:normal; }
.contact-row b { display:block; font-size:.86rem; color:var(--ink-soft); font-weight:700; margin-bottom:2px; }
.contact-row span { font-weight:700; }
@media (max-width:820px){ .contact{ grid-template-columns:1fr; } }

/* 원장 프로필 */
.profile { display:grid; grid-template-columns: 320px 1fr; gap: 48px; align-items:center; max-width:1000px; margin:0 auto; }
.profile__photo { aspect-ratio: 3/4; border-radius: 24px; overflow:hidden; background: linear-gradient(150deg,var(--brand),var(--brand-2)); display:grid; place-items:center; color:rgba(255,255,255,.85); font-weight:800; font-size:4.4rem; }
.profile__photo img { width:100%;height:100%;object-fit:cover; }
.profile__name { font-size: clamp(24px,3vw,34px); font-weight:900; }
.profile__name span { font-size:1rem; font-weight:700; color:var(--brand-2); margin-left:10px; }
.profile__role { margin-top:8px; color:var(--brand-2); font-weight:700; }
.profile__bio { margin-top:18px; color:var(--ink-soft); line-height:1.9; }
.profile__cred { margin-top:24px; display:grid; gap:11px; }
.profile__cred li { display:flex; gap:12px; align-items:flex-start; font-weight:600; }
.profile__cred i { color:var(--brand); font-style:normal; font-weight:900; }
@media (max-width:720px){ .profile{ grid-template-columns:1fr; justify-items:center; text-align:center; } .profile__photo{ width:min(280px,80%);} }

/* CTA 밴드 */
.cta-band { background: linear-gradient(120deg,var(--brand),var(--brand-2)); color:#fff; border-radius:22px; padding: clamp(38px,5vw,58px); text-align:center; }
.cta-band h2 { font-size: clamp(22px,3vw,32px); font-weight:800; }
.cta-band p { margin-top:12px; color:rgba(255,255,255,.85); }
.cta-band__btns { margin-top:28px; display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* 강조 포인트 배지 리스트 */
.pointlist { max-width:900px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:16px 30px; }
.pointlist .check-item { align-items:flex-start; }
@media (max-width:640px){ .pointlist{ grid-template-columns:1fr; } }

/* =====================================================================
   정부지원 3종 페이지 공통 컴포넌트 (.gs-*) — 지원금안내·지원대상·신청절차
   고령자 친화 · 병원+공공기관 톤 · 반응형(표→카드, 타임라인→세로)
   ===================================================================== */
:root{
  --gs-warn:#d9772e; --gs-warn-bg:#fff5ec; --gs-warn-line:#f4d3b3;
  --gs-danger:#d0453f; --gs-danger-bg:#fdeceb; --gs-danger-line:#f2c4c1;
  --gs-good:#1f9d57; --gs-amber:#e6a12b; --gs-violet:#5b64c8;
  --gs-sky:#eaf4fd;
}
.gs-sec{ padding:clamp(54px,6.5vw,92px) 0; }
.gs-sec--soft{ background:var(--bg-soft); }
.gs-sec--sky{ background:linear-gradient(180deg,#f2f8fe,#f5f7fa); }

/* 섹션 헤더 */
.gs-head{ text-align:center; max-width:760px; margin:0 auto clamp(34px,4vw,52px); }
.gs-eyebrow{ display:inline-block; font-size:.82rem; font-weight:800; letter-spacing:.12em;
  color:var(--accent); text-transform:uppercase; margin-bottom:12px; }
.gs-h2{ font-size:clamp(26px,3.4vw,40px); font-weight:800; letter-spacing:-.02em; color:var(--brand); line-height:1.3; }
.gs-h2 b{ color:var(--accent); }
.gs-lead{ margin-top:14px; color:var(--ink-soft); line-height:1.75; font-size:clamp(1.06rem,1.15vw,1.15rem); }
.gs-note{ margin-top:12px; font-size:.86rem; color:#8a94a3; line-height:1.6; }

/* 등장 애니메이션은 사이트 공통 [data-reveal] 사용 */

/* ---------- 히어로 (네이비 풀블리드, 고정헤더 아래 이어짐) ---------- */
.gs-hero{ background:linear-gradient(150deg,#0c274a 0%,#0B2340 55%,#0a1c33 100%); color:#fff;
  padding-bottom:clamp(48px,6vw,76px); position:relative; overflow:hidden; }
.page-hero + .gs-hero{ padding-top:calc(var(--header-h) + clamp(40px,5vw,64px)); }
.gs-hero::after{ content:""; position:absolute; right:-140px; top:-120px; width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle at center, rgba(46,159,230,.22), transparent 68%); pointer-events:none; }
.gs-hero__inner{ position:relative; z-index:1; max-width:960px; }
.gs-hero__tag{ display:inline-block; font-size:.86rem; font-weight:800; letter-spacing:.14em; color:#8fd0f7;
  text-transform:uppercase; margin-bottom:16px; }
.gs-hero__title{ font-size:clamp(30px,4.4vw,52px); font-weight:900; line-height:1.22; letter-spacing:-.02em; }
.gs-hero__title b{ color:#63b8ef; }
.gs-hero__sub{ margin-top:18px; font-size:clamp(1.06rem,1.4vw,1.24rem); line-height:1.7; color:rgba(255,255,255,.84); max-width:720px; }
.gs-badges{ display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.gs-badge{ display:inline-flex; align-items:center; gap:8px; padding:10px 16px; border-radius:999px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); font-weight:700; font-size:.98rem; color:#fff; }
.gs-badge svg{ width:17px; height:17px; color:#8fd0f7; }
.gs-badge b{ color:#ffd27a; }
.gs-hero__btns{ display:flex; flex-wrap:wrap; gap:12px; margin-top:32px; }

/* ---------- 버튼 ---------- */
.gs-btn{ display:inline-flex; align-items:center; gap:9px; height:54px; padding:0 28px; border-radius:999px;
  font-weight:800; font-size:1.02rem; transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s; }
.gs-btn svg{ width:19px; height:19px; }
.gs-btn--primary{ background:var(--accent); color:#fff; box-shadow:0 12px 26px rgba(46,159,230,.34); }
.gs-btn--primary:hover{ transform:translateY(-2px); box-shadow:0 16px 34px rgba(46,159,230,.44); }
.gs-btn--light{ background:#fff; color:var(--brand); }
.gs-btn--light:hover{ transform:translateY(-2px); box-shadow:0 14px 30px rgba(0,0,0,.18); }
.gs-btn--ghost{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.5); }
.gs-btn--ghost:hover{ background:rgba(255,255,255,.12); border-color:#fff; }
.gs-btn--navy{ background:var(--brand); color:#fff; }
.gs-btn--navy:hover{ background:var(--brand-2); transform:translateY(-2px); box-shadow:0 14px 30px rgba(11,35,64,.24); }

/* ---------- 숫자 강조 카드 ---------- */
.gs-numgrid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:18px; max-width:1000px; margin:0 auto; }
.gs-numcard{ background:#fff; border:1px solid var(--line); border-radius:20px; padding:28px 24px; text-align:center; box-shadow:var(--shadow); }
.gs-numcard__k{ font-size:.96rem; font-weight:700; color:var(--ink-soft); }
.gs-numcard__v{ margin-top:8px; font-size:clamp(2rem,3.4vw,2.7rem); font-weight:900; color:var(--brand); letter-spacing:-.02em; line-height:1.1; }
.gs-numcard__v b{ color:var(--accent); }
.gs-numcard__s{ margin-top:8px; font-size:.9rem; color:#8a94a3; }
.gs-numcard--hi{ background:linear-gradient(150deg,#0c274a,#0B2340); border-color:transparent; }
.gs-numcard--hi .gs-numcard__k{ color:rgba(255,255,255,.72); }
.gs-numcard--hi .gs-numcard__v{ color:#fff; }
.gs-numcard--hi .gs-numcard__v b{ color:#ffd27a; }
.gs-numcard--hi .gs-numcard__s{ color:rgba(255,255,255,.6); }

/* ---------- 표 (데스크톱 표 / 모바일 카드 전환) ---------- */
.gs-tablewrap{ max-width:1080px; margin:0 auto; overflow:hidden; border:1px solid var(--line);
  border-radius:20px; box-shadow:var(--shadow); background:#fff; }
.gs-table{ width:100%; border-collapse:collapse; }
.gs-table thead th{ background:var(--brand); color:#fff; font-weight:800; font-size:1rem; padding:16px 14px; text-align:center; }
.gs-table thead th:first-child{ text-align:left; }
.gs-table tbody th{ text-align:left; font-weight:800; color:var(--ink); padding:16px 16px; border-top:1px solid var(--line); background:#fafbfd; white-space:nowrap; }
.gs-table tbody td{ padding:16px 14px; text-align:center; font-size:1.02rem; color:var(--ink-soft); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.gs-table tbody td b{ color:var(--brand); font-weight:800; font-size:1.12rem; }
.gs-table tbody td .big{ color:var(--accent); font-weight:900; font-size:1.2rem; }
.gs-table tbody tr.is-hi th{ background:#eef6fd; }
.gs-table tbody tr.is-hi td{ background:#f6fbff; }
@media (max-width:760px){
  .gs-table thead{ display:none; }
  .gs-table, .gs-table tbody, .gs-table tr, .gs-table th, .gs-table td{ display:block; width:100%; border:0; }
  .gs-table tr{ border-top:8px solid var(--bg-soft); padding:6px 4px 14px; }
  .gs-table tbody th{ background:transparent; font-size:1.12rem; color:var(--brand); padding:12px 18px 6px; }
  .gs-table tbody td{ text-align:left; border:0; padding:8px 18px; display:flex; justify-content:space-between; gap:16px; }
  .gs-table tbody td::before{ content:attr(data-label); font-weight:700; color:var(--ink-soft); flex:0 0 auto; }
}
.gs-tblnote{ max-width:1080px; margin:18px auto 0; font-size:.92rem; color:var(--ink-soft); line-height:1.7; }
.gs-tblnote b{ color:var(--brand); }

/* ---------- 가로 분할 막대 도식 (131만원 구성) ---------- */
.gs-stack{ max-width:960px; margin:0 auto; }
.gs-stack__bar{ display:flex; height:64px; border-radius:14px; overflow:hidden; box-shadow:var(--shadow); }
.gs-stack__seg{ display:flex; flex-direction:column; align-items:center; justify-content:center; color:#fff;
  font-weight:800; text-align:center; padding:6px; min-width:0; }
.gs-stack__seg span{ font-size:.8rem; font-weight:600; opacity:.9; }
.gs-stack__seg--a{ background:linear-gradient(160deg,#2a7fd6,#16457C); }
.gs-stack__seg--b{ background:linear-gradient(160deg,#38b0e6,#2a7fd6); }
.gs-stack__seg--c{ background:linear-gradient(160deg,#7ad3f7,#38b0e6); color:#0B2340; }
.gs-stack__legend{ display:flex; flex-wrap:wrap; gap:10px 22px; justify-content:center; margin-top:20px; }
.gs-stack__lg{ display:flex; align-items:center; gap:8px; font-weight:700; color:var(--ink); font-size:.98rem; }
.gs-stack__dot{ width:14px; height:14px; border-radius:4px; flex:0 0 auto; }

/* ---------- 좌우 비교 카드 (건강보험 vs 의료급여) ---------- */
.gs-compare{ display:grid; grid-template-columns:1fr 1fr; gap:22px; max-width:1000px; margin:0 auto; }
.gs-compare__card{ background:#fff; border:1px solid var(--line); border-radius:22px; padding:clamp(26px,3vw,38px); box-shadow:var(--shadow); position:relative; overflow:hidden; }
.gs-compare__card--b{ border-color:rgba(46,159,230,.4); background:linear-gradient(180deg,#f4fbff,#fff); }
.gs-compare__ico{ width:52px; height:52px; border-radius:14px; display:grid; place-items:center; background:var(--gs-sky); color:var(--brand-2); margin-bottom:16px; }
.gs-compare__ico svg{ width:28px; height:28px; }
.gs-compare__t{ font-size:1.25rem; font-weight:800; color:var(--brand); }
.gs-compare__amt{ margin:14px 0 6px; font-size:clamp(1.8rem,3vw,2.4rem); font-weight:900; color:var(--accent); letter-spacing:-.02em; }
.gs-compare__list{ margin-top:16px; display:grid; gap:10px; }
.gs-compare__list li{ display:flex; gap:10px; align-items:flex-start; color:var(--ink-soft); line-height:1.6; list-style:none; }
.gs-compare__list li svg{ width:19px; height:19px; color:var(--accent); flex:0 0 auto; margin-top:2px; }
@media (max-width:720px){ .gs-compare{ grid-template-columns:1fr; } }

/* ---------- 세로 타임라인 (절차 단계) ---------- */
.gs-timeline{ max-width:920px; margin:0 auto; position:relative; }
.gs-timeline::before{ content:""; position:absolute; left:31px; top:20px; bottom:20px; width:3px;
  background:linear-gradient(180deg,var(--accent),#cfe4f5); border-radius:3px; }
.gs-step{ position:relative; display:grid; grid-template-columns:66px 1fr; gap:20px; padding:14px 0; }
.gs-step__node{ position:relative; z-index:1; width:64px; height:64px; border-radius:50%;
  background:#fff; border:3px solid var(--accent); display:grid; place-items:center; box-shadow:0 6px 16px rgba(11,35,64,.12); }
.gs-step__node svg{ width:30px; height:30px; color:var(--brand); }
.gs-step__num{ position:absolute; top:-6px; left:-6px; width:26px; height:26px; border-radius:50%;
  background:var(--brand); color:#fff; font-size:.82rem; font-weight:800; display:grid; place-items:center; }
.gs-step__card{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:20px 22px; box-shadow:var(--shadow); }
.gs-step__t{ font-size:1.18rem; font-weight:800; color:var(--brand); }
.gs-step__d{ margin-top:8px; color:var(--ink-soft); line-height:1.7; }
.gs-step__d ul{ margin:6px 0 0; padding-left:2px; list-style:none; display:grid; gap:5px; }
.gs-step__d li{ position:relative; padding-left:18px; }
.gs-step__d li::before{ content:""; position:absolute; left:2px; top:9px; width:7px; height:7px; border-radius:50%; background:var(--accent); }
@media (max-width:560px){
  .gs-timeline::before{ left:23px; }
  .gs-step{ grid-template-columns:48px 1fr; gap:14px; }
  .gs-step__node{ width:48px; height:48px; }
  .gs-step__node svg{ width:22px; height:22px; }
}

/* ---------- 한눈에 흐름도 (가로칩 → 모바일 세로) ---------- */
.gs-flow{ display:flex; flex-wrap:wrap; align-items:stretch; justify-content:center; gap:10px; max-width:1120px; margin:0 auto; }
.gs-flow__chip{ display:flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--line);
  border-radius:14px; padding:16px 20px; font-weight:800; color:var(--brand); box-shadow:var(--shadow); font-size:1.02rem; }
.gs-flow__chip svg{ width:22px; height:22px; color:var(--accent); flex:0 0 auto; }
.gs-flow__arrow{ display:flex; align-items:center; color:var(--accent); }
.gs-flow__arrow svg{ width:22px; height:22px; }
@media (max-width:820px){
  .gs-flow{ flex-direction:column; }
  .gs-flow__chip{ width:100%; }
  .gs-flow__arrow{ transform:rotate(90deg); }
}

/* ---------- 탭 (대상별 절차) ---------- */
.gs-tabs{ max-width:1000px; margin:0 auto; }
.gs-tabs__nav{ display:flex; gap:10px; background:#eef2f7; padding:6px; border-radius:16px; }
.gs-tabs__btn{ flex:1; height:56px; border-radius:12px; font-weight:800; font-size:1.05rem; color:var(--ink-soft);
  background:transparent; border:0; cursor:pointer; transition:background .25s, color .25s, box-shadow .25s; }
.gs-tabs__btn.is-active{ background:#fff; color:var(--brand); box-shadow:var(--shadow); }
.gs-tabpanel{ display:none; margin-top:26px; }
.gs-tabpanel.is-active{ display:block; animation:gsFade .4s var(--ease); }
@keyframes gsFade{ from{ opacity:0; transform:translateY(10px);} to{ opacity:1; transform:none;} }

/* ---------- 콜아웃 / 경고 배너 ---------- */
.gs-callout{ display:flex; gap:14px; align-items:flex-start; max-width:1000px; margin:24px auto 0;
  padding:20px 24px; border-radius:16px; background:var(--gs-sky); border:1px solid #cfe4f5; color:var(--ink); line-height:1.7; }
.gs-callout svg{ width:26px; height:26px; flex:0 0 auto; color:var(--brand-2); margin-top:1px; }
.gs-callout b{ color:var(--brand); }
.gs-callout--warn{ background:var(--gs-warn-bg); border-color:var(--gs-warn-line); }
.gs-callout--warn svg{ color:var(--gs-warn); }
.gs-callout--warn b{ color:var(--gs-warn); }
.gs-callout--danger{ background:var(--gs-danger-bg); border-color:var(--gs-danger-line); }
.gs-callout--danger svg{ color:var(--gs-danger); }
.gs-callout--danger b{ color:var(--gs-danger); }

/* ---------- 아이콘 카드 그리드 (조건/센터 기준) ---------- */
.gs-cards{ display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:18px; }
.gs-card{ background:#fff; border:1px solid var(--line); border-radius:18px; padding:26px 24px; box-shadow:var(--shadow);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.gs-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:rgba(46,159,230,.4); }
.gs-card__ico{ width:52px; height:52px; border-radius:14px; display:grid; place-items:center;
  background:var(--gs-sky); color:var(--brand-2); margin-bottom:16px; }
.gs-card__ico svg{ width:28px; height:28px; }
.gs-card__n{ display:inline-grid; place-items:center; width:30px; height:30px; border-radius:8px; background:var(--brand); color:#fff; font-weight:800; font-size:.9rem; margin-bottom:14px; }
.gs-card__t{ font-size:1.14rem; font-weight:800; color:var(--brand); }
.gs-card__d{ margin-top:9px; color:var(--ink-soft); line-height:1.7; }

/* ---------- 체크리스트 카드 (서류) ---------- */
.gs-checkgrid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; max-width:1040px; margin:0 auto; }
.gs-checkcard{ background:#fff; border:1px solid var(--line); border-radius:20px; padding:clamp(24px,3vw,34px); box-shadow:var(--shadow); }
.gs-checkcard__h{ display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.gs-checkcard__h .ic{ width:44px; height:44px; border-radius:12px; display:grid; place-items:center; background:var(--brand); color:#fff; flex:0 0 auto; }
.gs-checkcard__h .ic svg{ width:24px; height:24px; }
.gs-checkcard__h h3{ font-size:1.2rem; font-weight:800; color:var(--brand); }
.gs-checklist{ display:grid; gap:11px; }
.gs-checklist li{ display:flex; gap:12px; align-items:flex-start; list-style:none; color:var(--ink); font-weight:600; line-height:1.55; }
.gs-checklist li i{ flex:0 0 auto; width:24px; height:24px; border-radius:6px; display:grid; place-items:center;
  background:rgba(31,157,87,.14); color:var(--gs-good); margin-top:1px; }
.gs-checklist li i svg{ width:15px; height:15px; }
@media (max-width:720px){ .gs-checkgrid{ grid-template-columns:1fr; } }

/* ---------- 실수(경고) 카드 ---------- */
.gs-mistakes{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:14px; }
.gs-mistake{ display:flex; gap:14px; align-items:flex-start; background:var(--gs-danger-bg); border:1px solid var(--gs-danger-line);
  border-radius:14px; padding:18px 20px; }
.gs-mistake i{ flex:0 0 auto; width:34px; height:34px; border-radius:50%; display:grid; place-items:center; background:var(--gs-danger); color:#fff; }
.gs-mistake i svg{ width:19px; height:19px; }
.gs-mistake p{ color:#7c3a37; font-weight:700; line-height:1.5; }

/* ---------- FAQ 아코디언 ---------- */
.gs-faq{ max-width:900px; margin:0 auto; display:grid; gap:12px; }
.gs-faq__item{ background:#fff; border:1px solid var(--line); border-radius:16px; overflow:hidden; }
.gs-faq__q{ width:100%; display:flex; align-items:center; gap:14px; text-align:left; padding:22px 24px;
  background:none; border:0; cursor:pointer; font-weight:800; font-size:1.08rem; color:var(--brand); }
.gs-faq__q .qm{ flex:0 0 auto; width:30px; height:30px; border-radius:50%; background:var(--gs-sky); color:var(--brand-2);
  display:grid; place-items:center; font-weight:900; }
.gs-faq__q .arw{ margin-left:auto; flex:0 0 auto; width:22px; height:22px; color:var(--ink-soft); transition:transform .3s var(--ease); }
.gs-faq__item.is-open .arw{ transform:rotate(180deg); }
.gs-faq__a{ max-height:0; overflow:hidden; transition:max-height .35s var(--ease); }
.gs-faq__a > div{ padding:0 24px 22px 68px; color:var(--ink-soft); line-height:1.75; font-size:1.02rem; }
@media (max-width:520px){ .gs-faq__a > div{ padding-left:24px; } }

/* ---------- 미등록자 등록 절차 (스텝 화살표 세로) ---------- */
.gs-reg{ max-width:760px; margin:0 auto; display:grid; gap:10px; }
.gs-reg__step{ display:flex; align-items:center; gap:16px; background:#fff; border:1px solid var(--line);
  border-radius:14px; padding:16px 20px; box-shadow:var(--shadow); }
.gs-reg__ico{ width:46px; height:46px; border-radius:12px; flex:0 0 auto; display:grid; place-items:center; background:var(--gs-sky); color:var(--brand-2); }
.gs-reg__ico svg{ width:25px; height:25px; }
.gs-reg__t{ font-weight:800; color:var(--brand); font-size:1.06rem; }
.gs-reg__arw{ text-align:center; color:var(--accent); line-height:0; }
.gs-reg__arw svg{ width:22px; height:22px; }

/* ---------- 간단 자가진단 체크(대상 확인) ---------- */
.gs-elig{ max-width:820px; margin:0 auto; background:#fff; border:1px solid var(--line); border-radius:22px;
  box-shadow:var(--shadow); padding:clamp(26px,3vw,40px); }
.gs-elig__row{ display:flex; align-items:center; gap:14px; padding:16px 0; border-bottom:1px solid var(--line); }
.gs-elig__row:last-child{ border-bottom:0; }
.gs-elig__row .n{ flex:0 0 auto; width:34px; height:34px; border-radius:50%; background:var(--brand); color:#fff; font-weight:800; display:grid; place-items:center; }
.gs-elig__row p{ font-weight:700; color:var(--ink); font-size:1.08rem; }
.gs-elig__row p span{ display:block; font-weight:500; color:var(--ink-soft); font-size:.96rem; margin-top:3px; }

/* ---------- 면책 안내문 ---------- */
.gs-disc{ max-width:1000px; margin:0 auto; background:var(--bg-soft); border:1px solid var(--line);
  border-radius:16px; padding:24px 26px; color:var(--ink-soft); line-height:1.8; font-size:.98rem; }
.gs-disc b{ color:var(--brand); }
.gs-disc__t{ display:flex; align-items:center; gap:9px; font-weight:800; color:var(--brand); margin-bottom:10px; font-size:1.02rem; }
.gs-disc__t svg{ width:20px; height:20px; }

/* ---------- CTA 밴드 ---------- */
.gs-cta{ background:linear-gradient(150deg,#0c274a,#0B2340); border-radius:26px; text-align:center;
  padding:clamp(38px,5vw,60px) clamp(24px,4vw,56px); max-width:1080px; margin:0 auto; color:#fff; }
.gs-cta h2{ font-size:clamp(24px,3vw,34px); font-weight:800; }
.gs-cta p{ margin-top:12px; color:rgba(255,255,255,.82); font-size:1.08rem; }
.gs-cta__btns{ margin-top:28px; display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
