/* =============================================
   PINCARD — 완전 새 디자인 시스템 v2
   화이트 베이스 + 오렌지 포인트 + 에디토리얼
   ============================================= */

:root {
  --orange:      #F97316;
  --orange-dark: #EA6A0A;
  --orange-light:#FFF7ED;
  --orange-soft: #FFEDD5;
  --orange-border:#FED7AA;

  --navy:   #0F172A;
  --navy-2: #1E293B;
  --navy-3: #334155;

  --gray-600: #475569;
  --gray-500: #64748B;
  --gray-400: #94A3B8;
  --gray-300: #CBD5E1;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;
  --gray-50:  #F8FAFC;
  --white:    #FFFFFF;

  --teal:     #0D9488;
  --teal-light:#F0FDFA;
  --green:    #16A34A;
  --green-light:#F0FDF4;
  --red:      #DC2626;
  --red-light:#FEF2F2;
  --blue:     #2563EB;
  --blue-light:#EFF6FF;

  --grad-orange: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
  --grad-dark:   linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --grad-hero:   linear-gradient(160deg, #fff7ed 0%, #fff 60%);

  --shadow-xs: 0 1px 2px rgba(15,23,42,.05);
  --shadow-sm: 0 2px 8px rgba(15,23,42,.07);
  --shadow-md: 0 6px 20px rgba(15,23,42,.09);
  --shadow-lg: 0 14px 40px rgba(15,23,42,.12);
  --shadow-xl: 0 24px 60px rgba(15,23,42,.15);
  --shadow-orange: 0 6px 24px rgba(249,115,22,.35);

  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-full: 9999px;

  --font: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1160px;
  --header-h: 64px;
  --tr: .18s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

h1,h2,h3,h4 { font-weight: 800; line-height: 1.25; letter-spacing: -0.03em; color: var(--navy); }
h1 { font-size: clamp(28px, 4.5vw, 52px); letter-spacing: -0.04em; }
h2 { font-size: clamp(22px, 3vw, 36px); }
h3 { font-size: clamp(16px, 2vw, 21px); }
p  { color: var(--gray-600); line-height: 1.8; }
p+p { margin-top: .75rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.layout    { display: grid; grid-template-columns: 1fr 288px; gap: 40px; align-items: start; }

/* ── TOP NOTICE STRIP ── */
.notice-strip {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 12.5px; font-weight: 600;
  padding: 7px 0; text-align: center;
}
.notice-strip a {
  color: var(--orange);
  margin-left: 10px;
  font-weight: 700;
  transition: color var(--tr);
}
.notice-strip a:hover { color: #FB923C; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 2px solid var(--gray-100);
  transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: var(--shadow-md); border-bottom-color: transparent; }
.site-header .container { height: 100%; }
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 20px; height: 20px; fill: white; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 18px; font-weight: 900; letter-spacing: -0.05em; color: var(--navy); }
.logo-name span { color: var(--orange); }
.logo-sub { font-size: 9px; font-weight: 700; color: var(--gray-400); letter-spacing: 0.06em; text-transform: uppercase; }

/* Nav */
.site-nav { display: flex; align-items: center; gap: 1px; flex: 1; }
.site-nav a {
  padding: 7px 13px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 600; color: var(--gray-600);
  white-space: nowrap; transition: all var(--tr);
}
.site-nav a:hover { color: var(--navy); background: var(--gray-100); }
.site-nav a.active { color: var(--orange); background: var(--orange-light); font-weight: 700; }

/* CTA */
.btn-call {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px;
  background: var(--orange); color: white;
  border-radius: var(--r-full);
  font-size: 13px; font-weight: 800;
  box-shadow: var(--shadow-orange);
  transition: all var(--tr); white-space: nowrap; flex-shrink: 0;
}
.btn-call:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(249,115,22,.45); }
.btn-call svg { width: 14px; height: 14px; fill: white; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 4px; cursor: pointer;
}
.hamburger span { display: block; height: 2px; border-radius: 2px; background: var(--navy); transition: all .26s; }
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger span:nth-child(3) { width: 22px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: white; padding: 10px 16px 18px;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg); z-index: 199;
  flex-direction: column; gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 14px; border-radius: var(--r-md);
  font-size: 15px; font-weight: 600; color: var(--navy-3);
  transition: all var(--tr);
}
.mobile-nav a:hover { background: var(--orange-light); color: var(--orange); }
.mobile-nav .btn-call { margin-top: 8px; justify-content: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: var(--r-full); font-family: var(--font); font-weight: 700;
  cursor: pointer; transition: all var(--tr); white-space: nowrap; border: none;
}
.btn-sm  { padding:  8px 20px; font-size: 13px; }
.btn-md  { padding: 11px 26px; font-size: 15px; }
.btn-lg  { padding: 14px 36px; font-size: 16px; }
.btn-primary { background: var(--orange); color: white; box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(249,115,22,.42); }
.btn-dark { background: var(--navy); color: white; }
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--gray-300); }
.btn-outline:hover { border-color: var(--navy); }
.btn-outline-orange { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline-orange:hover { background: var(--orange-light); }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: 11.5px; font-weight: 700;
}
.badge-orange { background: var(--orange-soft);  color: var(--orange-dark); border: 1px solid var(--orange-border); }
.badge-teal   { background: var(--teal-light);   color: var(--teal);        border: 1px solid #99F6E4; }
.badge-green  { background: var(--green-light);  color: var(--green);       border: 1px solid #BBF7D0; }
.badge-amber  { background: #FFFBEB;             color: #B45309;            border: 1px solid #FDE68A; }
.badge-blue   { background: var(--blue-light);   color: var(--blue);        border: 1px solid #BFDBFE; }
.badge-gray   { background: var(--gray-100);     color: var(--gray-600);    border: 1px solid var(--gray-200); }
.badge-navy   { background: var(--navy);         color: white; }

/* ── SECTION ── */
.section     { padding: 72px 0; }
.section-alt { background: var(--gray-50); }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px; gap: 16px; flex-wrap: wrap;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 800; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px;
}
.section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--orange); border-radius: 2px; display: block; }
.section-title { font-size: clamp(22px, 3vw, 32px); margin-bottom: 6px; }
.section-desc  { font-size: 15px; color: var(--gray-500); }

/* ── HOME HERO ── */
.home-hero {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 72px 0 80px;
  position: relative; overflow: hidden;
}
.home-hero::before {
  content: ''; position: absolute;
  top: 0; right: 0; width: 55%; height: 100%;
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.home-hero-inner { display: grid; grid-template-columns: 1fr 440px; gap: 60px; align-items: center; position: relative; z-index: 1; }

.hero-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 800; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 20px;
}
.hero-label-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.6)} }

.home-hero h1 { margin-bottom: 16px; }
.home-hero h1 strong { color: var(--orange); }
.hero-lead { font-size: 17px; color: var(--gray-500); line-height: 1.8; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; gap: 32px;
  padding-top: 32px; border-top: 1px solid var(--gray-200);
}
.hero-stat-val { font-size: 28px; font-weight: 900; color: var(--navy); letter-spacing: -0.05em; line-height: 1; }
.hero-stat-lbl { font-size: 12px; color: var(--gray-400); margin-top: 4px; font-weight: 600; }

/* Hero Panel */
.hero-panel {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-2xl);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--grad-orange);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}
.panel-title {
  font-size: 13px; font-weight: 800; color: var(--gray-400);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.panel-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 700; color: var(--green);
}
.panel-live::before { content: ''; width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse 1.8s infinite; }

.cat-rows { display: flex; flex-direction: column; gap: 6px; }
.cat-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px;
  background: var(--gray-50); border: 1.5px solid var(--gray-100);
  border-radius: var(--r-lg); transition: all var(--tr); cursor: pointer;
}
.cat-row:hover { background: var(--orange-light); border-color: var(--orange-border); transform: translateX(4px); }
.cat-row-left { display: flex; align-items: center; gap: 12px; }
.cat-row-em { font-size: 22px; }
.cat-row-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.cat-row-count { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.cat-row-arrow { font-size: 16px; color: var(--gray-300); transition: all var(--tr); }
.cat-row:hover .cat-row-arrow { color: var(--orange); transform: translateX(3px); }

/* Search Box in Panel */
.panel-search { margin-bottom: 18px; position: relative; }
.panel-search input {
  width: 100%; padding: 11px 44px 11px 16px;
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md); font-family: var(--font); font-size: 14px;
  color: var(--navy); outline: none; transition: all var(--tr);
}
.panel-search input::placeholder { color: var(--gray-400); }
.panel-search input:focus { border-color: var(--orange); background: white; box-shadow: 0 0 0 3px rgba(249,115,22,.1); }
.panel-search-btn {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  color: var(--orange); font-size: 16px; cursor: pointer;
}

/* ── CATEGORY CARDS ── */
.cat-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cat-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl); padding: 24px 16px 20px;
  text-align: center; transition: all var(--tr); display: block;
  position: relative; overflow: hidden;
}
.cat-card:hover { box-shadow: var(--shadow-lg); border-color: var(--orange-border); transform: translateY(-5px); }
.cat-card:hover .cat-num { background: var(--orange); color: white; }
.cat-num {
  position: absolute; top: 12px; left: 14px;
  font-size: 11px; font-weight: 900; color: var(--gray-400);
  background: var(--gray-100); padding: 2px 7px; border-radius: var(--r-full);
  transition: all var(--tr);
}
.cat-em { font-size: 34px; margin-bottom: 12px; display: block; }
.cat-name { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.02em; }
.cat-count { font-size: 11.5px; color: var(--gray-400); font-weight: 600; }
.cat-arrow { display: block; font-size: 16px; color: var(--gray-300); margin-top: 10px; transition: color var(--tr); }
.cat-card:hover .cat-arrow { color: var(--orange); }

/* ── ARTICLE CARDS ── */
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.article-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: all var(--tr); color: inherit;
}
.article-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange-border); transform: translateY(-2px); }
.article-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--navy); color: white;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900;
  transition: background var(--tr);
}
.article-card:hover .article-num { background: var(--orange); }
.article-body { flex: 1; min-width: 0; }
.article-title { font-size: 14.5px; font-weight: 700; color: var(--navy); line-height: 1.45; margin-bottom: 7px; }
.article-card:hover .article-title { color: var(--orange); }
.article-meta { display: flex; align-items: center; gap: 8px; }
.article-date { font-size: 12px; color: var(--gray-400); }
.article-arrow { color: var(--gray-300); font-size: 15px; flex-shrink: 0; transition: all var(--tr); margin-top: 2px; }
.article-card:hover .article-arrow { color: var(--orange); transform: translateX(3px); }

.article-list { display: flex; flex-direction: column; gap: 8px; }
.article-list-item {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 16px 18px;
  display: flex; gap: 12px; align-items: flex-start;
  transition: all var(--tr); color: inherit;
}
.article-list-item:hover { border-color: var(--orange-border); background: var(--orange-light); transform: translateX(4px); }
.article-list-item:hover .article-title { color: var(--orange); }
.article-list-item:hover .article-num { background: var(--orange); }

/* ── ANSWER BOX ── */
.answer-box {
  background: var(--orange-light);
  border: 1.5px solid var(--orange-border);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 18px 22px; margin-bottom: 28px;
}
.answer-box-label {
  font-size: 11px; font-weight: 800; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
  display: flex; align-items: center; gap: 5px;
}
.answer-box-label::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.answer-box p { color: var(--navy-2); font-size: 15px; font-weight: 500; line-height: 1.75; }

/* ── HOW-TO STEPS ── */
.steps { display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
.step {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 18px 20px; transition: all var(--tr);
}
.step:hover { border-color: var(--orange-border); box-shadow: var(--shadow-sm); }
.step-num {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--navy); color: white;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
}
.step-title { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.step-desc  { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ── TIP / INFO BOX ── */
.tip-box {
  background: #FFFBEB; border: 1.5px solid #FDE68A;
  border-left: 4px solid #F59E0B;
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 14px 18px; margin: 18px 0;
}
.tip-box p { font-size: 14px; color: #78350F; }
.info-box {
  background: var(--teal-light); border: 1.5px solid #99F6E4;
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 14px 18px; margin: 18px 0;
}
.info-box p { font-size: 14px; color: #134E4A; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg); overflow: hidden; transition: border-color var(--tr);
}
.faq-item.open { border-color: var(--orange-border); }
.faq-q {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; cursor: pointer;
  font-size: 14.5px; font-weight: 700; color: var(--navy);
  user-select: none;
}
.faq-q-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--orange-soft); color: var(--orange);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900;
}
.faq-item.open .faq-q-icon { background: var(--orange); color: white; }
.faq-q-text { flex: 1; }
.faq-chevron { width: 18px; height: 18px; color: var(--gray-400); transition: transform .22s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--orange); }
.faq-a { display: none; padding: 0 20px 16px 58px; font-size: 14px; color: var(--gray-600); line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 10px 0; }
.breadcrumb-list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb-list li { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--gray-400); }
.breadcrumb-list li a { color: var(--gray-500); transition: color var(--tr); }
.breadcrumb-list li a:hover { color: var(--orange); }
.breadcrumb-list li.active { color: var(--navy-3); font-weight: 600; }
.breadcrumb-sep { font-size: 10px; color: var(--gray-300); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 48px 0 40px;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 800; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px;
}
.page-hero h1 { margin-bottom: 10px; font-size: clamp(24px, 4vw, 42px); }
.page-hero-desc { font-size: 15.5px; color: var(--gray-500); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--navy); padding: 44px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.trust-icon { width: 50px; height: 50px; border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 4px; }
.trust-icon-1 { background: rgba(249,115,22,.15); }
.trust-icon-2 { background: rgba(22,163,74,.15); }
.trust-icon-3 { background: rgba(249,115,22,.15); }
.trust-icon-4 { background: rgba(255,255,255,.08); }
.trust-num { font-size: 26px; font-weight: 900; color: white; letter-spacing: -0.05em; line-height: 1; }
.trust-lbl { font-size: 12.5px; color: rgba(255,255,255,.45); font-weight: 600; }

/* ── VIEW ALL ── */
.view-all {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700; color: var(--orange);
  padding: 7px 14px; border-radius: var(--r-full);
  border: 1.5px solid var(--orange-border); background: var(--orange-light);
  transition: all var(--tr); white-space: nowrap;
}
.view-all:hover { gap: 8px; background: var(--orange-soft); }
.view-all::after { content: '→'; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* ── ARTICLE DETAIL ── */
.main-content { padding: 52px 0 72px; }
.article-header { padding-bottom: 24px; margin-bottom: 28px; border-bottom: 1.5px solid var(--gray-200); }
.article-header-badges { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.article-header h1 { font-size: clamp(22px, 3.5vw, 36px); margin-bottom: 16px; }
.article-info { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.article-info-item { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--gray-400); }
.article-info-item svg { width: 13px; height: 13px; }

/* TOC */
.toc {
  background: var(--orange-light); border: 1.5px solid var(--orange-border);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 18px 22px; margin-bottom: 28px;
}
.toc-title { font-size: 11px; font-weight: 900; color: var(--orange); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px; display: flex; align-items: center; gap: 5px; }
.toc ol { counter-reset: toc-c; display: flex; flex-direction: column; gap: 7px; }
.toc ol li { counter-increment: toc-c; }
.toc ol li a {
  font-size: 13.5px; color: var(--gray-600); font-weight: 500;
  display: flex; align-items: center; gap: 9px; transition: color var(--tr); padding: 2px 0;
}
.toc ol li a::before {
  content: counter(toc-c); width: 20px; height: 20px; flex-shrink: 0;
  background: var(--orange); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900;
}
.toc ol li a:hover { color: var(--orange); }

/* Prose */
.prose { font-size: 15.5px; line-height: 1.88; color: var(--gray-600); }
.prose h2 { font-size: 21px; font-weight: 800; color: var(--navy); margin: 44px 0 16px; padding-bottom: 12px; border-bottom: 1.5px solid var(--gray-100); position: relative; }
.prose h2::after { content: ''; position: absolute; bottom: -1.5px; left: 0; width: 40px; height: 2.5px; background: var(--orange); border-radius: 2px; }
.prose h3 { font-size: 18px; font-weight: 800; color: var(--navy-2); margin: 28px 0 12px; }
.prose p  { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 16px 0; display: flex; flex-direction: column; gap: 8px; padding-left: 4px; }
.prose ul li, .prose ol li { padding-left: 20px; position: relative; font-size: 15px; color: var(--gray-600); }
.prose ul li::before { content: ''; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.prose ol { counter-reset: ol-c; }
.prose ol li::before { counter-increment: ol-c; content: counter(ol-c) "."; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.prose strong { color: var(--navy); font-weight: 800; }
.prose blockquote { margin: 24px 0; padding: 16px 20px; background: var(--orange-light); border-left: 4px solid var(--orange); border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.prose blockquote p { color: var(--navy-2); font-weight: 600; margin-bottom: 0; }

.article-signature { display: flex; align-items: center; gap: 12px; padding: 14px 18px; margin-top: 32px; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--r-lg); }
.article-sig-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--navy); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.article-sig-name { font-size: 14px; font-weight: 800; color: var(--navy); }
.article-sig-meta { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

.related-section { margin-top: 44px; padding-top: 28px; border-top: 1.5px solid var(--gray-200); }
.related-title { font-size: 16px; font-weight: 900; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.related-title::before { content: ''; width: 4px; height: 18px; background: var(--orange); border-radius: 3px; display: block; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.related-item { padding: 13px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--r-md); font-size: 13.5px; font-weight: 600; color: var(--gray-600); transition: all var(--tr); display: flex; align-items: center; gap: 7px; }
.related-item:hover { border-color: var(--orange-border); color: var(--orange); background: var(--orange-light); }
.related-item::before { content: '→'; color: var(--gray-300); transition: all var(--tr); }
.related-item:hover::before { color: var(--orange); transform: translateX(3px); }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.widget { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--r-xl); overflow: hidden; }
.widget-head { padding: 13px 16px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); font-size: 12.5px; font-weight: 800; color: var(--gray-600); display: flex; align-items: center; gap: 7px; }
.widget-head::before { content: ''; width: 3px; height: 14px; background: var(--orange); border-radius: 3px; display: block; }
.widget-body { padding: 12px 14px; }

.cat-list { display: flex; flex-direction: column; gap: 2px; }
.cat-list-a { display: flex; align-items: center; justify-content: space-between; padding: 9px 11px; border-radius: var(--r-md); font-size: 13.5px; color: var(--navy-3); transition: all var(--tr); }
.cat-list-a:hover { background: var(--orange-light); color: var(--orange); }
.cat-list-a.active { background: var(--orange-soft); color: var(--orange); font-weight: 700; }
.cat-list-left { display: flex; align-items: center; gap: 8px; }
.cat-list-em { font-size: 15px; }
.cat-count-badge { font-size: 11px; font-weight: 700; padding: 2px 7px; background: var(--gray-100); color: var(--gray-500); border-radius: var(--r-full); }
.cat-list-a.active .cat-count-badge { background: var(--orange-soft); color: var(--orange); }

/* CTA Widget */
.cta-widget { background: var(--navy); border-radius: var(--r-xl); padding: 24px 20px; text-align: center; color: white; position: relative; overflow: hidden; }
.cta-widget::after { content: ''; position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; background: rgba(249,115,22,.12); border-radius: 50%; }
.cta-widget-num { font-size: 13px; font-weight: 700; color: var(--orange); margin-bottom: 4px; position: relative; }
.cta-widget-title { font-size: 17px; font-weight: 900; margin-bottom: 6px; position: relative; letter-spacing: -0.03em; }
.cta-widget-desc { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 16px; line-height: 1.55; position: relative; }
.cta-widget-btn { display: block; padding: 11px 16px; background: var(--orange); color: white; border-radius: var(--r-full); font-size: 14px; font-weight: 900; transition: all var(--tr); position: relative; }
.cta-widget-btn:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-orange); }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: white; padding: 60px 0 28px; position: relative; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-orange); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer-logo .logo-name { color: white; }
.footer-logo .logo-name span { color: var(--orange); }
.footer-logo .logo-sub  { color: rgba(255,255,255,.3); }
.footer-logo .logo-icon { background: rgba(255,255,255,.1); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.8; margin-top: 14px; max-width: 240px; }
.footer-col h4 { font-size: 11px; font-weight: 800; color: rgba(255,255,255,.28); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.42); transition: color var(--tr); }
.footer-col ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); line-height: 1.8; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.25); transition: color var(--tr); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── INFO PAGES ── */
.info-wrap { max-width: 800px; margin: 0 auto; }
.info-wrap h2 { font-size: 21px; margin: 36px 0 14px; padding-bottom: 12px; border-bottom: 1.5px solid var(--gray-200); position: relative; }
.info-wrap h2::after { content: ''; position: absolute; bottom: -1.5px; left: 0; width: 40px; height: 2.5px; background: var(--orange); border-radius: 2px; }
.info-wrap p  { font-size: 15px; color: var(--gray-600); line-height: 1.85; margin-bottom: 14px; }
.info-wrap ul { margin: 12px 0; display: flex; flex-direction: column; gap: 8px; }
.info-wrap ul li { padding-left: 18px; position: relative; font-size: 15px; color: var(--gray-600); }
.info-wrap ul li::before { content: ''; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .home-hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .cat-cards { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { gap: 24px; }
  .home-hero::before { width: 100%; clip-path: none; opacity: .4; }
}
@media (max-width: 768px) {
  .site-nav, .header-cta-wrap { display: none; }
  .hamburger { display: flex; }
  .article-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .home-hero { padding: 48px 0 40px; }
  .section { padding: 48px 0; }
  .two-col { grid-template-columns: 1fr; gap: 0; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat-val { font-size: 22px; }
  .home-hero h1 { font-size: clamp(26px, 7vw, 38px); }
  .hero-lead { font-size: 15px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .cat-cards { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cat-card { padding: 18px 12px 16px; }
  .cat-em { font-size: 26px; }
  .cat-name { font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-lg { padding: 12px 22px; font-size: 15px; }
  .hero-cta { gap: 8px; }
  .trust-num { font-size: 20px; }
  .home-hero { padding: 36px 0 32px; }
}
