@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Work+Sans:wght@300;400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F0F2F5;
  --ink: #1A2744;
  --mid: #6070A0;
  --accent: #B04A30;
  --white: #ffffff;
  --border: #D4D8E2;
  --soft: #E4E7EE;
  --text-body: #2E3A52;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Work Sans', system-ui, sans-serif;
  --max: 1220px;
  --gutter: 48px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
@media (max-width: 768px) { .wrap { padding: 0 20px; } }

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--ink);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}
.logo span { color: var(--accent); }

.main-nav { display: flex; align-items: center; gap: 0; }

.main-nav > li { position: relative; }

.main-nav > li > a {
  display: block;
  padding: 0 18px;
  height: 68px;
  line-height: 68px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s, background 0.2s;
}
.main-nav > li > a:hover,
.main-nav > li.active > a { color: var(--white); background: rgba(255,255,255,0.06); }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ink);
  border-top: 2px solid var(--accent);
  min-width: 270px;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.main-nav > li:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: rgba(176,74,48,0.18); color: var(--white); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: all 0.3s;
}

/* ===== TOPBAR ===== */
.topbar {
  background: #131d36;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.topbar-inner a { color: rgba(255,255,255,0.5); }
.topbar-inner a:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  background: rgba(255,255,255,0.03);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text {}
.hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-wrap { position: relative; }
.hero-image-wrap img {
  width: 100%; height: 420px;
  object-fit: cover;
  filter: brightness(0.88);
}
.hero-image-line {
  position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 1px solid var(--accent);
  pointer-events: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: #943e27; color: var(--white); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: #253563; }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ===== SECTION BASICS ===== */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--ink); color: var(--white); }
.section-mid { background: #E8EBF2; }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.22;
  margin-bottom: 16px;
}
.section-title.white { color: var(--white); }
.section-subtitle {
  font-size: 0.97rem;
  color: var(--mid);
  max-width: 640px;
  line-height: 1.72;
}
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ===== STAT STRIP ===== */
.stat-strip {
  background: var(--accent);
  padding: 36px 0;
}
.stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.78); letter-spacing: 0.06em; }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.card {
  background: var(--white);
  padding: 36px 32px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(26,39,68,0.1); }
.card-icon {
  width: 44px; height: 44px;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.card-icon svg { fill: var(--white); }
.card-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--font-head);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.card-text { font-size: 0.87rem; color: #4A5568; line-height: 1.7; margin-bottom: 20px; }
.card-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.card-link:hover { color: var(--ink); border-color: var(--ink); }

/* ===== ARTICLE LIST ===== */
.article-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.article-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.2s;
}
.article-row:last-child { border-bottom: none; }
.article-row:hover { background: #F8F9FC; }
.article-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--soft);
  line-height: 1;
  padding-top: 4px;
}
.article-meta { flex: 1; }
.article-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.article-title {
  font-family: var(--font-head);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.28;
}
.article-excerpt { font-size: 0.85rem; color: #5A6A82; line-height: 1.66; }
.article-date {
  font-size: 0.74rem;
  color: var(--mid);
  white-space: nowrap;
  padding-top: 4px;
}

/* ===== FEATURE SPLIT ===== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.feature-image { overflow: hidden; }
.feature-image img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.feature-content { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.feature-content.bg-ink { background: var(--ink); color: var(--white); }
.feature-content.bg-ink .section-title { color: var(--white); }
.feature-content.bg-ink .section-subtitle { color: rgba(255,255,255,0.65); }
.feature-list { margin-top: 24px; }
.feature-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  align-items: flex-start;
}
.feature-list.white-border li { border-color: rgba(255,255,255,0.12); }
.feature-list li::before {
  content: '—';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== TEAM / EXPERT CARDS ===== */
.expert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.expert-card {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
}
.expert-photo {
  width: 88px; height: 88px;
  border-radius: 0;
  object-fit: cover;
  margin: 0 auto 18px;
  filter: grayscale(20%);
}
.expert-name {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.expert-role { font-size: 0.78rem; color: var(--accent); font-weight: 500; letter-spacing: 0.06em; margin-bottom: 14px; }
.expert-bio { font-size: 0.84rem; color: #5A6A82; line-height: 1.68; }

/* ===== CONTENT PAGE ===== */
.page-hero {
  background: var(--ink);
  padding: 72px 0 64px;
  color: var(--white);
}
.page-hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  max-width: 780px;
  margin-bottom: 18px;
}
.page-hero-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.62);
  max-width: 620px;
  line-height: 1.72;
}

.content-body { padding: 72px 0; }
.content-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.content-main h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  margin: 36px 0 14px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  line-height: 1.28;
}
.content-main h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.content-main h3 {
  font-family: var(--font-head);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0 10px;
}
.content-main p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.82;
  margin-bottom: 18px;
}
.content-main ul, .content-main ol {
  margin: 16px 0 18px 20px;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.78;
}
.content-main ul { list-style: disc; }
.content-main ol { list-style: decimal; }
.content-main li { margin-bottom: 8px; }
.content-main blockquote {
  border-left: 3px solid var(--accent);
  margin: 28px 0;
  padding: 18px 24px;
  background: rgba(176,74,48,0.05);
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}
.content-main .content-img {
  margin: 32px 0;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* ===== SIDEBAR ===== */
.sidebar { position: sticky; top: 88px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  margin-bottom: 24px;
}
.sidebar-widget-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
}
.sidebar-links { display: flex; flex-direction: column; gap: 0; }
.sidebar-links a {
  display: block;
  padding: 10px 0;
  font-size: 0.83rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, padding-left 0.15s;
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--accent); padding-left: 6px; }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.sidebar-tag {
  display: inline-block;
  font-size: 0.73rem;
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: var(--mid);
  transition: all 0.15s;
  cursor: pointer;
}
.sidebar-tag:hover { border-color: var(--accent); color: var(--accent); }

/* ===== TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 0.88rem; }
.data-table thead tr { background: var(--ink); }
.data-table thead th {
  padding: 14px 18px;
  text-align: left;
  color: var(--white);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.data-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.data-table tbody tr:hover { background: #F6F8FC; }
.data-table tbody td { padding: 13px 18px; color: var(--text-body); }

/* ===== INFO BOXES ===== */
.info-box {
  border: 1px solid var(--border);
  padding: 24px 28px;
  margin: 24px 0;
  background: var(--white);
}
.info-box.accent { border-left: 4px solid var(--accent); }
.info-box.dark { background: var(--ink); border-color: var(--ink); color: rgba(255,255,255,0.85); }
.info-box-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.info-box.dark .info-box-title { color: var(--white); }
.info-box p { font-size: 0.88rem; line-height: 1.7; }

/* ===== ACCORDION / FAQ ===== */
.faq-list { border: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s;
}
.faq-q:hover { background: #F8F9FC; }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s; fill: var(--mid); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.78;
}
.faq-item.open .faq-a { display: block; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-body);
  background: var(--white);
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--ink);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.76rem; color: var(--mid); margin-top: 6px; }
.form-success {
  display: none;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  padding: 18px 22px;
  margin-top: 18px;
  font-size: 0.9rem;
  color: #2E7D32;
  line-height: 1.6;
}
.contact-info-block { padding: 36px 32px; background: var(--ink); color: var(--white); }
.contact-info-block h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 36px; height: 36px;
  background: rgba(176,74,48,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { fill: var(--accent); }
.contact-detail-text { font-size: 0.87rem; line-height: 1.6; color: rgba(255,255,255,0.72); }
.contact-detail-text strong { display: block; color: var(--white); font-weight: 500; margin-bottom: 2px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0;
}
.breadcrumb-list {
  display: flex;
  gap: 0;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  align-items: center;
}
.breadcrumb-list li::after { content: '/'; margin: 0 10px; }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list a { color: rgba(255,255,255,0.55); }
.breadcrumb-list a:hover { color: var(--accent); }
.breadcrumb-list li:last-child { color: rgba(255,255,255,0.78); }

/* ===== FOOTER ===== */
.site-footer {
  background: #111928;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 16px; display: block; }
.footer-desc { font-size: 0.83rem; line-height: 1.72; color: rgba(255,255,255,0.48); max-width: 300px; }
.footer-disclaimer {
  margin-top: 16px;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.68;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { display: flex; flex-direction: column; gap: 0; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.15s, padding-left 0.15s;
}
.footer-links a:last-child { border-bottom: none; }
.footer-links a:hover { color: rgba(255,255,255,0.85); padding-left: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1A2744;
  border-top: 2px solid var(--accent);
  padding: 18px 0;
  z-index: 9999;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-text { font-size: 0.82rem; color: rgba(255,255,255,0.72); line-height: 1.6; flex: 1; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ===== POLICY PAGES ===== */
.policy-content { padding: 72px 0; max-width: 820px; }
.policy-content h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin: 40px 0 14px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.policy-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.policy-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0 10px;
}
.policy-content p { font-size: 0.93rem; line-height: 1.82; color: var(--text-body); margin-bottom: 16px; }
.policy-content ul, .policy-content ol {
  margin: 14px 0 16px 22px;
  font-size: 0.91rem;
  line-height: 1.78;
  color: var(--text-body);
}
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { margin-bottom: 7px; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 0.86rem; }
.policy-content table th { background: var(--ink); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 500; }
.policy-content table td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--text-body); }
.policy-content table tr:hover td { background: #F6F8FC; }
.last-updated { font-size: 0.78rem; color: var(--mid); margin-bottom: 36px; }

/* ===== PROGRESS BAR ===== */
.progress-bar { width: 100%; height: 6px; background: var(--soft); margin: 8px 0; }
.progress-fill { height: 100%; background: var(--accent); }

/* ===== NOTIFICATION ===== */
.notification {
  position: fixed;
  top: 90px; right: 24px;
  background: var(--ink);
  color: var(--white);
  padding: 14px 22px;
  font-size: 0.85rem;
  border-left: 3px solid var(--accent);
  z-index: 9998;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s;
  pointer-events: none;
  max-width: 320px;
}
.notification.show { opacity: 1; transform: translateX(0); }

/* ===== TABS ===== */
.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 36px;
  gap: 0;
}
.tab-btn {
  background: none;
  border: none;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn.active { color: var(--ink); border-bottom-color: var(--accent); }
.tab-btn:hover { color: var(--ink); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== SITE MAP ===== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.sitemap-section h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.sitemap-section ul { display: flex; flex-direction: column; gap: 2px; }
.sitemap-section ul li a {
  display: block;
  font-size: 0.85rem;
  color: var(--mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, padding-left 0.15s;
}
.sitemap-section ul li:last-child a { border-bottom: none; }
.sitemap-section ul li a:hover { color: var(--accent); padding-left: 6px; }

/* ===== SEARCH BAR ===== */
.search-bar {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 36px;
  background: var(--white);
}
.search-input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-body);
  outline: none;
  background: transparent;
}
.search-btn {
  background: var(--ink);
  border: none;
  padding: 0 24px;
  cursor: pointer;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.search-btn:hover { background: var(--accent); }

/* ===== CHART BARS ===== */
.chart-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.chart-label { font-size: 0.82rem; color: var(--text-body); width: 180px; flex-shrink: 0; }
.chart-bar-wrap { flex: 1; height: 28px; background: var(--soft); position: relative; }
.chart-bar { height: 100%; background: var(--ink); transition: width 1s ease; }
.chart-bar.accent { background: var(--accent); }
.chart-bar.mid { background: var(--mid); }
.chart-value { font-size: 0.78rem; font-weight: 600; color: var(--ink); width: 40px; text-align: right; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --gutter: 28px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .expert-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .stat-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .hero { padding: 64px 0 52px; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-image img { min-height: 260px; }
  .feature-content { padding: 40px 28px; }
  .cards-grid { grid-template-columns: 1fr; }
  .expert-grid { grid-template-columns: 1fr; }
  .article-row { grid-template-columns: 1fr; }
  .article-num { display: none; }
  .article-date { display: none; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--ink); padding: 8px 0; border-top: 2px solid var(--accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .main-nav.open > li { width: 100%; }
  .main-nav.open > li > a { height: auto; line-height: 1.5; padding: 14px 24px; }
  .dropdown { position: static; border-top: none; box-shadow: none; background: rgba(255,255,255,0.04); }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stat-strip-grid { grid-template-columns: 1fr 1fr; }
  .cookie-inner { flex-direction: column; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .tab-nav { overflow-x: auto; }
}
