@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&display=swap');

/* ========================
   FENTAR — CSS VARIABLES
   ======================== */
:root {
  --snow: #FAFAFA;
  --white: #FFFFFF;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --slate-dark: #334155;
  --teal: #0F766E;
  --teal-dark: #0D6B64;
  --teal-light: #CCFBF1;
  --amber: #D97706;
  --amber-light: #FEF3C7;
  --ink: #1E293B;
  --ink-soft: #2D3748;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --font-serif: 'Playfair Display', 'Source Serif 4', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.05);
  --max-width: 1200px;
  --content-width: 780px;
}

/* ========================
   RESET & BASE
   ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--snow);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-dark); }
ul, ol { list-style: none; }

/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--ink); line-height: 1.25; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--slate-dark); line-height: 1.8; margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); font-weight: 600; }
em { font-style: italic; }

/* ========================
   LAYOUT UTILITIES
   ======================== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--content-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 112px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ========================
   HEADER / NAV
   ======================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-dark);
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--teal);
  background: var(--teal-light);
}
.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 220px;
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 200;
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--slate-dark);
  border-radius: 0;
  white-space: nowrap;
}
.dropdown a:hover { background: var(--border-light); color: var(--teal); }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ========================
   HERO
   ======================== */
.hero {
  background: var(--snow);
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--border);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--teal);
  display: block;
}
.hero h1 { margin-bottom: 24px; }
.hero-lead {
  font-size: 1.125rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.hero-stat { padding: 0 24px 0 0; }
.hero-stat + .hero-stat {
  padding-left: 24px;
  border-left: 1px solid var(--border);
}
.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.8rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.06em; }

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: white; }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: white; }
.btn-amber {
  background: var(--amber);
  color: white;
  border-color: var(--amber);
}
.btn-amber:hover { background: #B45309; border-color: #B45309; color: white; }
.btn-ghost {
  background: transparent;
  color: var(--slate-dark);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ========================
   SECTION LABELS
   ======================== */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after {
  content: '';
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--teal);
}
.section-intro {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 640px;
  line-height: 1.75;
  margin-top: 12px;
}
hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}
hr.divider-sm { margin: 24px 0; }
hr.divider-thick {
  border-top: 2px solid var(--border);
  margin: 56px 0;
}

/* ========================
   CARDS
   ======================== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-img { aspect-ratio: 16/9; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.card:hover .card-img img { transform: scale(1.03); }
.card-body { padding: 24px; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--slate);
  margin-bottom: 10px;
}
.card-tag {
  background: var(--teal-light);
  color: var(--teal);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card-tag-amber {
  background: var(--amber-light);
  color: var(--amber);
}
.card h3 { margin-bottom: 8px; }
.card h3 a { color: var(--ink); }
.card h3 a:hover { color: var(--teal); }
.card-excerpt { font-size: 0.9rem; color: var(--slate); line-height: 1.65; }
.card-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}
.read-more {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.read-more:hover { gap: 9px; }

/* Course card */
.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
}
.course-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.course-card-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.course-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.course-level {
  font-size: 0.72rem;
  color: var(--slate);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.course-body { padding: 20px 24px; }
.course-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.8rem; color: var(--slate); margin-top: 12px; }
.course-meta span { display: flex; align-items: center; gap: 5px; }
.course-footer { padding: 16px 24px; border-top: 1px solid var(--border-light); }

/* ========================
   QUOTE / CITE CARDS
   ======================== */
.quote-card {
  background: var(--white);
  border-left: 4px solid var(--teal);
  padding: 32px 36px;
  border-radius: 0 6px 6px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--teal);
  opacity: 0.15;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--border);
  flex-shrink: 0;
}
.quote-avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote-name { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.quote-role { font-size: 0.78rem; color: var(--slate); }

/* Stat block */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.stat-item {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.82rem; color: var(--slate); }

/* ========================
   FEATURED / EDITORIAL
   ======================== */
.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}
.featured-primary { position: relative; }
.featured-primary .card-img { aspect-ratio: 16/9; }
.featured-secondary { display: flex; flex-direction: column; gap: 16px; }
.article-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  align-items: start;
}
.article-row:last-child { border-bottom: none; padding-bottom: 0; }
.article-row-img { aspect-ratio: 1/1; border-radius: 4px; overflow: hidden; }
.article-row-img img { width: 100%; height: 100%; object-fit: cover; }
.article-row-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); font-weight: 600; }
.article-row h4 { font-size: 0.95rem; line-height: 1.35; margin: 4px 0 6px; }
.article-row h4 a { color: var(--ink); }
.article-row h4 a:hover { color: var(--teal); }
.article-row-meta { font-size: 0.75rem; color: var(--slate-light); }

/* ========================
   INFOGRAPHIC / DATA SECTIONS
   ======================== */
.infographic-section {
  background: var(--ink);
  color: white;
  padding: 80px 0;
}
.infographic-section h2 { color: white; }
.infographic-section p { color: #CBD5E1; }
.data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.data-item {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
}
.data-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.data-label { font-size: 0.82rem; color: #94A3B8; }
.data-desc { font-size: 0.78rem; color: #64748B; margin-top: 6px; }

/* ========================
   TOPICS BAR
   ======================== */
.topics-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.topics-inner {
  display: flex;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.topic-tab {
  display: block;
  padding: 16px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
}
.topic-tab:hover, .topic-tab.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* ========================
   NEWSLETTER / CTA BAND
   ======================== */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 72px 0;
  text-align: center;
  color: white;
}
.cta-band h2 { color: white; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 16px auto 32px; }
.cta-band-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band-form input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-sans);
}

/* ========================
   FORM STYLES
   ======================== */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--snow);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15,118,110,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--slate); margin-top: 6px; }

/* ========================
   FOOTER
   ======================== */
.site-footer {
  background: var(--ink);
  color: #94A3B8;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name { color: white; }
.footer-brand .logo-sub { color: #64748B; }
.footer-brand p { font-size: 0.875rem; color: #64748B; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E2E8F0;
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.875rem; color: #64748B; transition: color 0.2s; }
.footer-links a:hover { color: #0F766E; }
.footer-contact-item {
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
}
.footer-contact-icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.78rem;
  color: #475569;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #475569; }
.footer-bottom-links a:hover { color: var(--teal); }

/* ========================
   BREADCRUMB
   ======================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--slate);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb-sep { color: var(--slate-light); }

/* ========================
   PAGE HEADER
   ======================== */
.page-header {
  background: var(--white);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-header-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.page-header h1 { margin-bottom: 12px; }
.page-header .lead {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 680px;
  line-height: 1.75;
}

/* ========================
   ARTICLE / CONTENT
   ======================== */
.article-header { margin-bottom: 40px; }
.article-title { margin-bottom: 16px; }
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--slate);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 16px;
}
.article-meta-bar .tag { background: var(--teal-light); color: var(--teal); }
.article-hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: 6px;
  margin: 32px 0;
}
.article-body h2 { margin: 40px 0 16px; font-size: 1.7rem; }
.article-body h3 { margin: 32px 0 12px; font-size: 1.3rem; }
.article-body p { font-size: 1.025rem; line-height: 1.85; color: var(--ink-soft); margin-bottom: 1.4em; }
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 1.4em;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: 1.025rem; line-height: 1.8; color: var(--ink-soft); margin-bottom: 0.5em; }
.article-body blockquote {
  border-left: 4px solid var(--teal);
  padding: 20px 28px;
  background: var(--teal-light);
  border-radius: 0 4px 4px 0;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
}
.article-sidebar { position: sticky; top: 88px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.sidebar-links li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { font-size: 0.875rem; color: var(--slate-dark); font-weight: 500; }
.sidebar-links a:hover { color: var(--teal); }
.toc-list { counter-reset: toc; }
.toc-list li {
  counter-increment: toc;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.83rem;
}
.toc-list a { color: var(--slate); }
.toc-list a:hover { color: var(--teal); }
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }

/* ========================
   TAGS / TAXONOMY
   ======================== */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag-teal { background: var(--teal-light); color: var(--teal); }
.tag-amber { background: var(--amber-light); color: var(--amber); }
.tag-slate { background: var(--border); color: var(--slate); }
.tags-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }

/* ========================
   FILTER BAR
   ======================== */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  align-items: center;
}
.filter-btn {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-light);
}
.filter-label { font-size: 0.82rem; color: var(--slate); margin-right: 4px; }

/* ========================
   EXPERT / TEAM
   ======================== */
.expert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  gap: 20px;
}
.expert-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--border);
}
.expert-photo img { width: 100%; height: 100%; object-fit: cover; }
.expert-name { font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 3px; }
.expert-title { font-size: 0.82rem; color: var(--teal); font-weight: 500; margin-bottom: 8px; }
.expert-bio { font-size: 0.85rem; color: var(--slate); line-height: 1.6; }

/* ========================
   TIMELINE
   ======================== */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
  position: absolute;
  left: -28px;
  top: 5px;
}
.timeline-date { font-size: 0.75rem; color: var(--amber); font-weight: 700; letter-spacing: 0.05em; margin-bottom: 4px; }
.timeline-title { font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 6px; }
.timeline-body { font-size: 0.875rem; color: var(--slate); line-height: 1.65; }

/* ========================
   POLICY PAGE
   ======================== */
.policy-body h2 { font-size: 1.4rem; margin: 40px 0 12px; color: var(--ink); }
.policy-body h3 { font-size: 1.1rem; margin: 28px 0 10px; color: var(--slate-dark); }
.policy-body p, .policy-body li { font-size: 0.975rem; color: var(--slate-dark); line-height: 1.8; margin-bottom: 1em; }
.policy-body ul { list-style: disc; padding-left: 24px; }
.policy-body ol { list-style: decimal; padding-left: 24px; }
.policy-update { background: var(--amber-light); border-left: 4px solid var(--amber); padding: 16px 20px; border-radius: 0 4px 4px 0; font-size: 0.875rem; color: var(--ink); margin-bottom: 32px; }

/* ========================
   THANK YOU PAGE
   ======================== */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}
.thankyou-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}
.thankyou-wrap h1 { font-size: 2.2rem; margin-bottom: 16px; }
.thankyou-wrap p { color: var(--slate); max-width: 520px; margin: 0 auto 32px; }

/* ========================
   PAGINATION
   ======================== */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--slate-dark);
  text-decoration: none;
  transition: all 0.2s;
}
.page-btn:hover, .page-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

/* ========================
   NOTICE / ALERT
   ======================== */
.notice {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
}
.notice-info { background: var(--teal-light); color: var(--teal-dark); border-left: 3px solid var(--teal); }
.notice-amber { background: var(--amber-light); color: #92400E; border-left: 3px solid var(--amber); }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .data-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .featured-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px; box-shadow: var(--shadow); }
  .main-nav.open ul { flex-direction: column; }
  .dropdown { position: static; box-shadow: none; border: none; padding: 0 0 0 16px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat + .hero-stat { border-left: none; border-top: 1px solid var(--border); padding: 16px 0 0; margin-top: 16px; }
  .header-inner { flex-wrap: wrap; }
  .contact-form { padding: 24px; }
  .expert-card { flex-direction: column; }
  .data-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
  .data-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .cta-band-form { flex-direction: column; }
  .cta-band-form input { width: 100%; }
}

/* ========================
   COOKIE BANNER
   ======================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: #E2E8F0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  flex-wrap: wrap;
}
#cookie-banner p { font-size: 0.875rem; color: #CBD5E1; margin: 0; max-width: 640px; }
#cookie-banner a { color: var(--teal); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
