@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:wght@400;700&display=swap');

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

:root {
  --blue-dark:   #1a3a5c;
  --blue-mid:    #2b5c8a;
  --blue-light:  #4a82b5;
  --blue-pale:   #ddeaf7;
  --green-dark:  #1e5c3a;
  --green-mid:   #2e7d52;
  --green-light: #4aaa74;
  --green-pale:  #d6f0e3;
  --gray-900:    #1f2937;
  --gray-700:    #374151;
  --gray-500:    #6b7280;
  --gray-300:    #d1d5db;
  --gray-100:    #f3f4f6;
  --cream:       #fafaf8;
  --white:       #ffffff;
  --accent:      #e8630a;
  --border:      #e2e8f0;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --transition:  0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--cream);
}

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

/* ── TYPOGRAPHY ────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', serif;
  color: var(--gray-900);
  line-height: 1.3;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--gray-500); }

/* ── LAYOUT ───────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 840px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 96px 0; }
.section--alt { background: var(--gray-100); }
.section--blue { background: var(--blue-dark); color: var(--white); }
.section--blue h2, .section--blue h3, .section--blue p { color: var(--white); }

/* ── HEADER ──────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--blue-mid);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark span {
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  font-family: 'Inter', sans-serif;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); }
.logo-text .tagline { font-size: 0.68rem; color: var(--gray-500); letter-spacing: .04em; text-transform: uppercase; }

.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-main a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-main a:hover, .nav-main a.active {
  background: var(--blue-pale);
  color: var(--blue-mid);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.75rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 0.85rem;
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--blue-pale); }

.header-cta {
  background: var(--blue-mid);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}
.header-cta:hover { background: var(--blue-dark) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, #2e5c8a 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img img { width: 100%; height: 380px; object-fit: cover; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-secondary {
  background: var(--blue-pale);
  color: var(--blue-mid);
  border-color: var(--blue-pale);
}
.btn-secondary:hover {
  background: var(--blue-mid);
  color: var(--white);
}
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }

/* ── CARDS ───────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; }
.card-meta { font-size: 0.78rem; color: var(--gray-500); margin-bottom: 10px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.card-meta .tag {
  background: var(--blue-pale);
  color: var(--blue-mid);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.72rem;
}
.card-meta .tag-green {
  background: var(--green-pale);
  color: var(--green-dark);
}
.card-title { font-size: 1.05rem; margin-bottom: 10px; font-family: 'Merriweather', serif; }
.card-title a { color: var(--gray-900); }
.card-title a:hover { color: var(--blue-mid); }
.card-text { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 16px; line-height: 1.6; }
.card-footer { padding: 16px 24px; border-top: 1px solid var(--border); background: var(--gray-100); display: flex; justify-content: space-between; align-items: center; }
.read-more { font-size: 0.82rem; font-weight: 600; color: var(--blue-mid); }
.read-more:hover { color: var(--blue-dark); }

/* ── GRIDS ───────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }

/* ── STATS BAR ───────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2rem; font-weight: 700; color: var(--blue-mid); font-family: 'Inter', sans-serif; line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--gray-500); margin-top: 6px; }

/* ── CATEGORY PILLS ──────────────────────────── */
.cat-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.cat-pill {
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: var(--white);
}

/* ── SECTION HEADER ──────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
  display: block;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray-500); }

/* ── ARTICLE PAGE ────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.article-content { min-width: 0; }
.article-content h2 { margin: 32px 0 16px; }
.article-content h3 { margin: 28px 0 12px; color: var(--blue-mid); }
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol { margin: 0 0 18px 24px; }
.article-content li { margin-bottom: 8px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-img-full { border-radius: var(--radius-md); overflow: hidden; margin: 28px 0; }
.article-img-full img { width: 100%; height: 360px; object-fit: cover; }
.article-hero-img { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 28px; }
.article-hero-img img { width: 100%; height: 420px; object-fit: cover; }
.article-meta-bar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.article-meta-bar strong { color: var(--gray-700); }

/* ── SIDEBAR ─────────────────────────────────── */
.sidebar { position: sticky; top: 86px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h4 { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--blue-pale); font-size: 0.95rem; }
.sidebar-link-list li { margin-bottom: 10px; }
.sidebar-link-list a { font-size: 0.85rem; color: var(--gray-700); display: flex; align-items: flex-start; gap: 8px; }
.sidebar-link-list a::before { content: '→'; color: var(--blue-light); flex-shrink: 0; margin-top: 1px; }
.sidebar-link-list a:hover { color: var(--blue-mid); }
.sidebar-stat { text-align: center; padding: 8px 0; }
.sidebar-stat .num { font-size: 2.2rem; font-weight: 700; color: var(--blue-mid); }
.sidebar-stat .lbl { font-size: 0.8rem; color: var(--gray-500); }
.widget-divider { border: none; border-top: 1px solid var(--border); margin: 12px 0; }

/* ── HIGHLIGHT BOX ───────────────────────────── */
.highlight-box {
  background: var(--blue-pale);
  border-left: 4px solid var(--blue-mid);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { margin: 0; color: var(--blue-dark); font-weight: 500; }
.highlight-box--green {
  background: var(--green-pale);
  border-color: var(--green-mid);
}
.highlight-box--green p { color: var(--green-dark); }
.highlight-box--warn {
  background: #fff7ed;
  border-color: var(--accent);
}
.highlight-box--warn p { color: #7c2d12; }

/* ── DATA TABLE ──────────────────────────────── */
.data-table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--radius-md); border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.data-table th {
  background: var(--blue-dark);
  color: var(--white);
  padding: 13px 16px;
  text-align: left;
  font-weight: 600;
}
.data-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--gray-100); }
.data-table .up { color: var(--green-mid); font-weight: 600; }
.data-table .down { color: #dc2626; font-weight: 600; }

/* ── INFOGRAPHIC STRIP ───────────────────────── */
.info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.info-strip-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}
.info-strip-item .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 12px;
  background: var(--blue-pale);
  color: var(--blue-mid);
}
.info-strip-item h4 { font-size: 0.9rem; margin-bottom: 6px; }
.info-strip-item p { font-size: 0.8rem; color: var(--gray-500); margin: 0; }

/* ── BREADCRUMB ──────────────────────────────── */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--gray-500);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--blue-mid); }
.breadcrumb span { margin: 0 8px; }

/* ── PAGE BANNER ─────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  padding: 60px 0;
  color: var(--white);
}
.page-banner h1 { color: var(--white); margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,.75); max-width: 640px; }

/* ── FORM ────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--blue-mid); }
.form-control::placeholder { color: var(--gray-300); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-hint { font-size: 0.78rem; color: var(--gray-500); margin-top: 4px; }
.form-success {
  display: none;
  background: var(--green-pale);
  border: 1.5px solid var(--green-mid);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  color: var(--green-dark);
}
.form-success h4 { margin-bottom: 6px; font-size: 1rem; }
.form-success p { margin: 0; font-size: 0.88rem; }

/* ── NEWSLETTER ──────────────────────────────── */
.newsletter-box {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: var(--white);
}
.newsletter-box h3 { color: var(--white); margin-bottom: 10px; }
.newsletter-box p { color: rgba(255,255,255,.8); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter-form .form-control { flex: 1; background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); color: var(--white); }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.5); }

/* ── TEAM CARD ───────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}
.team-card-img { width: 100%; height: 220px; object-fit: cover; object-position: top; }
.team-card-body { padding: 20px; }
.team-card-body h4 { margin-bottom: 4px; }
.team-card-body .role { font-size: 0.82rem; color: var(--blue-mid); font-weight: 500; }
.team-card-body p { font-size: 0.83rem; color: var(--gray-500); margin-top: 10px; margin-bottom: 0; }

/* ── TIMELINE ────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--blue-pale); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue-mid);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue-mid);
}
.timeline-date { font-size: 0.78rem; color: var(--blue-mid); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.timeline-title { font-size: 1rem; font-weight: 600; margin-bottom: 6px; color: var(--gray-900); }
.timeline-text { font-size: 0.87rem; color: var(--gray-500); margin: 0; }

/* ── ACCORDION ───────────────────────────────── */
.accordion { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.accordion-btn:hover { background: var(--gray-100); }
.accordion-btn .chevron { font-size: 0.8rem; transition: transform var(--transition); }
.accordion-btn.open .chevron { transform: rotate(180deg); }
.accordion-panel { display: none; padding: 0 24px 18px; color: var(--gray-500); font-size: 0.9rem; line-height: 1.7; }
.accordion-panel.open { display: block; }

/* ── QUOTE ───────────────────────────────────── */
.pull-quote {
  border-left: 4px solid var(--green-mid);
  padding: 20px 28px;
  margin: 28px 0;
  background: var(--green-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.pull-quote p { font-size: 1.05rem; font-style: italic; color: var(--green-dark); margin: 0; line-height: 1.6; }
.pull-quote cite { font-size: 0.82rem; color: var(--gray-500); margin-top: 8px; display: block; font-style: normal; }

/* ── RELATED POSTS ───────────────────────────── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.related-item img { width: 100%; height: 140px; object-fit: cover; }
.related-item-body { padding: 16px; }
.related-item-body .cat { font-size: 0.72rem; color: var(--blue-mid); font-weight: 600; text-transform: uppercase; margin-bottom: 6px; }
.related-item-body h5 { font-size: 0.9rem; line-height: 1.4; }
.related-item-body h5 a { color: var(--gray-900); }
.related-item-body h5 a:hover { color: var(--blue-mid); }

/* ── CONTACT PAGE ────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }
.contact-info-card {
  background: var(--blue-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-item .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-item .info-label { font-size: 0.75rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }
.contact-info-item .info-val { color: var(--white); font-weight: 500; font-size: 0.92rem; }

/* ── FOOTER ──────────────────────────────────── */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-text .brand { color: var(--white); }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,.45); }
.footer-brand .logo-mark { background: var(--blue-mid); }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,.55); margin-top: 16px; line-height: 1.7; }
.footer-col h5 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 18px; font-family: 'Inter', sans-serif; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,.6); font-size: 0.85rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-policy-links { display: flex; gap: 20px; }

/* ── MOBILE NAV ──────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  padding: 80px 24px 40px;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.1rem; font-weight: 500; color: var(--gray-900); padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--blue-mid); }
.mobile-nav-close {
  position: fixed;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--gray-700);
  z-index: 2001;
}

/* ── CHART PLACEHOLDER ───────────────────────── */
.chart-box {
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 24px 0;
  text-align: center;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.chart-box canvas { display: block; max-width: 100%; }
.chart-label { font-size: 0.8rem; color: var(--gray-500); margin-top: 12px; }

/* ── POLICY PAGE ─────────────────────────────── */
.policy-layout { max-width: 820px; margin: 0 auto; padding: 60px 24px 80px; }
.policy-layout h1 { margin-bottom: 8px; }
.policy-meta { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 36px; padding-bottom: 20px; border-bottom: 2px solid var(--border); }
.policy-layout h2 { font-size: 1.25rem; margin: 36px 0 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.policy-layout h2:first-of-type { border-top: none; padding-top: 0; margin-top: 24px; }
.policy-layout h3 { font-size: 1rem; margin: 20px 0 10px; color: var(--blue-mid); }
.policy-layout ul { margin: 0 0 16px 20px; list-style: disc; }
.policy-layout li { margin-bottom: 6px; font-size: 0.9rem; color: var(--gray-700); }
.policy-layout p { font-size: 0.9rem; }
.policy-toc {
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 36px;
}
.policy-toc h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.policy-toc ol { margin: 0 0 0 18px; }
.policy-toc li { font-size: 0.85rem; margin-bottom: 6px; }
.policy-toc a { color: var(--blue-mid); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-main { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0; }
  .section { padding: 52px 0; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .info-strip { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ── UTILITY ─────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--gray-500); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap-2 { display: flex; gap: 16px; flex-wrap: wrap; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
