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

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

:root {
  --dark:       #1c1c2b;
  --dark-alt:   #252537;
  --dark-card:  #2a2a3d;
  --mid-gray:   #4a4a6a;
  --border:     #3a3a52;
  --accent:     #5ba3d9;
  --accent-dim: #3a7eb5;
  --accent-soft:#a8d4f0;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --light-text: #c8d0de;
  --muted:      #8890a4;
  --success:    #3fb68e;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --font-read:  'Source Serif 4', Georgia, serif;
  --radius:     6px;
  --shadow:     0 4px 24px rgba(0,0,0,0.28);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.18);
}

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

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-soft); }

img { max-width: 100%; height: auto; display: block; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.25;
}

p { margin-bottom: 1rem; }

ul, ol { padding-left: 1.5rem; }

/* ============================================================
   LAYOUT
============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 110px 0; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(28, 28, 43, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav__logo {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}

.nav__logo span { color: var(--accent); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
}

.nav__menu li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--light-text);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.nav__menu li a:hover,
.nav__menu li a.active {
  background: rgba(91,163,217,0.12);
  color: var(--accent);
}

.nav__cta {
  background: var(--accent) !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
  padding: 7px 16px !important;
}
.nav__cta:hover { background: var(--accent-dim) !important; color: var(--white) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
  box-shadow: var(--shadow);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.nav__dropdown-menu li { list-style: none; }
.nav__dropdown-menu li a {
  display: block;
  padding: 9px 18px;
  border-radius: 0;
  font-size: 0.85rem;
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 24px 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s;
    z-index: 999;
  }
  .nav__menu.open { transform: none; }
  .nav__menu li { width: 100%; }
  .nav__menu li a { display: block; padding: 12px 14px; font-size: 1rem; }
  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: var(--dark-card);
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 12px;
    min-width: auto;
  }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,43,0.97) 0%, rgba(28,28,43,0.6) 55%, rgba(28,28,43,0.2) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 64px;
  max-width: 760px;
}

.hero__kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero__desc {
  font-family: var(--font-read);
  font-size: 1.125rem;
  color: rgba(200,208,222,0.9);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--dark);
}
.btn--primary:hover {
  background: var(--accent-dim);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(91,163,217,0.08);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  padding: 0;
  font-size: 0.875rem;
}
.btn--ghost:hover { color: var(--accent-soft); gap: 12px; }

.btn--sm { padding: 9px 18px; font-size: 0.82rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* ============================================================
   CARDS
============================================================ */
.card {
  background: var(--dark-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(91,163,217,0.3);
}

.card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card__body { padding: 22px; }

.card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}

.card__excerpt {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--muted);
}

.card__meta-dot { width: 3px; height: 3px; background: var(--border); border-radius: 50%; }

/* ============================================================
   ARTICLE GRID
============================================================ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 960px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .article-grid { grid-template-columns: 1fr; } }

.article-grid--featured {
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
}
.article-grid--featured .card:first-child {
  grid-row: 1 / 3;
}
@media (max-width: 860px) {
  .article-grid--featured { grid-template-columns: 1fr; }
  .article-grid--featured .card:first-child { grid-row: auto; }
}

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-header { margin-bottom: 52px; }
.section-header--center { text-align: center; }

.section-header__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-header__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.section-header__desc {
  font-family: var(--font-read);
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
}
.section-header--center .section-header__desc { margin: 0 auto; }

/* ============================================================
   DIVIDER
============================================================ */
.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 18px 0;
}
.divider--center { margin: 18px auto; }

/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-bar__item {
  padding: 32px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stats-bar__label { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
@media (max-width: 700px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item:nth-child(2) { border-right: none; }
  .stats-bar__item:nth-child(3) { border-top: 1px solid var(--border); }
  .stats-bar__item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

/* ============================================================
   TOPIC CHIPS
============================================================ */
.topic-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.topic-chip {
  display: inline-block;
  padding: 7px 16px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--light-text);
  transition: all .2s;
  cursor: pointer;
}
.topic-chip:hover, .topic-chip--active {
  background: rgba(91,163,217,0.15);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   SIDEBAR WIDGET
============================================================ */
.sidebar-widget {
  background: var(--dark-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  margin-bottom: 28px;
}
.sidebar-widget__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   TWO-COL LAYOUT
============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) { .two-col { grid-template-columns: 1fr; } }

/* ============================================================
   QUOTE BLOCK
============================================================ */
.pullquote {
  border-left: 4px solid var(--accent);
  padding: 18px 28px;
  background: rgba(91,163,217,0.07);
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
}
.pullquote p {
  font-family: var(--font-read);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.65;
  font-style: italic;
  margin: 0;
}
.pullquote cite {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 10px;
  font-style: normal;
}

/* ============================================================
   ARTICLE CONTENT
============================================================ */
.article-content {
  font-family: var(--font-read);
  font-size: 1.065rem;
  color: var(--light-text);
  line-height: 1.82;
}
.article-content h2 {
  font-size: 1.7rem;
  margin: 44px 0 18px;
  color: var(--white);
}
.article-content h3 {
  font-size: 1.3rem;
  margin: 32px 0 14px;
  color: var(--white);
}
.article-content p { margin-bottom: 1.4rem; }
.article-content ul, .article-content ol { margin-bottom: 1.4rem; }
.article-content li { margin-bottom: 6px; }
.article-content strong { color: var(--white); font-weight: 600; }
.article-content img {
  width: 100%;
  border-radius: 8px;
  margin: 28px 0;
}
.article-content .img-caption {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: -20px;
  margin-bottom: 28px;
  font-style: italic;
}

/* ============================================================
   TAG LIST
============================================================ */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 5px 13px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.78rem;
  color: var(--muted);
  transition: all .2s;
}
.tag:hover { border-color: var(--accent); color: var(--accent); }
.tag a { color: inherit; }
.tag a:hover { color: inherit; }

/* ============================================================
   AUTHOR BOX
============================================================ */
.author-box {
  display: flex;
  gap: 20px;
  background: var(--dark-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  margin: 48px 0;
  align-items: flex-start;
}
.author-box__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-box__name { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.author-box__role { font-size: 0.78rem; color: var(--accent); margin-bottom: 8px; }
.author-box__bio { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ============================================================
   EXPERTS GRID
============================================================ */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .experts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .experts-grid { grid-template-columns: 1fr; } }

.expert-card {
  background: var(--dark-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  transition: transform .25s, border-color .25s;
}
.expert-card:hover { transform: translateY(-4px); border-color: rgba(91,163,217,0.3); }
.expert-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--border);
}
.expert-card__name { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.expert-card__role { font-size: 0.8rem; color: var(--accent); margin-bottom: 12px; }
.expert-card__bio { font-size: 0.855rem; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }

/* ============================================================
   CONTACT FORM
============================================================ */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 13px 16px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91,163,217,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-success {
  display: none;
  background: rgba(63,182,142,0.1);
  border: 1px solid var(--success);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--success);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 20px;
}
.form-success.visible { display: flex; align-items: center; gap: 12px; }
.form-success__icon { font-size: 1.4rem; flex-shrink: 0; }

/* ============================================================
   BREADCRUMB
============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 18px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb__current { color: var(--light-text); }

/* ============================================================
   INFO BOX
============================================================ */
.info-box {
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box--blue {
  background: rgba(91,163,217,0.08);
  border-left: 3px solid var(--accent);
}
.info-box--note {
  background: rgba(255,200,50,0.07);
  border-left: 3px solid #e6b83a;
}
.info-box__title { font-weight: 700; color: var(--white); margin-bottom: 8px; font-size: 0.9rem; }
.info-box p { margin: 0; font-size: 0.875rem; color: var(--muted); }

/* ============================================================
   TABLE
============================================================ */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  background: var(--dark-card);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 14px 16px;
  font-size: 0.875rem;
  color: var(--light-text);
  border-bottom: 1px solid rgba(58,58,82,0.5);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.table-wrap {
  background: var(--dark-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow-x: auto;
}

/* ============================================================
   EVENTS
============================================================ */
.event-item {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: var(--dark-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 20px;
  transition: border-color .2s;
}
.event-item:hover { border-color: rgba(91,163,217,0.3); }
.event-item__date {
  flex-shrink: 0;
  width: 68px;
  height: 72px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.event-item__date-day { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--dark); line-height: 1; }
.event-item__date-mon { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--dark); letter-spacing: 0.06em; }
.event-item__info { flex: 1; }
.event-item__title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.event-item__meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 10px; }
.event-item__desc { font-size: 0.875rem; color: var(--light-text); margin: 0; }
@media (max-width: 560px) { .event-item { flex-direction: column; } .event-item__date { width: 100%; height: auto; flex-direction: row; gap: 6px; padding: 10px; } }

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter-block {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 52px 48px;
  text-align: center;
}
.newsletter-block__title { font-size: 1.9rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.newsletter-block__desc { font-size: 1rem; color: var(--muted); margin-bottom: 30px; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: 12px; max-width: 440px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  background: var(--dark-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input:focus { border-color: var(--accent); }
@media (max-width: 500px) { .newsletter-form { flex-direction: column; } .newsletter-block { padding: 36px 24px; } }

/* ============================================================
   NUMBERED LIST
============================================================ */
.numbered-list { list-style: none; padding: 0; counter-reset: numlist; }
.numbered-list li {
  counter-increment: numlist;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.numbered-list li:last-child { border-bottom: none; }
.numbered-list li::before {
  content: counter(numlist, decimal-leading-zero);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 36px;
}
.numbered-list li h4 { font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.numbered-list li p { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ============================================================
   CHECKLIST
============================================================ */
.checklist { list-style: none; padding: 0; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--light-text);
}
.checklist li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   POLICY PAGES
============================================================ */
.policy-content h2 { font-size: 1.5rem; margin: 40px 0 16px; padding-top: 10px; }
.policy-content h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.policy-content p, .policy-content li { font-size: 0.95rem; color: var(--light-text); line-height: 1.78; }
.policy-content ul, .policy-content ol { padding-left: 1.6rem; margin-bottom: 1.2rem; }
.policy-content li { margin-bottom: 6px; }
.policy-content a { color: var(--accent); }
.policy-toc {
  background: var(--dark-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 26px;
  margin-bottom: 44px;
}
.policy-toc__title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.policy-toc ol { padding-left: 1.2rem; margin: 0; }
.policy-toc li { padding: 4px 0; font-size: 0.85rem; }
.policy-toc a { color: var(--muted); }
.policy-toc a:hover { color: var(--accent); }

/* ============================================================
   PAGE HEADER
============================================================ */
.page-header {
  padding: 64px 0 52px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(91,163,217,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-header__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.page-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 700px;
}
.page-header__desc {
  font-family: var(--font-read);
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--dark-alt);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
  margin-top: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand-name {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  display: block;
}
.footer__brand-name span { color: var(--accent); }
.footer__brand-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.68; margin-bottom: 22px; }
.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__links { list-style: none; padding: 0; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: 0.875rem; color: var(--muted); transition: color .2s; }
.footer__links a:hover { color: var(--accent); }
.footer__contact-item {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
}
.footer__contact-item a { color: var(--muted); }
.footer__contact-item a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 0.8rem; color: var(--muted); }
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__legal a { font-size: 0.8rem; color: var(--muted); }
.footer__legal a:hover { color: var(--accent); }

/* ============================================================
   MISC UTILITIES
============================================================ */
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }
.fw-bold { font-weight: 700; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.highlight-box {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
}

.img-full {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.reading-progress {
  position: fixed;
  top: 68px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent);
  z-index: 999;
  transition: width .1s linear;
}

.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 800;
  font-weight: 700;
}
.back-top.visible { opacity: 1; pointer-events: auto; }

/* ============================================================
   RESPONSIVE HELPERS
============================================================ */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { min-height: 500px; }
  .hero__content { padding: 56px 0 48px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
}
