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

:root {
  --navy: #0D1B2A;
  --navy-mid: #1B3A5C;
  --navy-light: #254E78;
  --gray-dark: #4A5A6B;
  --gray-mid: #8A9BAD;
  --gray-light: #C8D4DF;
  --bg-light: #F4F6F8;
  --bg-white: #FFFFFF;
  --accent: #F5C842;
  --accent-dark: #D4A820;
  --text-primary: #0D1B2A;
  --text-secondary: #4A5A6B;
  --text-muted: #8A9BAD;
  --border: #DDE4EC;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(13,27,42,0.06);
  --shadow-md: 0 6px 24px rgba(13,27,42,0.1);
  --shadow-lg: 0 16px 48px rgba(13,27,42,0.14);
  --transition: 0.25s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.25;
  font-weight: 700;
  color: var(--navy);
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILITY ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 112px 0; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── NAVIGATION ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,200,66,0.12);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bg-white);
  letter-spacing: -0.5px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg { width: 20px; height: 20px; }

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

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: rgba(245,200,66,0.08);
}

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform var(--transition);
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--navy);
  border: 1px solid rgba(245,200,66,0.15);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-sm);
}

.dropdown-menu a:hover { background: rgba(245,200,66,0.1); color: var(--accent); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  white-space: nowrap;
}
.header-cta:hover { background: var(--accent-dark); color: var(--navy); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bg-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.mobile-nav a:hover { color: var(--accent); background: rgba(245,200,66,0.08); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0A2540 100%);
  color: var(--bg-white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 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.025'%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");
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 560px; }

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

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--bg-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,200,66,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.25);
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245,200,66,0.05);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy-mid);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy-mid);
  transition: all var(--transition);
}
.btn-outline-dark:hover {
  background: var(--navy-mid);
  color: var(--bg-white);
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-mid);
  color: var(--bg-white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy-mid);
  transition: all var(--transition);
}
.btn-solid:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  flex: 1;
}

.hero-stat strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}

/* ── WAVE DIVIDER ── */
.wave-divider { line-height: 0; }
.wave-divider svg { width: 100%; display: block; }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 48px; }
.section-header.text-center { max-width: 640px; margin-left: auto; margin-right: auto; margin-bottom: 48px; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ── CARDS ── */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gray-light);
}

.card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-light);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 24px; }

.card-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
  line-height: 1.35;
}

.card-title a:hover { color: var(--navy-mid); }

.card-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 14px;
}

.card-meta span { display: flex; align-items: center; gap: 5px; }

/* ── GRID LAYOUTS ── */
.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-fit, minmax(300px, 1fr)); gap: 28px; }

/* ── FEATURED ARTICLE ── */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.featured-article:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.featured-article__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-light);
}

.featured-article__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-article:hover .featured-article__img img { transform: scale(1.04); }

.featured-article__body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-white);
}

.featured-article__cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.featured-article__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
  color: var(--navy);
}

.featured-article__excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy);
  padding: 56px 0;
  color: var(--bg-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 28px 0;
}

.highlight-box p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── TAGS ── */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--bg-light);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.tag:hover { background: var(--navy); color: var(--bg-white); border-color: var(--navy); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

/* ── AUDIO VISUAL ELEMENT ── */
.audio-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
}

.audio-wave span {
  display: block;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}

.audio-wave span:nth-child(1) { height: 8px; animation-delay: 0s; }
.audio-wave span:nth-child(2) { height: 18px; animation-delay: 0.1s; }
.audio-wave span:nth-child(3) { height: 28px; animation-delay: 0.2s; }
.audio-wave span:nth-child(4) { height: 22px; animation-delay: 0.3s; }
.audio-wave span:nth-child(5) { height: 14px; animation-delay: 0.4s; }
.audio-wave span:nth-child(6) { height: 28px; animation-delay: 0.5s; }
.audio-wave span:nth-child(7) { height: 18px; animation-delay: 0.6s; }
.audio-wave span:nth-child(8) { height: 10px; animation-delay: 0.7s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* ── TOPIC PILLS ── */
.topic-strip {
  background: var(--navy-mid);
  padding: 14px 0;
  overflow: hidden;
}

.topic-strip-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.topic-strip-inner::-webkit-scrollbar { display: none; }

.topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
}

.topic-pill:hover {
  background: rgba(245,200,66,0.15);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── SIDEBAR ── */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.sidebar { position: sticky; top: 88px; }

.sidebar-widget {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.widget-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.sidebar-list li { border-bottom: 1px solid var(--border); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a {
  display: block;
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  line-height: 1.45;
}
.sidebar-list a:hover { color: var(--navy-mid); }

/* ── ARTICLE PAGE ── */
.article-header { margin-bottom: 36px; }
.article-header .meta { display: flex; align-items: center; gap: 16px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap; }
.article-header .meta-sep { color: var(--gray-light); }
.article-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; margin-bottom: 20px; }
.article-lead { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; font-style: italic; }

.article-cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  margin-bottom: 40px;
}

.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-body { font-size: 1rem; line-height: 1.8; color: var(--text-secondary); }
.article-body h2 { font-size: 1.5rem; color: var(--navy); margin: 36px 0 16px; }
.article-body h3 { font-size: 1.2rem; color: var(--navy); margin: 28px 0 12px; }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body ol { list-style: decimal; }
.article-body ul { list-style: disc; }
.article-body strong { color: var(--navy); font-weight: 600; }

/* ── INFOGRAPHIC CARDS ── */
.info-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 28px;
  color: var(--bg-white);
}

.info-card .number {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.info-card .label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ── CHART BAR ── */
.chart-bar-group { margin: 24px 0; }
.chart-bar-label { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 6px; }
.chart-bar-track { height: 10px; background: var(--bg-light); border-radius: 100px; overflow: hidden; border: 1px solid var(--border); }
.chart-bar-fill { height: 100%; background: var(--accent); border-radius: 100px; transition: width 1s ease; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { font-size: 1.8rem; margin-bottom: 16px; }
.contact-info p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { color: var(--accent); }

.contact-detail-text strong { display: block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 3px; }
.contact-detail-text span { font-size: 0.975rem; color: var(--text-primary); }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--navy-mid); box-shadow: 0 0 0 3px rgba(27,58,92,0.1); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }

.form-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ── SUCCESS MESSAGE ── */
.success-msg {
  display: none;
  background: #ECFDF5;
  border: 1.5px solid #10B981;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  margin-top: 16px;
}

.success-msg.show { display: block; }

.success-msg .success-icon {
  width: 48px; height: 48px;
  background: #10B981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.success-msg p { color: #065F46; font-weight: 600; font-size: 1rem; }
.success-msg small { display: block; color: #047857; font-size: 0.85rem; margin-top: 4px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-list li a { color: var(--navy-mid); }
.breadcrumb-list li a:hover { color: var(--accent-dark); }
.breadcrumb-list li:not(:last-child)::after { content: '/'; color: var(--gray-light); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--bg-white);
  padding: 72px 0 56px;
}

.page-hero .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--bg-white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 580px;
}

/* ── PAGINATION ── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.pag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-white);
  transition: all var(--transition);
}

.pag-btn:hover,
.pag-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--bg-white);
}

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.newsletter h2 { font-size: 2rem; color: var(--bg-white); margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.65); margin-bottom: 28px; max-width: 420px; margin-left: auto; margin-right: auto; }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.1);
  color: var(--bg-white);
  border: 1.5px solid rgba(255,255,255,0.15);
  outline: none;
  min-width: 200px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: var(--accent); }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 280px;
}

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover { background: var(--accent); color: var(--navy); border-color: var(--accent); }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bg-white);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

.footer-policy { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-policy a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-policy a:hover { color: rgba(255,255,255,0.7); }

/* ── POLICY PAGES ── */
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-content h1 { font-size: 2.2rem; margin-bottom: 8px; }
.policy-content .updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 36px; }
.policy-content h2 { font-size: 1.3rem; margin: 36px 0 12px; color: var(--navy); }
.policy-content h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--navy); }
.policy-content p { margin-bottom: 16px; color: var(--text-secondary); line-height: 1.75; font-size: 0.975rem; }
.policy-content ul { margin: 0 0 16px 24px; }
.policy-content ul li { margin-bottom: 8px; color: var(--text-secondary); font-size: 0.975rem; line-height: 1.7; list-style: disc; }
.policy-content a { color: var(--navy-mid); text-decoration: underline; text-underline-offset: 3px; }
.policy-content a:hover { color: var(--accent-dark); }
.policy-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.policy-content th { background: var(--navy); color: var(--bg-white); padding: 12px 16px; font-size: 0.875rem; text-align: left; }
.policy-content td { padding: 11px 16px; border-bottom: 1px solid var(--border); font-size: 0.875rem; color: var(--text-secondary); }
.policy-content tr:nth-child(even) td { background: var(--bg-light); }

/* ── ABOUT PAGE ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-card-body span { font-size: 0.85rem; color: var(--text-muted); }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before { content: ''; position: absolute; left: -28px; top: 4px; width: 12px; height: 12px; background: var(--accent); border-radius: 50%; border: 2px solid var(--bg-white); box-shadow: 0 0 0 2px var(--accent); }
.timeline-item h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.timeline-item span { font-size: 0.8rem; font-weight: 700; color: var(--accent-dark); display: block; margin-bottom: 6px; }
.timeline-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ── QUOTE BLOCK ── */
.quote-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--bg-white);
  position: relative;
}
.quote-block::before { content: '"'; font-size: 8rem; color: rgba(245,200,66,0.15); position: absolute; top: -20px; left: 32px; font-family: 'Manrope', sans-serif; line-height: 1; }
.quote-block p { font-size: 1.25rem; font-style: italic; line-height: 1.65; margin-bottom: 20px; position: relative; z-index: 1; }
.quote-block cite { font-size: 0.9rem; color: var(--accent); font-style: normal; font-weight: 600; }

/* ── POLICY PAGES ── */
.policy-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.policy-wrap h2 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.policy-wrap h2:first-of-type { margin-top: 0; }
.policy-wrap h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 24px 0 10px;
}
.policy-wrap p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.policy-wrap ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-wrap ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.policy-wrap a { color: var(--navy-mid); text-decoration: underline; text-underline-offset: 3px; }
.policy-wrap a:hover { color: var(--accent-dark); }

.policy-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-bottom: 36px;
}
.policy-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.policy-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 16px 0 24px;
}
.policy-box p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}
.policy-box a { color: var(--navy-mid); text-decoration: underline; }

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 28px;
  font-size: 0.875rem;
}
.policy-table thead tr { background: var(--navy); }
.policy-table thead th {
  padding: 12px 16px;
  text-align: left;
  color: var(--bg-white);
  font-weight: 600;
  font-size: 0.82rem;
}
.policy-table tbody tr:nth-child(even) { background: var(--bg-light); }
.policy-table tbody td {
  padding: 11px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
}

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
}
.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-q[aria-expanded="true"] { color: var(--navy-mid); }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); color: var(--accent-dark); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── CONTACT FORM ── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(27,58,92,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-error {
  font-size: 0.78rem;
  color: #c0392b;
  font-weight: 500;
  min-height: 16px;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: rgba(245,200,66,0.12);
  border: 1px solid rgba(212,168,32,0.35);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* ── SITEMAP PAGE ── */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sitemap-col h3 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); }
.sitemap-col ul { display: flex; flex-direction: column; gap: 8px; }
.sitemap-col a { font-size: 0.9rem; color: var(--navy-mid); text-decoration: underline; text-underline-offset: 3px; }
.sitemap-col a:hover { color: var(--accent-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-article { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .burger { display: flex; }
  .grid-3, .grid-2, .grid-auto { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .newsletter { padding: 36px 24px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .team-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
