/* inspired_by: toss-product-design (그리드·타이포·플랫 카드 원칙 캐리오버) + iljo-lawfirm-brand (실 로고 navy/gold 컬러 유지) */

:root {
  --bg: #FFFFFF;
  --bg-soft: #F7F8FA;
  --ink: #191F28;
  --ink-2: #4E5968;
  --muted: #8B95A1;
  --line: #E5E8EB;
  --line-strong: #D1D6DB;
  --navy: #16294A;
  --navy-deep: #101B30;
  --gold: #D98A0F;
  --gold-soft: #FBF0DD;
  --font-body: 'Pretendard', -apple-system, 'Hiragino Sans', 'Microsoft YaHei', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-py: 96px;
  --container: 1040px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  letter-spacing: -0.015em;
}

img { max-width: 100%; }
a { color: inherit; }
svg { display: block; }

/* 내비게이션 */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
}
.nav-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
}
.nav-links { display: flex; gap: 22px; }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  flex-shrink: 0;
}
.lang-switch {
  display: flex;
  gap: 2px;
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 3px;
}
.lang-switch button {
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.lang-switch button.active {
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(25, 31, 40, 0.08);
}

/* 히어로 */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 24px 80px;
  text-align: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}

/* 신뢰 지표 스트립 */
.stats-strip {
  margin: 48px auto 0;
  display: flex;
  justify-content: center;
  max-width: 620px;
  border-top: 1px solid var(--line);
}
.stat {
  flex: 1;
  padding: 24px 12px 0;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat:first-child { border-left: 0; }
.stat-value {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stat-value small { font-size: 14px; color: var(--gold); font-weight: 700; }
.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
}

/* 버튼 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease);
}
.btn:hover { background: var(--bg-soft); border-color: var(--line-strong); }
.btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn-sm { min-height: 42px; padding: 9px 16px; font-size: 13.5px; }

/* 섹션 공통 */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-py) 24px;
}
.section-alt {
  max-width: none;
  background: var(--bg-soft);
}
.section-alt .section-title,
.section-alt .section-lead,
.section-alt .practice-grid,
.section-alt .faq-list,
.section-alt .lawyer-grid {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: left;
  margin-bottom: 40px;
}

/* 외국인 상담 안내 배너 */
.global-banner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.global-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold);
  flex-shrink: 0;
}
.global-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.5;
}
.global-body { font-size: 15.5px; line-height: 1.75; color: var(--ink-2); }

/* 소개 */
.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}
.about-logo {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.about-text p { margin-bottom: 14px; font-size: 16px; line-height: 1.75; color: var(--ink-2); }
.about-text p.about-emphasis { color: var(--ink); font-weight: 600; }
.about-sign { margin-top: 4px; margin-bottom: 0; font-size: 14px; color: var(--muted); }

/* 섹션 부제·리드 */
.section-eyebrow {
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-lead {
  max-width: 620px;
  margin: -24px 0 40px;
  text-align: left;
  font-size: 15.5px;
  color: var(--ink-2);
}
.section-alt .section-lead { margin-left: auto; margin-right: auto; }

/* AI 리걸테크 */
.section-sun { max-width: none; background: var(--bg); }
.section-sun .section-eyebrow,
.section-sun .section-title,
.section-sun .section-lead,
.section-sun .tech-grid,
.section-sun .tech-disclaimer {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.tech-card {
  background: var(--bg);
  padding: 28px 24px;
}
.tech-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 18px;
}
.tech-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.tech-card p { font-size: 15px; color: var(--ink-2); line-height: 1.7; }
.tech-disclaimer {
  margin-top: 24px;
  text-align: left;
  font-size: 12px;
  color: var(--muted);
}

/* 업무 분야 */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.p-card {
  background: var(--bg);
  padding: 32px 28px;
}
.p-num {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: var(--line-strong);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.p-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.p-card p { font-size: 15.5px; color: var(--ink-2); margin-bottom: 16px; line-height: 1.7; }
.p-law { display: flex; flex-wrap: wrap; gap: 6px; }
.p-law-tag {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--bg-soft);
  border-radius: 6px;
  padding: 5px 10px;
}
.practice-note {
  margin-top: 20px;
  text-align: left;
  font-size: 13.5px;
  color: var(--muted);
}
.section-navy .practice-grid { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.1); }
.section-navy .p-card { background: rgba(255, 255, 255, 0.03); }
.section-navy .p-num { color: var(--gold); }
.section-navy .p-card h3 { color: #fff; }
.section-navy .p-card p { color: rgba(255, 255, 255, 0.7); }
.section-navy .p-law-tag { color: var(--gold); background: rgba(217, 138, 15, 0.14); }
.section-navy .practice-note { color: rgba(255, 255, 255, 0.5); }

/* 업무 분야 카드 — 세부 사건 유형 아코디언 */
.p-detail { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 14px; }
.p-detail summary {
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  position: relative;
  padding-right: 20px;
}
.p-detail summary::-webkit-details-marker { display: none; }
.p-detail summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.2s var(--ease);
}
.p-detail[open] summary::after { transform: rotate(45deg); }
.p-detail ul { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.p-detail li {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.7;
  padding-left: 14px;
  position: relative;
}
.p-detail li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.section-navy .p-detail { border-top-color: rgba(255, 255, 255, 0.12); }
.section-navy .p-detail summary { color: rgba(255, 255, 255, 0.55); }
.section-navy .p-detail summary::after { color: rgba(255, 255, 255, 0.4); }
.section-navy .p-detail li { color: rgba(255, 255, 255, 0.65); }

/* 진행 프로세스 */
.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step { padding-top: 16px; border-top: 2px solid var(--ink); }
.process-num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.process-step h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.process-step p { font-size: 15px; color: var(--ink-2); line-height: 1.7; }

/* 성공사례 — 담당 직원이 실제 사례로 교체하기 전까지의 배치 예시(샘플) */
.cases-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -20px 0 28px;
}
.case-tab {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.case-tab.is-on { background: var(--navy); color: #fff; }
.section-navy .case-tab { background: rgba(255, 255, 255, 0.07); color: rgba(255, 255, 255, 0.75); }
.section-navy .case-tab.is-on { background: var(--gold); color: var(--navy-deep); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.case-card {
  position: relative;
  background: var(--bg);
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  padding: 22px 20px;
}
.case-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
  background: var(--gold-soft);
  border-radius: 999px;
  padding: 3px 9px;
}
.case-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.case-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  padding-right: 56px;
}
.case-body { font-size: 15px; color: var(--ink-2); line-height: 1.7; margin-bottom: 12px; }
.case-out { font-size: 13px; font-weight: 700; color: var(--navy); }
.cases-note { margin-top: 20px; font-size: 12.5px; color: var(--muted); }
.section-navy .case-card { background: rgba(255, 255, 255, 0.035); border-color: rgba(255, 255, 255, 0.18); }
.section-navy .case-badge { background: rgba(217, 138, 15, 0.14); }
.section-navy .case-card h3 { color: #fff; }
.section-navy .case-body { color: rgba(255, 255, 255, 0.65); }
.section-navy .case-out { color: var(--gold); }
.section-navy .cases-note { color: rgba(255, 255, 255, 0.5); }

/* 법률정보 칼럼 */
.column-updated {
  margin: -24px 0 32px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}
.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.col-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
  text-decoration: none;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.col-card:hover { border-color: var(--line-strong); background: var(--bg-soft); }
.col-cat {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.col-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 14px;
}
.col-date { font-size: 12px; color: var(--muted); }

/* FAQ */
.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 28px 20px 0;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 16px;
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding-bottom: 22px;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.75;
}

/* 상담 신청 폼 */
.apply-grid {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.apply-hint { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.apply-hint li {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
.apply-hint li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.apply-form { display: flex; flex-direction: column; gap: 16px; }
.f-row { display: flex; flex-direction: column; gap: 8px; }
.f-row span { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.f-row input,
.f-row select,
.f-row textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.15s var(--ease);
}
.f-row input:focus,
.f-row select:focus,
.f-row textarea:focus { outline: none; border-color: var(--navy); }
.f-row textarea { resize: vertical; line-height: 1.6; }
.f-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
}
.f-check input { margin-top: 3px; flex-shrink: 0; }
.f-submit { align-self: flex-start; margin-top: 4px; }
.f-status { font-size: 13.5px; color: var(--gold); font-weight: 600; }

/* 오시는 길 — 교통편 */
.loc-transit {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.loc-transit li { display: flex; gap: 10px; font-size: 15px; }
.loc-transit strong { color: var(--ink); font-weight: 700; min-width: 52px; flex-shrink: 0; }
.loc-transit span { color: var(--ink-2); }

/* ═══════════════════════════════════════════════════════════════════════
   변호사 소개 (#lawyer)
   ▼ 아래 [설정값]만 바꾸면 이 섹션의 글꼴 · 글자크기 · 색 · 간격이 모두 바뀝니다.
     (다른 섹션에는 전혀 영향을 주지 않습니다)
   ═══════════════════════════════════════════════════════════════════════ */
#lawyer {
  /* ① 글꼴 ─────────────────────────────────────────────────────── */
  --lw-serif: 'Nanum Myeongjo', 'Apple SD Gothic Neo', Batang, serif; /* 인용구 · 자격명 · 서명 (명조) */
  --lw-sans: var(--font-body);                                        /* 본문 · 약력 (고딕) */

  /* ② 글자 크기 ─────────────────────────────────────────────────── */
  --lw-quote-size: clamp(1.35rem, 2.6vw, 1.75rem); /* 큰 인용구 (PC 28px, 모바일 자동 축소) */
  --lw-body-size: 16.5px;        /* 소개 본문 문단 */
  --lw-cert-org-size: 14.5px;    /* 카드 윗줄 '대한변호사협회 등록' */
  --lw-cert-title-size: 1.6rem;  /* 카드 큰 글씨 '부동산전문변호사' (25.6px) */
  --lw-cert-no-size: 13.5px;     /* 카드 아랫줄 등록번호 */
  --lw-sign-size: 17px;          /* '법률사무소 일조 대표변호사' */
  --lw-name-size: 21px;          /* 이름 '김준형' */
  --lw-name-spacing: 0.2em;      /* 이름 글자 사이 간격 (0으로 하면 '김준형'이 붙습니다) */
  --lw-cv-label-size: 14px;      /* 약력 항목 이름 (자격 · 전문 …) */
  --lw-cv-value-size: 15.5px;    /* 약력 항목 내용 */

  /* ③ 색 ───────────────────────────────────────────────────────── */
  --lw-card-bg: var(--navy-deep);   /* 카드 배경 (남색) */
  --lw-card-title: #FFFFFF;         /* 카드 큰 글씨 */
  --lw-card-org: #A9BBD2;           /* 카드 윗줄 */
  --lw-card-no: #8FA5C0;            /* 카드 아랫줄 */
  --lw-accent: var(--gold);         /* 카드 위 금색 띠 · 약력 항목 이름 */
  --lw-quote-color: var(--ink);     /* 인용구 */
  --lw-body-color: #39424F;         /* 본문 문단 */
  --lw-icon-sun: var(--gold);       /* 심볼 - 해 */
  --lw-icon-line: #E8EAED;          /* 심볼 - 저울 */

  /* ④ 배치 ─────────────────────────────────────────────────────── */
  --lw-col-gap: 56px;      /* 왼쪽 카드와 오른쪽 글 사이 간격 */
  --lw-label-col: 106px;   /* 약력 항목 이름 칸 너비 */
  --lw-row-pad: 10px;      /* 약력 한 줄의 위아래 여백 */
  --lw-icon-h: 42px;       /* 카드 심볼 높이 */
}

.lawyer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--lw-col-gap);
  align-items: start;
}
.lawyer-cert-col { display: flex; flex-direction: column; }

/* 왼쪽 — 변호사 사진 */
.lawyer-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(22, 41, 74, .12);
}

/* 왼쪽 — 카드 아래 서명 */
.law-sign {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--lw-serif);
  font-size: var(--lw-sign-size);
  color: var(--ink-2);
  text-align: left;
}
.law-sign b {
  font-size: var(--lw-name-size);
  color: var(--ink);
  letter-spacing: var(--lw-name-spacing);
}

/* 오른쪽 — 본문 문단 */
.lawyer-text p {
  margin-bottom: 14px;
  font-family: var(--lw-sans);
  font-size: var(--lw-body-size);
  line-height: 1.75;
  color: var(--lw-body-color);
}
/* 큰 인용구 — 바로 위 규칙보다 반드시 우선하도록 p.law-quote 로 지정 */
.lawyer-text p.law-quote {
  font-family: var(--lw-serif);
  font-size: var(--lw-quote-size);
  line-height: 1.65;
  font-weight: 700;
  color: var(--lw-quote-color);
  margin: 0 0 28px;
}

/* 오른쪽 — 약력 목록 */
.cv-list { list-style: none; margin: 26px 0 0; padding: 0; }
.cv-list li {
  display: grid;
  grid-template-columns: var(--lw-label-col) 1fr;
  gap: 14px;
  padding: var(--lw-row-pad) 0;
  border-bottom: 1px dotted var(--line);
  font-family: var(--lw-sans);
  font-size: var(--lw-cv-value-size);
  color: var(--ink-2);
}
.cv-list li span:first-child {
  color: var(--lw-accent);
  font-weight: 700;
  font-size: var(--lw-cv-label-size);
  padding-top: 2px;
}

.lawyer-links { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }

/* 담당 변호사 일관성 — 두괄식 확신형 섹션 */
.continuity {
  max-width: var(--container);
  margin: 0 auto;
}
.continuity-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(217, 138, 15, 0.14);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.continuity-title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: #fff;
  max-width: 720px;
  margin-bottom: 20px;
}
.continuity-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
  margin-bottom: 40px;
}
.continuity-body strong { color: #fff; font-weight: 700; }
.continuity-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.compare-col {
  border-radius: 16px;
  padding: 26px 24px;
}
.compare-bad { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); }
.compare-good { background: rgba(217, 138, 15, 0.1); border: 1px solid rgba(217, 138, 15, 0.35); }
.compare-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.compare-bad .compare-label { color: rgba(255, 255, 255, 0.5); }
.compare-good .compare-label { color: var(--gold); }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.compare-col li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; line-height: 1.7; }
.compare-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.compare-bad li { color: rgba(255, 255, 255, 0.62); }
.compare-bad .compare-mark { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.5); }
.compare-good li { color: #fff; font-weight: 500; }
.compare-good .compare-mark { background: var(--gold); color: var(--navy-deep); }

/* 상담 안내 · 남색 배경 섹션(업무 분야 · 성공사례 포함) */
.section-navy { max-width: none; background: var(--navy-deep); color: #fff; }
.section-navy .section-title { color: #fff; }
.section-navy .section-lead { color: rgba(255, 255, 255, 0.68); }
.section-navy .section-title,
.section-navy .section-lead,
.section-navy .practice-grid,
.section-navy .practice-note,
.section-navy .cases-tabs,
.section-navy .cases-grid,
.section-navy .cases-note {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.consult-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
.c-item { background: var(--navy-deep); padding: 28px 24px; }
.c-item h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 10px;
}
.c-item p { font-size: 17px; font-weight: 700; }
.c-item a { color: #fff; text-decoration: none; }
.c-item a:hover { text-decoration: underline; }
.c-sub { margin-top: 4px; font-size: 13px !important; font-weight: 400 !important; color: rgba(255, 255, 255, 0.6); }
.c-sub a { color: rgba(255, 255, 255, 0.7) !important; }

/* 오시는 길 */
.loc-box {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 36px 32px;
}
.loc-addr {
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.loc-hint { font-size: 15px; color: var(--ink-2); margin-bottom: 22px; }
.loc-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* 푸터 */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 24px 56px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.footer p:first-child {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.foot-sub { letter-spacing: 0.01em; }
.foot-card { margin-top: 12px; }
.foot-card a { color: var(--gold); font-weight: 700; }

/* 반응형 4단 breakpoint */
@media (max-width: 1100px) {
  :root { --section-py: 76px; }
  .hero-title { font-size: 38px; }
  .nav-links { display: none; }
}
@media (max-width: 960px) {
  :root { --section-py: 64px; }
  .hero { padding: 72px 24px 64px; }
  .hero-title { font-size: 32px; }
  .stats-strip { max-width: 340px; }
  .about-grid { grid-template-columns: 150px 1fr; gap: 24px; }
  .tech-grid { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .column-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .consult-grid { grid-template-columns: 1fr; }
  .lawyer-grid { grid-template-columns: 1fr; }
  .lawyer-cert-col { max-width: 340px; margin: 0 auto; }
  .section-lead { margin-top: -16px; }
  .apply-grid { grid-template-columns: 1fr; gap: 28px; }
  .continuity-title { font-size: 26px; }
  .continuity-compare { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  :root { --section-py: 48px; }
  .hero { padding: 56px 20px 48px; }
  .hero-title { font-size: 26px; }
  .hero-sub { font-size: 15px; }
  .section { padding-left: 20px; padding-right: 20px; }
  .section-title { font-size: 22px; margin-bottom: 28px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-logo { max-width: 160px; }
  .global-banner { padding: 22px 20px; gap: 14px; }
  .global-title { font-size: 14.5px; }
  .global-body { font-size: 14.5px; }
  .continuity-title { font-size: 22px; }
  .continuity-body { font-size: 14.5px; }
  .compare-col { padding: 20px 18px; }
  .process { grid-template-columns: 1fr; }
  .process-step { padding-top: 12px; }
  .column-grid { grid-template-columns: 1fr; }
  .nav-brand span { font-size: 14.5px; }
  .loc-box { padding: 24px 20px; }
  .faq-item summary { font-size: 14.5px; padding-right: 24px; }
}
@media (max-width: 360px) {
  .hero-title { font-size: 22px; }
  .lang-switch button { padding: 6px 9px; font-size: 12px; }
  .btn { font-size: 14px; padding: 12px 18px; }
  .stat-value { font-size: 20px; }
}

@media print {
  .nav, .lang-switch { display: none !important; }
}
