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

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

:root {
  --blue-deep:   #0d2d5e;
  --blue-main:   #1a4a7a;
  --blue-mid:    #2563a8;
  --blue-light:  #dbe9f8;
  --mustard:     #c9991e;
  --terra:       #b84c2c;
  --white:       #ffffff;
  --gray-bg:     #f4f6f9;
  --gray-light:  #e8ecf1;
  --gray-mid:    #9aaabb;
  --gray-text:   #4a5568;
  --black-soft:  #1a1f2e;
  --font-main:   'Inter', sans-serif;
  --font-serif:  'Playfair Display', serif;
  --radius:      4px;
  --shadow-sm:   0 1px 3px rgba(13,45,94,.08);
  --shadow-md:   0 4px 16px rgba(13,45,94,.12);
  --shadow-lg:   0 8px 32px rgba(13,45,94,.16);
  --transition:  .22s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--black-soft); background: var(--gray-bg); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: var(--blue-main); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-mid); }
ul { list-style: none; }

/* ============================
   LAYOUT HELPERS
   ============================ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 96px 0; }
.section--white { background: var(--white); }
.section--blue { background: var(--blue-deep); color: var(--white); }
.section--gray { background: var(--gray-bg); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }

.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-gap { display: flex; gap: 16px; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: 12px; }

.text-center { text-align: center; }
.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; }

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4, h5 { font-family: var(--font-main); font-weight: 700; line-height: 1.25; color: var(--blue-deep); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.serif { font-family: var(--font-serif); }
.lead { font-size: 1.2rem; line-height: 1.7; color: var(--gray-text); }
.label { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--mustard); }
.label--terra { color: var(--terra); }
.label--gray { color: var(--gray-mid); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--blue-deep); margin-bottom: 8px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-text); margin-bottom: 40px; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; letter-spacing: .02em;
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); text-decoration: none; white-space: nowrap;
}
.btn--primary { background: var(--blue-main); color: var(--white); border-color: var(--blue-main); }
.btn--primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: var(--white); }
.btn--outline { background: transparent; color: var(--blue-main); border-color: var(--blue-main); }
.btn--outline:hover { background: var(--blue-main); color: var(--white); }
.btn--mustard { background: var(--mustard); color: var(--white); border-color: var(--mustard); }
.btn--mustard:hover { background: #a87d18; border-color: #a87d18; color: var(--white); }
.btn--terra { background: var(--terra); color: var(--white); border-color: var(--terra); }
.btn--terra:hover { background: #9a3e24; border-color: #9a3e24; color: var(--white); }
.btn--white { background: var(--white); color: var(--blue-main); border-color: var(--white); }
.btn--white:hover { background: var(--blue-light); color: var(--blue-deep); }
.btn--sm { padding: 7px 16px; font-size: .82rem; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }

/* ============================
   HEADER / NAV
   ============================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-top {
  background: var(--blue-deep);
  padding: 6px 0;
}
.header-top-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.7);
}
.header-top a { color: rgba(255,255,255,.7); }
.header-top a:hover { color: var(--white); }
.header-main { padding: 18px 0; }
.header-main-inner { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: baseline; gap: 4px; text-decoration: none; }
.logo-word { font-size: 1.9rem; font-weight: 800; color: var(--blue-deep); letter-spacing: -.03em; }
.logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mustard); margin-bottom: 4px; }
.logo-tagline { font-size: .7rem; color: var(--gray-mid); letter-spacing: .08em; text-transform: uppercase; margin-left: 4px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: .88rem; font-weight: 500; color: var(--gray-text);
  padding: 7px 14px; border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--blue-main); background: var(--blue-light);
}
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 6px; box-shadow: var(--shadow-md);
  min-width: 200px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition); z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 9px 18px;
  font-size: .86rem; color: var(--gray-text); border-radius: 0;
}
.nav-dropdown-menu a:hover { color: var(--blue-main); background: var(--gray-bg); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.search-btn {
  width: 36px; height: 36px; border-radius: var(--radius);
  border: 1px solid var(--gray-light); background: var(--gray-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-text); cursor: pointer; transition: all var(--transition);
}
.search-btn:hover { background: var(--blue-light); color: var(--blue-main); border-color: var(--blue-main); }

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

/* ============================
   HERO
   ============================ */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.hero-content {
  padding: 72px 60px 72px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-content .label { margin-bottom: 20px; }
.hero-title { font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--blue-deep); line-height: 1.15; margin-bottom: 20px; }
.hero-desc { font-size: 1.1rem; color: var(--gray-text); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { position: relative; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,45,94,.12) 0%, transparent 60%);
}

/* ============================
   CARDS
   ============================ */
.card {
  background: var(--white); border-radius: 6px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-img { aspect-ratio: 16/9; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-label { margin-bottom: 10px; }
.card-title { font-size: 1.1rem; line-height: 1.35; margin-bottom: 10px; color: var(--blue-deep); }
.card-title a { color: inherit; }
.card-title a:hover { color: var(--blue-mid); }
.card-excerpt { font-size: .88rem; color: var(--gray-text); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.card-meta { display: flex; align-items: center; gap: 12px; font-size: .78rem; color: var(--gray-mid); margin-top: auto; }
.card-meta-sep { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: var(--gray-mid); }
.card-footer { padding: 16px 24px; border-top: 1px solid var(--gray-light); background: var(--gray-bg); }

/* Featured card */
.card--featured { grid-column: span 2; }
.card--featured .card-img { aspect-ratio: 21/9; }
.card--featured .card-title { font-size: 1.4rem; }

/* Horizontal card */
.card--horizontal { flex-direction: row; }
.card--horizontal .card-img { width: 220px; flex-shrink: 0; aspect-ratio: unset; }
.card--horizontal .card-img img { height: 100%; }
.card--horizontal .card-body { padding: 20px; }

/* Number card */
.card--number { padding: 28px; border-left: 4px solid var(--blue-main); border-radius: 0 6px 6px 0; }
.card--number .card-num { font-size: 2.8rem; font-weight: 800; color: var(--blue-main); line-height: 1; margin-bottom: 8px; }

/* ============================
   SIDEBAR
   ============================ */
.sidebar { display: flex; flex-direction: column; gap: 32px; }
.widget { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-sm); }
.widget-header { padding: 16px 20px; border-bottom: 1px solid var(--gray-light); }
.widget-title { font-size: .9rem; font-weight: 700; color: var(--blue-deep); text-transform: uppercase; letter-spacing: .07em; }
.widget-body { padding: 20px; }

.widget-list-item { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--gray-light); }
.widget-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.widget-list-item img { width: 72px; height: 54px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.widget-list-item-title { font-size: .84rem; font-weight: 600; color: var(--blue-deep); line-height: 1.35; }
.widget-list-item-title a { color: inherit; }
.widget-list-item-meta { font-size: .74rem; color: var(--gray-mid); margin-top: 4px; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 5px 12px; border-radius: 20px; font-size: .78rem; font-weight: 500;
  background: var(--gray-bg); color: var(--gray-text); border: 1px solid var(--gray-light);
  transition: all var(--transition); cursor: pointer; text-decoration: none;
}
.tag:hover { background: var(--blue-light); color: var(--blue-main); border-color: var(--blue-main); }

/* ============================
   ARTICLE / SINGLE
   ============================ */
.article-header { background: var(--white); padding: 56px 0 40px; border-bottom: 1px solid var(--gray-light); }
.article-category-path { display: flex; gap: 8px; align-items: center; margin-bottom: 20px; font-size: .82rem; color: var(--gray-mid); }
.article-category-path a { color: var(--mustard); font-weight: 600; }
.article-category-path span { color: var(--gray-mid); }
.article-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; color: var(--blue-deep); margin-bottom: 20px; }
.article-lead { font-size: 1.15rem; color: var(--gray-text); line-height: 1.75; margin-bottom: 28px; }
.article-byline { display: flex; align-items: center; gap: 16px; padding-top: 20px; border-top: 1px solid var(--gray-light); }
.article-author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.article-author-name { font-weight: 600; font-size: .9rem; color: var(--blue-deep); }
.article-date { font-size: .8rem; color: var(--gray-mid); }

.article-hero-img { width: 100%; height: 480px; object-fit: cover; }
.article-hero-caption { font-size: .8rem; color: var(--gray-mid); padding: 10px 0; text-align: center; }

.article-body { max-width: 780px; }
.article-body h2 { font-size: 1.6rem; margin: 36px 0 16px; color: var(--blue-deep); }
.article-body h3 { font-size: 1.25rem; margin: 28px 0 12px; color: var(--blue-deep); }
.article-body p { font-size: 1.02rem; line-height: 1.8; color: #2d3748; margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: 1rem; line-height: 1.75; color: #2d3748; margin-bottom: 6px; }
.article-body strong { color: var(--blue-deep); }
.article-body a { color: var(--blue-mid); border-bottom: 1px solid transparent; }
.article-body a:hover { border-bottom-color: var(--blue-mid); }

.pullquote {
  border-left: 4px solid var(--mustard);
  padding: 20px 28px; margin: 32px 0;
  background: var(--gray-bg); border-radius: 0 6px 6px 0;
}
.pullquote p { font-family: var(--font-serif); font-size: 1.3rem; color: var(--blue-deep); line-height: 1.5; margin: 0; font-style: italic; }
.pullquote cite { display: block; font-size: .82rem; color: var(--gray-mid); margin-top: 10px; font-style: normal; }

.infobox {
  border: 1px solid var(--blue-light); border-radius: 6px;
  padding: 24px 28px; margin: 28px 0; background: var(--blue-light);
}
.infobox-title { font-size: 1rem; font-weight: 700; color: var(--blue-main); margin-bottom: 12px; }

/* ============================
   CATEGORIES / BREADCRUMB
   ============================ */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--gray-mid); margin-bottom: 28px; }
.breadcrumb a { color: var(--blue-mid); }
.breadcrumb span { color: var(--gray-mid); }

.cat-header { background: var(--blue-deep); color: var(--white); padding: 48px 0; }
.cat-header h1 { color: var(--white); font-size: 2.2rem; }
.cat-header p { color: rgba(255,255,255,.7); margin-top: 8px; }

/* ============================
   PAGINATION
   ============================ */
.pagination { display: flex; gap: 6px; align-items: center; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius);
  font-size: .88rem; font-weight: 500; border: 1px solid var(--gray-light);
  color: var(--gray-text); background: var(--white); transition: all var(--transition);
}
.pagination a:hover { background: var(--blue-light); color: var(--blue-main); border-color: var(--blue-main); }
.pagination .active { background: var(--blue-main); color: var(--white); border-color: var(--blue-main); }
.pagination .dots { border: none; background: none; }

/* ============================
   NEWSLETTER
   ============================ */
.newsletter-block {
  background: var(--blue-deep); color: var(--white);
  padding: 56px; border-radius: 8px;
}
.newsletter-block h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 12px; }
.newsletter-block p { color: rgba(255,255,255,.75); margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1; padding: 12px 18px; border: none; border-radius: var(--radius);
  font-size: .95rem; font-family: var(--font-main); outline: none;
  background: rgba(255,255,255,.1); color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); }

/* ============================
   STATS BAR
   ============================ */
.stats-bar { background: var(--blue-main); color: var(--white); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-size: 2.4rem; font-weight: 800; line-height: 1; color: var(--white); }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 6px; letter-spacing: .05em; text-transform: uppercase; }

/* ============================
   TEAM / AUTHORS
   ============================ */
.author-card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-sm); }
.author-card-img { aspect-ratio: 1; overflow: hidden; }
.author-card-img img { width: 100%; height: 100%; object-fit: cover; }
.author-card-body { padding: 22px; }
.author-card-name { font-size: 1.05rem; font-weight: 700; color: var(--blue-deep); margin-bottom: 4px; }
.author-card-role { font-size: .82rem; color: var(--mustard); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.author-card-bio { font-size: .86rem; color: var(--gray-text); line-height: 1.6; margin-bottom: 16px; }
.author-socials { display: flex; gap: 8px; }
.author-social { width: 32px; height: 32px; border-radius: var(--radius); border: 1px solid var(--gray-light); display: flex; align-items: center; justify-content: center; color: var(--gray-mid); font-size: .8rem; transition: all var(--transition); }
.author-social:hover { background: var(--blue-light); color: var(--blue-main); border-color: var(--blue-main); }

/* ============================
   CONTACT
   ============================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form-block { background: var(--white); padding: 40px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.contact-info-block { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-info-icon {
  width: 46px; height: 46px; border-radius: 6px;
  background: var(--blue-light); color: var(--blue-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-label { font-size: .78rem; font-weight: 700; color: var(--gray-mid); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact-info-value { font-size: .95rem; color: var(--blue-deep); font-weight: 500; }
.contact-info-desc { font-size: .82rem; color: var(--gray-text); }

/* FORM */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .84rem; font-weight: 600; color: var(--blue-deep); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid var(--gray-light); border-radius: var(--radius);
  font-size: .95rem; font-family: var(--font-main); color: var(--black-soft);
  background: var(--white); outline: none; transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--blue-main); box-shadow: 0 0 0 3px rgba(26,74,122,.1); }
.form-control::placeholder { color: var(--gray-mid); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: .78rem; color: var(--gray-mid); margin-top: 4px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { margin-top: 3px; accent-color: var(--blue-main); }
.form-check label { font-size: .85rem; color: var(--gray-text); cursor: pointer; }
.form-check label a { color: var(--blue-main); }

.success-message {
  display: none; background: #e8f5e9; border: 1px solid #81c784;
  color: #2e7d32; padding: 16px 20px; border-radius: var(--radius);
  font-size: .95rem; font-weight: 500; margin-top: 16px;
  align-items: center; gap: 12px;
}
.success-message.show { display: flex; }

/* ============================
   SEARCH
   ============================ */
.search-hero { background: var(--blue-deep); padding: 56px 0; }
.search-hero h1 { color: var(--white); margin-bottom: 24px; }
.search-bar { display: flex; gap: 0; }
.search-bar input {
  flex: 1; padding: 14px 20px; border: none; border-radius: var(--radius) 0 0 var(--radius);
  font-size: 1rem; font-family: var(--font-main); outline: none;
}
.search-bar button {
  padding: 14px 28px; background: var(--mustard); color: var(--white);
  border: none; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .95rem; font-weight: 600; cursor: pointer;
  transition: background var(--transition);
}
.search-bar button:hover { background: #a87d18; }
.search-filter-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.filter-btn {
  padding: 6px 16px; border-radius: 20px; font-size: .82rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.8);
  cursor: pointer; background: transparent; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: rgba(255,255,255,.2); color: var(--white); border-color: rgba(255,255,255,.6); }

/* ============================
   POLICY PAGES
   ============================ */
.policy-header { background: var(--blue-deep); color: var(--white); padding: 56px 0 40px; }
.policy-header h1 { color: var(--white); }
.policy-header p { color: rgba(255,255,255,.7); margin-top: 8px; }
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-content h2 { font-size: 1.35rem; color: var(--blue-deep); margin: 36px 0 12px; padding-top: 36px; border-top: 1px solid var(--gray-light); }
.policy-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.policy-content h3 { font-size: 1.1rem; color: var(--blue-main); margin: 24px 0 10px; }
.policy-content p { font-size: .97rem; color: var(--gray-text); line-height: 1.8; margin-bottom: 16px; }
.policy-content ul, .policy-content ol { margin: 0 0 18px 24px; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { font-size: .95rem; color: var(--gray-text); line-height: 1.7; margin-bottom: 6px; }
.policy-content strong { color: var(--blue-deep); }
.policy-content a { color: var(--blue-mid); }
.policy-toc { background: var(--white); border: 1px solid var(--gray-light); border-radius: 6px; padding: 24px 28px; margin-bottom: 40px; }
.policy-toc h4 { font-size: .9rem; font-weight: 700; color: var(--blue-deep); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; }
.policy-toc ol { margin: 0; padding: 0 0 0 18px; }
.policy-toc li { margin-bottom: 6px; }
.policy-toc a { font-size: .88rem; color: var(--blue-mid); }
.policy-update-box { background: var(--blue-light); border-radius: 6px; padding: 16px 20px; margin-bottom: 32px; font-size: .88rem; color: var(--blue-deep); }

/* ============================
   FOOTER
   ============================ */
.site-footer { background: var(--blue-deep); color: rgba(255,255,255,.8); }
.footer-main { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo-word { color: var(--white); }
.footer-brand-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-top: 14px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .9rem; transition: all var(--transition);
}
.footer-social:hover { background: var(--blue-mid); border-color: var(--blue-mid); color: var(--white); }
.footer-col-title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-text { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ============================
   MISC UI ELEMENTS
   ============================ */
.divider { height: 1px; background: var(--gray-light); margin: 32px 0; }
.divider--blue { background: var(--blue-light); }
.chip { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.chip--blue { background: var(--blue-light); color: var(--blue-main); }
.chip--mustard { background: #fef3cd; color: var(--mustard); }
.chip--terra { background: #fce8e1; color: var(--terra); }
.chip--gray { background: var(--gray-light); color: var(--gray-text); }

.highlight-box { border-left: 3px solid var(--mustard); padding: 16px 20px; background: #fdf8ee; border-radius: 0 6px 6px 0; margin: 24px 0; }
.highlight-box p { color: var(--black-soft); margin: 0; }

.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--blue-light); }
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before { content: ''; position: absolute; left: -26px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--blue-main); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--blue-main); }
.timeline-date { font-size: .78rem; font-weight: 700; color: var(--mustard); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--blue-deep); margin-bottom: 6px; }
.timeline-text { font-size: .88rem; color: var(--gray-text); line-height: 1.6; }

.accordion-item { border: 1px solid var(--gray-light); border-radius: 6px; overflow: hidden; margin-bottom: 10px; }
.accordion-header { padding: 18px 22px; font-weight: 600; color: var(--blue-deep); cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--white); transition: background var(--transition); }
.accordion-header:hover { background: var(--gray-bg); }
.accordion-header .ico { transition: transform .3s; font-style: normal; }
.accordion-header.open .ico { transform: rotate(180deg); }
.accordion-body { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.accordion-body.open { max-height: 400px; padding: 18px 22px; }
.accordion-body p { font-size: .93rem; color: var(--gray-text); line-height: 1.7; margin: 0; }

/* ============================
   MOBILE NAV OVERLAY
   ============================ */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(13,45,94,.97);
  z-index: 2000; flex-direction: column; padding: 32px 24px;
}
.mobile-nav-overlay.active { display: flex; }
.mobile-nav-close { align-self: flex-end; background: none; border: none; color: var(--white); font-size: 1.8rem; cursor: pointer; padding: 8px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.mobile-nav-links a { font-size: 1.2rem; font-weight: 600; color: rgba(255,255,255,.85); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav-links a:hover { color: var(--white); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { min-height: 320px; }
  .hero-content { padding: 48px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; }
  .grid-1-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .card--horizontal { flex-direction: column; }
  .card--horizontal .card-img { width: 100%; aspect-ratio: 16/9; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 768px) {
  .main-nav, .header-actions .btn { display: none; }
  .burger { display: flex; }
  .section { padding: 48px 0; }
  .section--lg { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-block { padding: 36px 24px; }
}
@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .card--featured { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}
