/* ═══════════════════════════════════════
   SW효례 공통 스타일시트
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --nd: #1a2744; --nm: #253660; --np: #eef1f8;
  --gold: #b89650; --gl: #d4b56a; --gp: #f5edd8; --cream: #faf9f5;
  --ink: #1a1a1a; --inm: #3a3a3a; --ins: #6b6b6b;
  --white: #fff; --bdr: #ddd;
  --rsm: 6px; --rmd: 12px; --rlg: 20px;
  --shsm: 0 2px 8px rgba(0,0,0,.08); --shmd: 0 6px 24px rgba(0,0,0,.14);
  --fs: 'Nanum Myeongjo','Batang',Georgia,serif;
  --fn: 'Noto Sans KR','Apple SD Gothic Neo',sans-serif;
  --topbar-h: 36px; --header-h: 72px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--fn); color: var(--ink); background: var(--white); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ── TOPBAR ── */
.topbar { background: var(--nd); color: rgba(255,255,255,.88); font-size: 13px; height: var(--topbar-h); display: flex; align-items: center; width: 100%; }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; width: 100%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--gl); text-decoration: none; font-weight: 600; }
.topbar a:hover { color: #fff; }
.pulse-wrap { display: flex; align-items: center; gap: 8px; }
.pulse { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #e74c3c; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

/* ── HEADER ── */
#hdr { position: sticky; top: 0; z-index: 200; background: var(--white); border-bottom: 1px solid rgba(0,0,0,.08); box-shadow: 0 2px 12px rgba(0,0,0,.06); height: var(--header-h); transition: box-shadow .3s; width: 100%; }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--nd); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 26px; height: 26px; }
.logo-text { line-height: 1.2; }
.logo-text strong { display: block; font-family: var(--fs); font-size: 20px; color: var(--nd); letter-spacing: -.5px; }
.logo-text span { font-size: 11px; color: var(--ins); letter-spacing: .5px; }

/* ══ GNB ══ */
.gnb { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; }
.gnb-item { position: relative; }
.gnb-link {
  display: block; padding: 0 14px; height: var(--header-h);
  line-height: var(--header-h);
  text-decoration: none; color: var(--inm); font-size: 14.5px; font-weight: 500;
  white-space: nowrap; transition: color .2s;
}
.gnb-link:hover { color: var(--gold); }
.gnb-item:hover .gnb-link { color: var(--gold); }

/* 드롭다운 */
.gnb-drop {
  position: absolute; top: var(--header-h); left: 50%; transform: translateX(-50%);
  background: var(--white); min-width: 160px;
  box-shadow: 0 8px 28px rgba(0,0,0,.16);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--rmd) var(--rmd);
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-8px);
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 100;
  pointer-events: none;
}
.gnb-item:hover .gnb-drop,
.gnb-item.open .gnb-drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
/* 메인 링크에 화살표 표시 */
.gnb-link.has-drop::after { content: ' ▾'; font-size: 10px; opacity: .6; }
.gnb-drop a {
  display: block; padding: 11px 18px; font-size: 14px; color: var(--inm);
  text-decoration: none; white-space: nowrap;
  border-bottom: 1px solid var(--bdr); transition: background .15s, color .15s;
}
.gnb-drop a:last-child { border-bottom: none; }
.gnb-drop a:hover { background: var(--gp); color: var(--gold); }

/* 헤더 액션 버튼 */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-call { background: var(--nd); color: var(--white); padding: 9px 16px; border-radius: 30px; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background .2s; }
.btn-call:hover { background: #0f1a38; }
.btn-emergency { background: var(--gold); color: var(--white); padding: 9px 16px; border-radius: 30px; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background .2s; }
.btn-emergency:hover { background: var(--gl); }

/* 햄버거 */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: all .3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── 모바일 메뉴 ── */
.mobile-nav {
  display: none; position: fixed; top: calc(var(--topbar-h) + var(--header-h)); left: 0; right: 0; bottom: 0;
  background: var(--nd); z-index: 190; overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav-inner { padding: 20px 24px 40px; }
.mob-section { margin-bottom: 8px; }
.mob-cat { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gl); padding: 14px 0 8px; border-top: 1px solid rgba(255,255,255,.1); }
.mob-section:first-child .mob-cat { border-top: none; }
.mob-section a { display: block; padding: 9px 12px; color: rgba(255,255,255,.78); font-size: 15px; text-decoration: none; border-radius: var(--rsm); transition: background .15s, color .15s; }
.mob-section a:hover { background: rgba(255,255,255,.08); color: var(--gl); }
.mob-single { font-size: 15px !important; font-weight: 600 !important; color: var(--white) !important; padding: 14px 0 !important; border-top: 1px solid rgba(255,255,255,.1); border-radius: 0 !important; }

/* ══ HERO SLIDER ══ */
#hero {
  position: relative; width: 100vw; left: 50%; transform: translateX(-50%);
  height: calc(100vh - var(--topbar-h) - var(--header-h));
  min-height: 560px; max-height: 880px;
  overflow: hidden; background: #06090f;
}
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; transform: translateX(100%); will-change: transform; }
.slide.is-current { transform: translateX(0); z-index: 2; }
.slide.is-prev    { transform: translateX(-100%); z-index: 1; }
.slide.animating  { transition: transform .85s cubic-bezier(.4,0,.2,1); }
.s-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; pointer-events: none; }
.s-ov  { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.ov1 { background: linear-gradient(112deg,rgba(6,12,28,.90) 0%,rgba(18,32,68,.55) 50%,rgba(0,0,0,.18) 100%); }
.ov2 { background: linear-gradient(112deg,rgba(16,8,3,.88) 0%,rgba(52,28,6,.50) 50%,rgba(0,0,0,.16) 100%); }
.ov3 { background: linear-gradient(112deg,rgba(3,14,7,.88) 0%,rgba(7,36,17,.48) 50%,rgba(0,0,0,.16) 100%); }
.ov4 { background: linear-gradient(112deg,rgba(8,6,20,.90) 0%,rgba(26,16,52,.54) 50%,rgba(0,0,0,.20) 100%); }
.s-con { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 3; display: flex; flex-direction: column; justify-content: center; padding: 0 72px; padding-right: 290px; }
.s-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(184,150,80,.22); border: 1px solid rgba(184,150,80,.46); color: var(--gp); font-size: 13px; font-weight: 600; padding: 5px 16px; border-radius: 30px; width: fit-content; margin-bottom: 20px; opacity: 0; transform: translateY(14px); transition: opacity .5s .18s, transform .5s .18s; }
.s-title { font-family: var(--fs); font-size: clamp(28px,4vw,54px); font-weight: 800; color: var(--white); line-height: 1.28; letter-spacing: -1.5px; margin-bottom: 18px; max-width: 660px; opacity: 0; transform: translateY(26px); transition: opacity .65s .32s, transform .65s .32s; }
.s-title em { font-style: normal; color: var(--gl); }
.s-desc { font-size: clamp(14px,1.5vw,17px); color: rgba(255,255,255,.82); line-height: 1.82; max-width: 480px; margin-bottom: 34px; opacity: 0; transform: translateY(22px); transition: opacity .65s .46s, transform .65s .46s; }
.s-btns { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; transform: translateY(18px); transition: opacity .6s .60s, transform .6s .60s; }
.slide.is-current .s-badge,
.slide.is-current .s-title,
.slide.is-current .s-desc,
.slide.is-current .s-btns { opacity: 1; transform: translateY(0); }

.btn-gold { background: var(--gold); color: var(--white); font-weight: 700; padding: 14px 30px; border-radius: 30px; text-decoration: none; font-size: 15px; box-shadow: 0 4px 18px rgba(184,150,80,.42); transition: background .2s, transform .15s; display: inline-flex; align-items: center; gap: 6px; }
.btn-gold:hover { background: var(--gl); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.13); color: var(--white); font-weight: 500; padding: 14px 26px; border-radius: 30px; text-decoration: none; font-size: 15px; border: 1px solid rgba(255,255,255,.30); backdrop-filter: blur(4px); transition: background .2s; }
.btn-ghost:hover { background: rgba(255,255,255,.24); }
.btn-outline { display: inline-block; padding: 12px 28px; border-radius: 30px; border: 2px solid var(--nd); color: var(--nd); font-weight: 700; font-size: 14px; text-decoration: none; transition: background .2s, color .2s; }
.btn-outline:hover { background: var(--nd); color: var(--white); }

/* 히어로 패널 */
.hero-panel { position: absolute; top: 50%; right: 38px; transform: translateY(-50%); z-index: 10; background: rgba(6,12,28,.86); backdrop-filter: blur(12px); border: 1px solid rgba(184,150,80,.28); border-radius: var(--rlg); padding: 26px 22px; min-width: 200px; color: var(--white); }
.hp-ttl { font-family: var(--fs); font-size: 15px; color: var(--gl); text-align: center; margin-bottom: 16px; }
.hp-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.hp-row:last-of-type { border-bottom: none; }
.hp-ico { font-size: 18px; width: 28px; text-align: center; }
.hp-num { font-family: var(--fs); font-size: 15px; font-weight: 700; line-height: 1.1; }
.hp-lab { font-size: 11px; color: rgba(255,255,255,.50); margin-top: 2px; }
.hp-cta { display: block; margin-top: 14px; background: var(--gold); color: var(--white); text-align: center; padding: 11px; border-radius: var(--rsm); font-weight: 700; font-size: 14px; text-decoration: none; transition: background .2s; }
.hp-cta:hover { background: var(--gl); }

/* 슬라이더 컨트롤 */
.s-prev,.s-next { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.28); color: var(--white); cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: background .2s; }
.s-prev:hover,.s-next:hover { background: rgba(255,255,255,.30); }
.s-prev { left: 24px; } .s-next { right: 24px; }
.s-prev svg,.s-next svg { width: 22px; height: 22px; }
.s-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.s-dot { width: 8px; height: 8px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,.38); padding: 0; transition: background .3s, transform .3s; }
.s-dot.active { background: var(--gl); transform: scale(1.5); }
.s-bar { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--gold); width: 0%; z-index: 10; }

/* ── QUICK NAV ── */
.quick-nav { background: var(--nd); display: grid; grid-template-columns: repeat(6,1fr); }
.qn-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 22px 12px; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 600; border-right: 1px solid rgba(255,255,255,.08); text-decoration: none; text-align: center; transition: background .2s, color .2s; }
.qn-item:last-child { border-right: none; }
.qn-item:hover { background: rgba(255,255,255,.08); color: var(--gl); }
.qn-ico { font-size: 24px; }

/* ── COMMON SECTION ── */
.con { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.sec-lbl { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.sec-ttl { font-family: var(--fs); font-size: clamp(22px,3vw,36px); font-weight: 800; line-height: 1.32; color: var(--nd); margin-bottom: 12px; letter-spacing: -.5px; }
.sec-dsc { font-size: 16px; color: var(--ins); max-width: 580px; line-height: 1.85; }
.sec-head { margin-bottom: 48px; }
.sec-head.c { text-align: center; }
.sec-head.c .sec-dsc { margin: 0 auto; }

/* ── STATS ── */
.stats-sec { background: var(--gp); padding: 56px 0; }
.stats-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--bdr); border-radius: var(--rlg); overflow: hidden; }
.stat-i { background: var(--white); padding: 36px 24px; text-align: center; }
.stat-n { font-family: var(--fs); font-size: 44px; font-weight: 800; color: var(--nd); line-height: 1; }
.stat-u { font-size: 22px; color: var(--gold); }
.stat-l { font-size: 14px; color: var(--ins); margin-top: 8px; }

/* ── PRODUCTS ── */
.products-sec { padding: 88px 0; background: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.prod-card { border-radius: var(--rlg); padding: 36px 28px; text-decoration: none; color: inherit; display: block; border: 2px solid var(--bdr); background: var(--white); transition: box-shadow .25s, transform .25s, border-color .25s; position: relative; }
.prod-card:hover { box-shadow: var(--shmd); transform: translateY(-5px); border-color: var(--gold); }
.prod-card.featured { border-color: var(--gold); background: var(--gp); }
.prod-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 30px; white-space: nowrap; }
.prod-price { font-family: var(--fs); font-size: 28px; font-weight: 800; color: var(--nd); margin-bottom: 6px; }
.prod-name { font-size: 18px; font-weight: 700; color: var(--inm); margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--bdr); }
.prod-desc { font-size: 14px; color: var(--ins); line-height: 1.75; }
.prod-more { display: inline-flex; align-items: center; font-size: 13px; font-weight: 600; color: var(--gold); margin-top: 16px; }

/* ── SERVICES ── */
.services-sec { padding: 88px 0; background: var(--cream); }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card { border-radius: var(--rlg); overflow: hidden; box-shadow: var(--shsm); border: 1px solid var(--bdr); text-decoration: none; color: inherit; display: block; background: var(--white); transition: box-shadow .25s, transform .25s; }
.svc-card:hover { box-shadow: var(--shmd); transform: translateY(-5px); }
.svc-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.svc-body { padding: 22px 24px 26px; }
.svc-body h3 { font-family: var(--fs); font-size: 18px; font-weight: 700; color: var(--nd); margin-bottom: 8px; }
.svc-body p { font-size: 14px; color: var(--ins); line-height: 1.75; }
.svc-arr { display: inline-flex; font-size: 13px; font-weight: 600; color: var(--gold); margin-top: 12px; }

/* ── IJANG ── */
.ijang-sec { background: var(--nd); padding: 88px 0; }
.ij-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ij-photo { border-radius: var(--rlg); overflow: hidden; position: relative; }
.ij-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.ij-badge { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(8,15,32,.85); backdrop-filter: blur(6px); border-radius: var(--rmd); padding: 14px 18px; color: var(--white); }
.ij-badge strong { display: block; font-family: var(--fs); font-size: 15px; margin-bottom: 3px; color: var(--gl); }
.ij-badge span { font-size: 12px; color: rgba(255,255,255,.65); }
.ij-text .sec-lbl { color: var(--gl); }
.ij-text p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.85; margin-bottom: 24px; }
.ij-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ij-list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.65; }
.ij-list li::before { content:'✓'; width:20px; height:20px; min-width:20px; background:rgba(184,150,80,.28); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:11px; color:var(--gl); margin-top:1px; }

/* ── CTA ── */
.cta-sec { background: linear-gradient(135deg,var(--nd) 0%,#080f20 100%); color: var(--white); text-align: center; padding: 80px 28px; }
.cta-sec .sec-lbl { color: var(--gl); }
.cta-sec > p { color: rgba(255,255,255,.72); font-size: 17px; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-tel { display: flex; align-items: center; gap: 10px; background: var(--gold); color: var(--white); font-weight: 700; padding: 15px 32px; border-radius: 30px; text-decoration: none; font-size: 17px; box-shadow: 0 4px 22px rgba(184,150,80,.45); transition: background .2s, transform .15s; }
.cta-tel:hover { background: var(--gl); transform: translateY(-2px); }
.cta-kak { display: flex; align-items: center; gap: 10px; background: #fee500; color: #3c1e1e; font-weight: 700; padding: 15px 28px; border-radius: 30px; text-decoration: none; font-size: 16px; transition: background .2s, transform .15s; }
.cta-kak:hover { background: #ffd700; transform: translateY(-2px); }
.cta-etc { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.12); color: var(--white); font-weight: 600; padding: 15px 24px; border-radius: 30px; text-decoration: none; font-size: 15px; border: 1px solid rgba(255,255,255,.25); transition: background .2s; }
.cta-etc:hover { background: rgba(255,255,255,.22); }

/* ── REVIEWS ── */
.reviews-sec { padding: 88px 0; background: var(--gp); }
.rev-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.rev-c { background: var(--white); border-radius: var(--rlg); padding: 28px; box-shadow: var(--shsm); }
.rev-stars { color: var(--gold); font-size: 15px; margin-bottom: 12px; }
.rev-txt { font-size: 14px; color: var(--inm); line-height: 1.8; margin-bottom: 20px; }
.rev-author { display: flex; align-items: center; gap: 10px; }
.rev-av { width: 40px; height: 40px; border-radius: 50%; background: var(--np); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: var(--nd); flex-shrink: 0; }
.rev-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.rev-sub { font-size: 12px; color: var(--ins); }

/* ══ 서브 페이지 공통 ══ */
.page-hero { background: linear-gradient(112deg,var(--nd) 0%,#253660 100%); color: var(--white); padding: 56px 0 48px; }
.page-hero .breadcrumb { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--gl); }
.page-hero h1 { font-family: var(--fs); font-size: clamp(24px,3.5vw,40px); font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 16px; }

/* 서브 페이지 LNB */
.sub-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 60px 0 80px; align-items: start; }
.lnb { background: var(--white); border: 1px solid var(--bdr); border-radius: var(--rlg); overflow: hidden; position: sticky; top: calc(var(--header-h) + 16px); }
.lnb-cat { background: var(--nd); color: var(--white); font-family: var(--fs); font-size: 16px; font-weight: 700; padding: 18px 20px; }
.lnb a { display: block; padding: 13px 20px; font-size: 14px; color: var(--inm); text-decoration: none; border-bottom: 1px solid var(--bdr); transition: background .15s, color .15s; }
.lnb a:last-child { border-bottom: none; }
.lnb a:hover { background: var(--gp); color: var(--gold); }
.lnb a.active { background: var(--gp); color: var(--gold); font-weight: 600; border-left: 3px solid var(--gold); }

/* 서브 콘텐츠 */
.sub-content { min-height: 400px; }
.sub-content h2 { font-family: var(--fs); font-size: 26px; font-weight: 800; color: var(--nd); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--gold); }
.sub-content h3 { font-family: var(--fs); font-size: 20px; font-weight: 700; color: var(--nd); margin: 32px 0 14px; }
.sub-content p { font-size: 15px; color: var(--inm); line-height: 1.85; margin-bottom: 16px; }
.sub-content ul, .sub-content ol { padding-left: 20px; margin-bottom: 16px; }
.sub-content li { font-size: 15px; color: var(--inm); line-height: 1.85; margin-bottom: 6px; }

/* 하이라이트 박스 */
.highlight-box { background: var(--gp); border: 1px solid rgba(184,150,80,.3); border-left: 4px solid var(--gold); border-radius: var(--rmd); padding: 20px 22px; margin: 24px 0; }
.highlight-box p { margin: 0; font-size: 15px; color: var(--inm); }

/* 정보 테이블 */
.info-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.info-table th { background: var(--nd); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 600; }
.info-table td { padding: 12px 16px; border-bottom: 1px solid var(--bdr); color: var(--inm); line-height: 1.65; }
.info-table tr:hover td { background: var(--gp); }

/* 이미지 그리드 */
.img-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 24px 0; }
.img-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--rmd); display: block; }

/* 절차 스텝 */
.steps { display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--bdr); }
.step-item:last-child { border-bottom: none; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--nd); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--fs); font-size: 18px; font-weight: 800; flex-shrink: 0; }
.step-body h4 { font-size: 16px; font-weight: 700; color: var(--nd); margin-bottom: 6px; }
.step-body p { font-size: 14px; color: var(--ins); line-height: 1.75; }

/* 문의 폼 */
.inquiry-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--inm); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--bdr); border-radius: var(--rsm);
  font-size: 14px; font-family: var(--fn); color: var(--ink);
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,150,80,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { background: var(--nd); color: var(--white); font-size: 16px; font-weight: 700; padding: 15px; border: none; border-radius: var(--rsm); cursor: pointer; transition: background .2s; }
.form-submit:hover { background: var(--gold); }

/* 상품 비교표 */
.compare-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.compare-table th { background: var(--nd); color: var(--white); padding: 14px; text-align: center; font-size: 15px; }
.compare-table th:first-child { background: #253660; }
.compare-table td { padding: 12px 14px; border: 1px solid var(--bdr); text-align: center; font-size: 14px; color: var(--inm); }
.compare-table tr:nth-child(even) td { background: var(--gp); }
.compare-table td:first-child { font-weight: 600; text-align: left; background: var(--np); }
.compare-check { color: var(--gold); font-size: 18px; }
.compare-x { color: #aaa; font-size: 16px; }

/* 공지사항 목록 */
.board-list { list-style: none; }
.board-item { display: flex; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--bdr); }
.board-item:first-child { border-top: 2px solid var(--nd); }
.board-num { font-size: 13px; color: var(--ins); min-width: 36px; text-align: center; }
.board-title { flex: 1; font-size: 15px; color: var(--ink); text-decoration: none; transition: color .2s; }
.board-title:hover { color: var(--gold); }
.board-date { font-size: 13px; color: var(--ins); white-space: nowrap; }

/* 갤러리 그리드 */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.gallery-item { border-radius: var(--rmd); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-ov { position: absolute; inset: 0; background: rgba(26,39,68,.5); opacity: 0; transition: opacity .3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-ov { opacity: 1; }
.gallery-ov span { color: var(--white); font-size: 13px; font-weight: 600; }

/* 부고 배너 */
.bituary-banner { background: var(--nd); color: var(--white); border-radius: var(--rlg); padding: 32px; text-align: center; margin-bottom: 32px; }
.bituary-banner h3 { font-family: var(--fs); font-size: 22px; margin-bottom: 10px; color: var(--gl); }
.bituary-banner p { color: rgba(255,255,255,.72); font-size: 15px; margin-bottom: 20px; }

/* ── FOOTER ── */
#footer { background: var(--nd); color: rgba(255,255,255,.65); font-size: 13px; }
.footer-top { max-width: 1280px; margin: 0 auto; padding: 56px 28px 40px; display: grid; grid-template-columns: 2fr repeat(5,1fr); gap: 32px; }
.ft-brand strong { display: block; font-family: var(--fs); font-size: 22px; color: var(--white); margin-bottom: 10px; }
.ft-brand p { line-height: 1.85; }
.ft-nt { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.ft-ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.ft-ul a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 13px; transition: color .2s; }
.ft-ul a:hover { color: var(--gl); }
.ft-certs { margin-top: 16px; display: flex; gap: 6px; flex-wrap: wrap; }
.ft-certs span { font-size: 11px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 30px; padding: 3px 10px; color: rgba(255,255,255,.55); }
.footer-bot { border-top: 1px solid rgba(255,255,255,.1); max-width: 1280px; margin: 0 auto; padding: 18px 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.ft-bot-lnks { display: flex; gap: 14px; }
.ft-bot-lnks a { color: rgba(255,255,255,.45); text-decoration: none; }
.ft-bot-lnks a:hover { color: var(--white); }

/* ── FLOATING ── */
.fl-btns { position: fixed; bottom: 28px; right: 24px; z-index: 300; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.fl-btn { display: flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 30px; font-size: 14px; font-weight: 700; text-decoration: none; box-shadow: 0 4px 18px rgba(0,0,0,.25); transition: transform .2s; }
.fl-btn:hover { transform: translateY(-2px); }
.fl-em { background: #e74c3c; color: var(--white); }
.fl-kak { background: #fee500; color: #3c1e1e; }

/* ── RESPONSIVE ── */
@media(max-width:1200px) {
  .footer-top { grid-template-columns: 1.5fr repeat(3,1fr); }
  .footer-top > div:nth-child(5), .footer-top > div:nth-child(6) { grid-column: span 1; }
}
@media(max-width:1024px) {
  .gnb { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-call { display: none; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .rev-g { grid-template-columns: repeat(2,1fr); }
  .ij-grid { grid-template-columns: 1fr; }
  .sub-layout { grid-template-columns: 1fr; }
  .lnb { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .quick-nav { grid-template-columns: repeat(3,1fr); }
  .stats-g { grid-template-columns: repeat(2,1fr); }
  .hero-panel { display: none; }
  .s-con { padding: 0 48px; }
}
@media(max-width:768px) {
  .topbar { display: none; }
  #hero { height: calc(100vh - var(--header-h)); min-height: 380px; max-height: 560px; }
  .mobile-nav { top: var(--header-h); }
  .s-con { padding: 0 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .rev-g { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .img-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .s-prev,.s-next { display: none; }
  .quick-nav { grid-template-columns: repeat(2,1fr); }
}