/* ============================================
   開示請求でアンチを追い込め！- メインスタイル（ホワイト清潔感テーマ）
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&family=Noto+Serif+JP:wght@400;700&display=swap');

:root {
  --bg-base: #f3f6fb;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-card2: #f8faff;
  --bg-hover: #f0f4f9;
  --bg-section: #eef2f9;
  --navy: #1e3a5f;
  --navy-light: #2c5282;
  --navy-pale: #ebf0f8;
  --accent-red: #c0392b;
  --accent-red-light: #e53e3e;
  --accent-red-pale: #fff5f5;
  --accent-gold: #b7791f;
  --accent-gold-light: #d69e2e;
  --accent-gold-pale: #fffbeb;
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --border: #e2e8f0;
  --border-bright: #cbd5e0;
  --danger: #e53e3e;
  --success: #38a169;
  --info: #3182ce;
  --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
  --font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05);
  --shadow-red: 0 4px 16px rgba(192,57,43,0.18);
  --shadow-navy: 0 4px 16px rgba(30,58,95,0.15);
  --transition: 0.22s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-section); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

/* ===== PROGRESS BAR ===== */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red), var(--navy));
  z-index: 9999;
  transition: width 0.1s linear;
  width: 0%;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 70px;
  display: flex;
  align-items: center;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  white-space: nowrap;
}

.logo-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--navy);
  background: var(--navy-pale);
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--navy-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-navy);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  padding-top: 70px;
  background: linear-gradient(135deg, #e8eef8 0%, #f0f4fb 40%, #fafcff 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,58,95,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,95,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,95,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,58,95,0.08);
  border: 1px solid rgba(30,58,95,0.2);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--navy);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title .line1 {
  display: block;
  color: var(--text-primary);
}

.hero-title .line2 {
  display: block;
  color: var(--accent-red);
}

.hero-title .line3 {
  display: block;
  font-size: 0.6em;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.5;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-desc strong {
  color: var(--text-primary);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-navy);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,58,95,0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--border-bright);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--navy-pale);
  transform: translateY(-1px);
}

.btn-danger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-red);
  color: #fff;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-red);
}

.btn-danger:hover {
  background: var(--accent-red-light);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero Card */
.hero-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--accent-red));
}

.hero-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-num {
  width: 28px;
  height: 28px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}

.step-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-top: 4px;
}

.step-text strong {
  color: var(--text-primary);
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: var(--navy-pale);
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid rgba(30,58,95,0.15);
}

.section-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== ALERT BOX ===== */
.alert {
  border-radius: var(--radius);
  padding: 20px 24px;
  border-left: 4px solid;
  margin: 24px 0;
}

.alert-danger {
  background: #fff5f5;
  border-color: var(--danger);
  color: #742a2a;
}

.alert-warning {
  background: var(--accent-gold-pale);
  border-color: var(--accent-gold);
  color: #744210;
}

.alert-info {
  background: #ebf8ff;
  border-color: var(--info);
  color: #2a4365;
}

.alert-success {
  background: #f0fff4;
  border-color: var(--success);
  color: #22543d;
}

.alert-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  gap: 20px;
}

.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== ARTICLE CARDS ===== */
.article-grid {
  display: grid;
  gap: 20px;
}

.article-grid-main { grid-template-columns: repeat(2, 1fr); }

.article-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.article-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.article-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-pale), var(--bg-section));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.article-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--navy-pale);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.article-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.article-read-more {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}

/* ===== TABLE ===== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

thead {
  background: var(--navy);
}

thead th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(even) { background: var(--bg-card2); }
tbody tr:hover { background: var(--navy-pale); }

tbody td {
  padding: 13px 20px;
  color: var(--text-primary);
  vertical-align: middle;
}

.td-muted { color: var(--text-secondary) !important; }
.td-red { color: var(--accent-red) !important; font-weight: 700; }
.td-gold { color: var(--accent-gold) !important; font-weight: 700; }
.td-green { color: var(--success) !important; font-weight: 700; }
.td-navy { color: var(--navy) !important; font-weight: 700; }

/* ===== ARTICLE CONTENT ===== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.article-main {
  min-width: 0;
}

.article-sidebar {
  position: sticky;
  top: 90px;
}

/* Article Header */
.article-header {
  padding-top: 70px;
  background: linear-gradient(135deg, #edf2f8 0%, #f5f8fc 100%);
  border-bottom: 1px solid var(--border);
}

.article-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 40px;
}

.article-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-pale);
  border: 1px solid rgba(30,58,95,0.2);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.article-h1 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.article-intro-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* Article Body */
.article-body h2 {
  font-size: clamp(20px, 2.3vw, 25px);
  font-weight: 800;
  color: var(--text-primary);
  margin: 56px 0 20px;
  padding: 16px 20px;
  background: var(--navy-pale);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-body h3 {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.article-body h3::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 48px; height: 2px;
  background: var(--accent-red);
}

.article-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}

.article-body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 18px;
}

.article-body p strong {
  color: var(--text-primary);
  font-weight: 700;
}

.article-body ul,
.article-body ol {
  margin: 16px 0 20px 24px;
}

.article-body li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.article-body li strong {
  color: var(--text-primary);
}

.article-body a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.article-body a:hover {
  color: var(--accent-red);
}

/* Law citation */
.law-cite {
  background: var(--accent-gold-pale);
  border: 1px solid rgba(183,121,31,0.25);
  border-left: 3px solid var(--accent-gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
}

.law-cite .law-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

/* Highlight box */
.highlight-box {
  background: var(--navy-pale);
  border: 1px solid rgba(30,58,95,0.18);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
}

.highlight-box .hb-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlight-box ul {
  margin: 0;
}

.highlight-box li {
  color: var(--text-primary) !important;
}

/* Justice CTA box */
.justice-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #2c5282 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin: 48px 0 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.justice-cta::before {
  content: '⚖️';
  position: absolute;
  right: 32px; top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  opacity: 0.08;
  pointer-events: none;
}

.justice-cta h3 {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.4;
}

.justice-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.85;
  margin-bottom: 0;
  max-width: 680px;
}

.justice-cta .cta-action {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background: var(--navy-pale);
  transform: translateY(-1px);
}

/* Steps */
.steps-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 28px 0;
  position: relative;
}

.steps-flow::before {
  content: '';
  position: absolute;
  left: 20px; top: 28px; bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--navy), var(--accent-red));
}

.step-flow-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  position: relative;
}

.step-flow-num {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg-base);
}

.step-flow-content {
  flex: 1;
  padding-top: 8px;
}

.step-flow-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-flow-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Checklist */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary) !important;
  margin: 0 !important;
}

.checklist li:last-child { border-bottom: none; }

.checklist li::before {
  content: '□';
  color: var(--navy);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-white);
}

.faq-q:hover {
  background: var(--bg-hover);
}

.faq-q .q-label {
  font-size: 14px;
  font-weight: 900;
  color: var(--navy);
  background: var(--navy-pale);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-q .q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  padding-top: 2px;
}

.faq-q .q-arrow {
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 4px;
}

.faq-item.open .faq-q .q-arrow {
  transform: rotate(180deg);
  color: var(--navy);
}

.faq-a {
  display: none;
  padding: 20px 24px 20px 68px;
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
}

.faq-item.open .faq-a {
  display: block;
}

/* ===== SIDEBAR ===== */
.sidebar-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.sidebar-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy-pale);
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-list li a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 5px;
  transition: var(--transition);
  border-left: 2px solid transparent;
}

.toc-list li a:hover {
  color: var(--navy);
  background: var(--navy-pale);
  border-left-color: var(--navy);
}

.toc-list li.toc-h3 a {
  padding-left: 22px;
  font-size: 12px;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #2c5282 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-navy);
}

.sidebar-cta h3 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.sidebar-cta p {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
  line-height: 1.7;
}

.sidebar-cta .btn-white {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 12px;
}

/* Related articles */
.related-article {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: var(--transition);
}

.related-article:last-child { border-bottom: none; }

.related-article:hover .related-title {
  color: var(--navy);
}

.related-thumb {
  width: 64px;
  height: 48px;
  background: var(--navy-pale);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.related-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  transition: var(--transition);
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-block {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
}

.stat-block:last-child { border-right: none; }

.stat-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-label2 {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-icon {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.footer-brand .logo-name {
  color: #fff;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-top: 12px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: rgba(255,255,255,0.8);
}

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-navy);
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  vertical-align: middle;
}

.badge-red { background: #fff5f5; color: var(--accent-red); border: 1px solid rgba(192,57,43,0.2); }
.badge-gold { background: var(--accent-gold-pale); color: var(--accent-gold); border: 1px solid rgba(183,121,31,0.2); }
.badge-blue { background: #ebf8ff; color: var(--info); border: 1px solid rgba(49,130,206,0.2); }
.badge-green { background: #f0fff4; color: var(--success); border: 1px solid rgba(56,161,105,0.2); }
.badge-navy { background: var(--navy-pale); color: var(--navy); border: 1px solid rgba(30,58,95,0.2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-card {
    max-width: 480px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    order: -1;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.12); border-top: 1px solid rgba(255,255,255,0.12); }
  .stat-block:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.12); }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    z-index: 999;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--radius);
  }

  .hamburger {
    display: flex;
  }

  .cards-grid-2,
  .cards-grid-3,
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }

  .article-grid-main {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-flow::before {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .justice-cta {
    padding: 28px 24px;
  }

  .justice-cta::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding: 56px 20px 64px;
  }

  .btn-primary, .btn-secondary, .btn-danger {
    padding: 13px 22px;
    font-size: 14px;
  }

  .article-header-inner {
    padding: 40px 20px 28px;
  }

  .article-layout {
    padding: 24px 20px 60px;
  }

  #back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

/* ===== UTILITY ===== */
.text-red { color: var(--accent-red); }
.text-navy { color: var(--navy); }
.text-gold { color: var(--accent-gold); }
.text-green { color: var(--success); }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.bg-white { background: var(--bg-white); }

/* Print */
@media print {
  .site-header, .site-footer, #back-to-top, #progress-bar { display: none; }
  .article-layout { grid-template-columns: 1fr; }
  body { background: white; color: black; }
  .article-body h2 { background: #f0f4f9; color: black; border-left-color: #333; }
}
