/* ============================================================
   뉴로이어 집단소송센터 — styles.css
   Color: navy #0e2338 / navyDark #08172a / gold #C9952A
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0e2338;
  --navyDark:  #08172a;
  --navyLight: #172d4a;
  --gold:      #C9952A;
  --goldLight: #e8b84b;
  --white:     #ffffff;
  --offWhite:  #f4f6fa;
  --textDark:  #1f2937;
  --textMid:   #4b5563;
  --shadow:    0 4px 20px rgba(0,0,0,.15);
  --shadowLg:  0 8px 40px rgba(0,0,0,.2);
  --radius:    10px;
  --radiusLg:  16px;
  --trans:     0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--navyDark);
  color: var(--white);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; display: block; }
.hidden { display: none !important; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.gold { color: var(--gold); }
.civil-color { color: #60a5fa; }
.criminal-color { color: #f87171; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navyDark);
  border-bottom: 1px solid rgba(201,149,42,.2);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  font-size: 12px;
  transition: var(--trans);
}
.nav-back:hover { color: var(--gold); border-color: var(--gold); text-decoration: none; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none !important;
}

.logo-img { height: 28px; width: auto; flex-shrink: 0; }
.logo-name { font-size: 16px; font-weight: 900; color: var(--white); letter-spacing: -0.3px; }
.logo-divider { font-size: 13px; color: rgba(255,255,255,.3); font-weight: 300; }
.logo-sub { font-size: 13px; font-weight: 600; color: var(--gold); white-space: nowrap; }

.nav-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: flex-end;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-tabs::-webkit-scrollbar { display: none; }

.ntab {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  border-radius: 6px;
  white-space: nowrap;
  transition: var(--trans);
  border: 1px solid transparent;
}
.ntab:hover { color: var(--white); background: rgba(255,255,255,.06); }
.ntab.active {
  color: var(--gold);
  border-color: rgba(201,149,42,.4);
  background: rgba(201,149,42,.08);
  font-weight: 700;
}

.nav-cta {
  padding: 8px 18px;
  background: var(--white);
  color: var(--navyDark);
  font-weight: 700;
  font-size: 13px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: var(--trans);
}
.nav-cta:hover { background: rgba(255,255,255,.85); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 6px 4px;
  flex-shrink: 0;
}
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(201,149,42,.15);
  padding: 8px 0 12px;
}
.mobile-menu.open { display: flex; }

.mmenu-item {
  padding: 13px 24px;
  text-align: left;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 500;
  transition: var(--trans);
}
.mmenu-item:hover { color: var(--gold); background: rgba(255,255,255,.04); }

.mmenu-cta {
  margin: 8px 24px 0;
  background: var(--gold);
  color: var(--navyDark);
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  padding: 13px 24px;
}
.mmenu-cta:hover { background: var(--goldLight); }

/* ============================================================
   TAB PANES
   ============================================================ */
.tab-pane { min-height: calc(100vh - 60px); }

.tab-hero {
  background: var(--navy);
  padding: 40px 0 28px;
  border-bottom: 1px solid rgba(201,149,42,.12);
}
.tab-title { font-size: 28px; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.tab-desc { font-size: 15px; color: rgba(255,255,255,.55); }

.section-pad { padding: 48px 0 80px; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  background: var(--navyDark);
  padding: 80px 0 64px;
  border-bottom: 1px solid rgba(201,149,42,.08);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero-text { flex: 1; min-width: 0; text-align: center; max-width: 740px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(201,149,42,.1);
  border: 1px solid rgba(201,149,42,.3);
  border-radius: 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero-photo-wrap { flex-shrink: 0; width: 320px; }

.hero-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radiusLg);
  box-shadow: 0 16px 60px rgba(0,0,0,.5);
  border: 2px solid rgba(201,149,42,.2);
}

.hero-photo-fallback {
  width: 100%;
  height: 420px;
  border-radius: var(--radiusLg);
  background: var(--navyLight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255,255,255,.15);
  border: 2px solid rgba(201,149,42,.15);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(201,149,42,.08);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 32px;
}

.stat-number {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.stat-n {
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-u { font-size: 16px; font-weight: 700; color: var(--gold); }
.stat-l { font-size: 11.5px; color: rgba(255,255,255,.5); text-align: center; line-height: 1.5; }
.stat-l small { font-size: 10.5px; color: rgba(255,255,255,.3); }
.stat-sep { width: 1px; height: 36px; background: rgba(201,149,42,.15); flex-shrink: 0; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-hdr { text-align: center; margin-bottom: 40px; }
.sec-hdr h2 { font-size: clamp(20px, 3vw, 30px); font-weight: 900; margin-bottom: 10px; color: var(--textDark); }
.sec-hdr.light h2 { color: var(--white); }
.sec-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--gold); margin-bottom: 10px; display: block; }
.sec-desc { color: rgba(255,255,255,.55); font-size: 15px; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.section-light { background: var(--offWhite); padding: 64px 0; }
.section-dark { background: var(--navyDark); padding: 64px 0; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.prob-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  text-align: center;
}

.prob-icon { font-size: 28px; color: var(--gold); margin-bottom: 14px; }
.prob-card h3 { font-size: 15px; font-weight: 700; color: var(--textDark); margin-bottom: 10px; line-height: 1.4; }
.prob-card p { font-size: 13.5px; color: var(--textMid); line-height: 1.7; }

.solution-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navyLight) 100%);
  border-radius: var(--radiusLg);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid rgba(201,149,42,.25);
}
.solution-box > i { font-size: 26px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.solution-box h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.solution-box p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.7; }

/* ============================================================
   TYPE CARDS
   ============================================================ */
.type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.type-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--radiusLg);
  padding: 32px;
  cursor: pointer;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.type-card:hover {
  border-color: var(--gold);
  background: rgba(201,149,42,.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201,149,42,.12);
}

.type-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.type-icon-wrap.civil { background: rgba(255,255,255,.07); color: #60a5fa; }
.type-icon-wrap.criminal { background: rgba(255,255,255,.07); color: #f87171; }

.type-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}
.civil-badge { background: rgba(59,130,246,.3); color: #fff; }
.criminal-badge { background: rgba(239,68,68,.3); color: #fff; }

.type-card h3 { font-size: 19px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.type-card > p { font-size: 13.5px; color: rgba(255,255,255,.5); margin-bottom: 16px; }

.type-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.tag {
  padding: 4px 10px;
  background: rgba(255,255,255,.07);
  border-radius: 14px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.09);
}

.type-cta { font-size: 13.5px; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 6px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navyDark);
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  transition: var(--trans);
  cursor: pointer;
  border: none;
  text-decoration: none !important;
}
.btn-gold:hover { background: var(--goldLight); }
.btn-gold.btn-lg { padding: 14px 28px; font-size: 15px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.3);
  transition: var(--trans);
  text-decoration: none !important;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid rgba(201,149,42,.5);
  transition: var(--trans);
  text-decoration: none !important;
}
.btn-outline-gold:hover { background: rgba(201,149,42,.08); }

.btn-kakao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #FEE500;
  color: #3A1D1D;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  transition: var(--trans);
  text-decoration: none !important;
}
.btn-kakao:hover { background: #f5db00; }

/* ============================================================
   WIZARD
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap;
}

.bc-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: var(--trans);
}
.bc-back:hover { color: var(--gold); }

.bc-sep { color: rgba(255,255,255,.2); font-size: 12px; }
.bc-cur { font-size: 13px; font-weight: 600; }

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
  transition: var(--trans);
}
.back-btn:hover { color: var(--gold); border-color: var(--gold); }

.wiz-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.step-chip {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(201,149,42,.12);
  border: 1px solid rgba(201,149,42,.3);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* Subtype cards */
.subtype-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}

.subtype-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radiusLg);
  display: flex;
  flex-direction: column;
  padding: 22px;
  cursor: pointer;
  transition: var(--trans);
}
.subtype-card:hover {
  border-color: rgba(201,149,42,.4);
  background: rgba(201,149,42,.04);
  transform: translateY(-2px);
}

.sub-hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 0;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.civil-hdr { color: #60a5fa; }
.criminal-hdr { color: #f87171; }

.subtype-card h4 { font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 8px; line-height: 1.4; }
.subtype-card > p { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 14px; }

.sub-examples { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.sub-ex { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.65); }
.sub-ex i { color: var(--gold); width: 14px; flex-shrink: 0; }

.sub-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-top: auto;
}
.civil-btn { background: rgba(59,130,246,.25); color: #fff; border: 1px solid rgba(59,130,246,.4); }
.criminal-btn { background: rgba(239,68,68,.25); color: #fff; border: 1px solid rgba(239,68,68,.4); }

/* Wizard detail block */
.wiz-detail-box {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,149,42,.18);
  border-radius: var(--radiusLg);
  padding: 24px;
  margin-bottom: 28px;
}
.wiz-detail-box h3 { font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.wiz-detail-box p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 14px; }
.wiz-detail-box ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.wiz-detail-box li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: rgba(255,255,255,.65); }
.wiz-detail-box li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

/* Procedure */
.procedure-box {
  background: var(--navy);
  border-radius: var(--radiusLg);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.05);
}
.proc-title { font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.proc-list { display: flex; flex-direction: column; }
.proc-item { display: flex; align-items: flex-start; gap: 16px; }
.proc-item.proc-final .proc-num { background: var(--gold); color: var(--navyDark); border-color: var(--gold); }

.proc-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201,149,42,.12);
  border: 2px solid rgba(201,149,42,.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proc-body { padding-top: 4px; padding-bottom: 18px; }
.proc-body h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.proc-body p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }

.proc-arrow { padding: 0 0 0 50px; color: rgba(201,149,42,.3); font-size: 13px; margin-bottom: 2px; }

/* CTA box */
.apply-cta-box {
  background: rgba(201,149,42,.05);
  border: 1px solid rgba(201,149,42,.18);
  border-radius: var(--radiusLg);
  padding: 28px;
}
.apply-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.apply-notice {
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 5px;
  line-height: 1.55;
}
.apply-notice i { color: rgba(201,149,42,.5); margin-top: 2px; flex-shrink: 0; }

.apply-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,.25);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  line-height: 1.6;
}

/* ============================================================
   FEE TAB
   ============================================================ */
.fee-notes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}

.fee-note-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 20px;
  border-top: 3px solid var(--gold);
}
.fee-note-card > i { font-size: 20px; color: var(--gold); margin-bottom: 10px; }
.fee-note-card h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.fee-note-card p { font-size: 12.5px; color: rgba(255,255,255,.5); line-height: 1.6; }
.fee-note-card a { color: var(--gold); text-decoration: underline; }

/* Calculator */
.calc-section {
  background: var(--navy);
  border-radius: var(--radiusLg);
  padding: 32px;
  margin-bottom: 36px;
  border: 1px solid rgba(255,255,255,.05);
}
.calc-title { font-size: 19px; font-weight: 800; color: var(--white); margin-bottom: 24px; }

.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.calc-input-area { display: flex; flex-direction: column; gap: 12px; }
.calc-input-area label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.65); }

.calc-input-row { display: flex; align-items: center; gap: 8px; }
.calc-input-row input[type="number"] {
  width: 100px;
  padding: 10px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  font-family: inherit;
  outline: none;
  transition: var(--trans);
}
.calc-input-row input:focus { border-color: var(--gold); }
.calc-input-row span { font-size: 14px; color: rgba(255,255,255,.45); }

input[type="range"] {
  width: 100%;
  height: 5px;
  -webkit-appearance: none;
  background: rgba(255,255,255,.12);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--navyDark);
  box-shadow: 0 0 0 3px rgba(201,149,42,.25);
}

.slider-lbl { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.28); }

.calc-result {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,149,42,.18);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-placeholder { color: rgba(255,255,255,.22); font-size: 13px; }
.calc-result-content { width: 100%; }
.calc-result-label { font-size: 12px; color: rgba(255,255,255,.35); margin-bottom: 6px; }
.calc-result-total { font-size: 30px; font-weight: 900; color: var(--gold); margin-bottom: 6px; }
.calc-result-per { font-size: 13px; color: rgba(255,255,255,.55); }

/* Fee notes inline */
.fee-notes-inline {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 20px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fee-notes-inline p {
  font-size: 12.5px;
  color: rgba(255,255,255,.32);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.fee-notes-inline p i { color: rgba(255,255,255,.2); margin-top: 3px; flex-shrink: 0; font-size: 10px; }
.fee-notes-inline strong { color: rgba(255,255,255,.42); font-weight: 600; }
.fee-notes-inline a { color: rgba(201,149,42,.6); }

/* Fee table */
.fee-table-section { }
.fee-table-section h3 { font-size: 19px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.fee-table-sub { font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 18px; }

.table-wrap { overflow-x: auto; border-radius: var(--radius); }

.fee-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.fee-table th {
  background: rgba(201,149,42,.12);
  color: var(--gold);
  font-weight: 700;
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(201,149,42,.25);
  white-space: nowrap;
}
.fee-table td {
  padding: 10px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: rgba(255,255,255,.75);
}
.fee-table tr:hover td { background: rgba(255,255,255,.03); }
.fee-table .row-hi td { background: rgba(201,149,42,.08); color: var(--gold); font-weight: 700; }
.fee-table .row-inquiry td { background: rgba(255,255,255,.02); color: rgba(255,255,255,.4); font-style: italic; }

.fee-structure-note {
  margin-top: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}

/* ============================================================
   ABOUT TAB
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 52px;
}

.about-photo-col { text-align: center; }

.about-photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: 40% top;
  border-radius: var(--radiusLg);
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  margin: 0 auto 14px;
}

.about-photo-fallback {
  width: 200px;
  height: 260px;
  border-radius: var(--radiusLg);
  background: var(--navyLight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: rgba(255,255,255,.15);
  margin: 0 auto 14px;
  border: 2px solid rgba(201,149,42,.12);
}

.about-firm-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.about-h2 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 10px; }

.cred-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 26px;
}

.cred-col-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.78);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.gold-bar { width: 44px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 22px; }

.cred-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.cred-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.78); }
.cred-list li i { color: var(--gold); width: 16px; text-align: center; flex-shrink: 0; }

.about-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Contact */
.contact-section { padding-top: 36px; border-top: 1px solid rgba(255,255,255,.07); }
.contact-title { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 20px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  transition: var(--trans);
}
.contact-card:hover { border-color: rgba(201,149,42,.35); background: rgba(201,149,42,.04); }
.contact-card > i { font-size: 22px; color: var(--gold); margin-bottom: 8px; }
.contact-card h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.5); margin-bottom: 7px; }
.contact-card a { font-size: 12.5px; color: var(--gold); font-weight: 600; word-break: break-all; }
.contact-card a:hover { text-decoration: underline; }

/* ============================================================
   FAQ TAB
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
  background: rgba(255,255,255,.02);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  user-select: none;
  transition: var(--trans);
}
.faq-q:hover { color: var(--gold); background: rgba(255,255,255,.02); }
.faq-q.open { color: var(--gold); }
.faq-q.open i { transform: rotate(180deg); }
.faq-q i { font-size: 12px; color: rgba(255,255,255,.28); flex-shrink: 0; transition: transform var(--trans); }

.faq-a { display: none; padding: 0 20px 16px; border-top: 1px solid rgba(255,255,255,.04); }
.faq-a.open { display: block; }
.faq-a p { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.8; padding-top: 12px; }
.faq-a p strong { color: rgba(255,255,255,.82); }
.faq-a a { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--navyDark); border-top: 1px solid rgba(201,149,42,.08); }
.footer-top { padding: 44px 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 36px;
}

.footer-logo { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-logo-img { height: 22px; width: auto; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 14px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: 14px;
  transition: var(--trans);
  text-decoration: none !important;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-links h4, .footer-contact h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-links ul, .footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-links button { font-size: 13px; color: rgba(255,255,255,.55); transition: var(--trans); text-align: left; }
.footer-links button:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.45); }
.footer-contact li i { color: var(--gold); width: 13px; }
.footer-contact a { color: rgba(255,255,255,.55); transition: var(--trans); }
.footer-contact a:hover { color: var(--gold); text-decoration: none; }

.footer-mid { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.footer-mid .container { display: flex; align-items: center; gap: 8px; }
.footer-legal-btn { font-size: 12px; color: rgba(255,255,255,.3); transition: var(--trans); }
.footer-legal-btn:hover { color: var(--gold); }
.footer-sep { color: rgba(255,255,255,.12); font-size: 12px; }

.footer-bottom { padding: 18px 0; }
.footer-biz { font-size: 11px; color: rgba(255,255,255,.22); line-height: 1.85; margin-bottom: 6px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.18); }

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--navy);
  border-radius: var(--radiusLg);
  max-width: 540px;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  border: 1px solid rgba(201,149,42,.18);
}

.modal-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.modal-hdr h3 { font-size: 15px; font-weight: 700; color: var(--white); }

.modal-x {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}
.modal-x:hover { background: rgba(255,255,255,.1); color: var(--white); }

.modal-body { padding: 22px; overflow-y: auto; flex: 1; }
.modal-body h4 { font-size: 13px; font-weight: 700; color: var(--gold); margin: 16px 0 6px; }
.modal-body h4:first-child { margin-top: 0; }
.modal-body p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .fee-notes-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { flex-direction: column-reverse; gap: 32px; }
  .hero-photo-wrap { width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-photo, .hero-photo-fallback { height: 280px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-col { display: flex; align-items: center; gap: 20px; text-align: left; }
  .about-photo { max-width: 110px; margin: 0; }
  .about-photo-fallback { width: 110px; height: 147px; margin: 0; }
  .calc-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-tabs { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .stats-bar { gap: 0; }
  .stat { padding: 10px 14px; }
  .stat-sep { height: 28px; }
  .stat-n { font-size: 24px; }

  .type-grid { grid-template-columns: 1fr; max-width: 480px; }
  .subtype-grid { grid-template-columns: 1fr; }

  .fee-notes-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-links, .footer-contact { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .hero { padding: 44px 0 36px; }
  .hero-h1 { font-size: 25px; }
  .hero-sub { font-size: 13.5px; }
  .hero-btns { flex-direction: column; }
  .btn-gold, .btn-outline { width: 100%; justify-content: center; }

  .stats-bar { flex-direction: column; }
  .stat-sep { width: 60px; height: 1px; }

  .grid-3 { grid-template-columns: 1fr; }
  .fee-notes-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }

  .apply-cta-btns { flex-direction: column; }
  .btn-gold.btn-lg, .btn-kakao.btn-lg { width: 100%; justify-content: center; }

  .solution-box { flex-direction: column; gap: 12px; }

  .about-photo-col { flex-direction: column; text-align: center; }
  .about-photo { margin: 0 auto 14px; }
  .about-photo-fallback { margin: 0 auto 14px; }
}
