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

/* =========================================
   PAQUARO — CSS Variables & Reset
========================================= */
:root {
  --bg: #F5F5F7;
  --white: #FFFFFF;
  --purple: #2D1B69;
  --purple-light: #3D2B89;
  --purple-muted: #E8E3F5;
  --gold: #C9A84C;
  --gold-light: #E8D08A;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E2E0EC;
  --shadow-sm: 0 1px 4px rgba(45,27,105,0.06);
  --shadow-md: 0 4px 16px rgba(45,27,105,0.10);
  --shadow-lg: 0 8px 32px rgba(45,27,105,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition: all 0.25s ease;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* =========================================
   TYPOGRAPHY
========================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }

p { color: var(--text-muted); line-height: 1.75; }

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

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

.section { padding: 80px 0; }
.section--sm { padding: 50px 0; }
.section--lg { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 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; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.text-center { text-align: center; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.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; }

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.btn--primary:hover {
  background: var(--purple-light);
  border-color: var(--purple-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: #b8973d;
  border-color: #b8973d;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn--outline:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

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

/* =========================================
   HEADER / NAV
========================================= */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--purple);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: -0.01em;
}
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--purple);
  background: var(--purple-muted);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.87rem;
  border-radius: 6px;
  color: var(--text-muted);
}
.dropdown-menu a:hover { background: var(--bg); color: var(--purple); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

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

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.mobile-nav a:last-child { border-bottom: none; }

/* =========================================
   FOOTER
========================================= */
.site-footer {
  background: var(--purple);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-mark { background: rgba(255,255,255,0.1); }
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* =========================================
   HERO
========================================= */
.hero {
  background: var(--white);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--purple-muted) 0%, transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}

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

.hero-content { max-width: 580px; }
.hero-content h1 { color: var(--text); }
.hero-content h1 em { font-style: normal; color: var(--purple); }
.hero-content p {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-top: 20px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 440px; object-fit: cover; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat { }
.hero-stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--purple);
  font-family: var(--font-heading);
}
.hero-stat span {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =========================================
   PAGE HERO (inner pages)
========================================= */
.page-hero {
  background: var(--purple);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 300px;
  height: 300px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 600px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.83rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--gold); font-weight: 500; }

/* =========================================
   CARDS
========================================= */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-image { overflow: hidden; aspect-ratio: 16/10; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-image img { transform: scale(1.04); }

.card-body { padding: 24px; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

/* Podcast card */
.podcast-card { }
.podcast-card .card-body { padding: 20px; }
.podcast-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.podcast-info-item { display: flex; align-items: center; gap: 6px; }
.podcast-info-item svg { color: var(--gold); width: 14px; height: 14px; }

/* =========================================
   TAGS & BADGES
========================================= */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.tag--purple { background: var(--purple-muted); color: var(--purple); }
.tag--gold { background: rgba(201,168,76,0.15); color: #9a7d35; }
.tag--gray { background: var(--bg); color: var(--text-muted); border: 1px solid var(--border); }

/* =========================================
   SECTION HEADER
========================================= */
.section-header { margin-bottom: 48px; }
.section-header--flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.section-header h2 em { font-style: normal; color: var(--gold); }

/* =========================================
   PODCAST PLAYER
========================================= */
.audio-player {
  background: var(--purple);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 32px 0;
}
.player-cover {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.player-info { flex: 1; min-width: 0; }
.player-info h4 {
  color: var(--white);
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-info span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  display: block;
}
.player-controls { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.player-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.player-btn:hover { background: rgba(255,255,255,0.22); }
.player-btn--play {
  width: 52px;
  height: 52px;
  background: var(--gold);
}
.player-btn--play:hover { background: #b8973d; }

.player-progress { flex: 1; min-width: 120px; }
.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  margin-bottom: 6px;
}
.progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  width: 32%;
  position: relative;
}
.progress-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
}
.progress-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* =========================================
   ANALYSTS
========================================= */
.analyst-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.analyst-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.analyst-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--purple-muted);
}
.analyst-card h4 { color: var(--text); margin-bottom: 4px; }
.analyst-card .role {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.analyst-card p { font-size: 0.87rem; }
.analyst-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.analyst-stat { text-align: center; }
.analyst-stat strong { display: block; font-size: 1.1rem; color: var(--purple); }
.analyst-stat span { font-size: 0.75rem; color: var(--text-muted); }

/* =========================================
   CATEGORIES GRID
========================================= */
.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--purple);
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.category-card:hover::before { opacity: 1; }
.category-icon {
  width: 52px;
  height: 52px;
  background: var(--purple-muted);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--purple);
}
.category-card h4 { color: var(--text); margin-bottom: 8px; }
.category-card p { font-size: 0.87rem; }
.category-count {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 12px;
}

/* =========================================
   FORMS
========================================= */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-label .required { color: var(--gold); margin-left: 3px; }

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,27,105,0.08);
}
.form-control::placeholder { color: var(--text-light); }

textarea.form-control { resize: vertical; min-height: 130px; }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-muted);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--purple);
  cursor: pointer;
}

.alert {
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}
.alert--success {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  color: #2E7D32;
}
.alert--error {
  background: #FFEBEE;
  border: 1px solid #EF9A9A;
  color: #C62828;
}
.alert.show { display: flex; align-items: center; gap: 10px; }

/* =========================================
   SEARCH BAR
========================================= */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 6px 6px 20px;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  max-width: 600px;
}
.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.93rem;
  color: var(--text);
  outline: none;
}
.search-bar input::placeholder { color: var(--text-light); }
.search-bar button {
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.search-bar button:hover { background: var(--purple-light); }

/* =========================================
   FILTER TABS
========================================= */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: var(--transition);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

/* =========================================
   ACCORDION / FAQ
========================================= */
.accordion { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  transition: var(--transition);
  user-select: none;
}
.accordion-header:hover { background: var(--bg); }
.accordion-header h5 { font-size: 0.97rem; color: var(--text); }
.accordion-icon {
  width: 28px;
  height: 28px;
  background: var(--purple-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple);
  transition: transform 0.25s ease;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 0 24px 20px;
  background: var(--white);
}
.accordion-item.open .accordion-body { display: block; }
.accordion-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =========================================
   STATS SECTION
========================================= */
.stats-band {
  background: var(--purple);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
}
.stat-item em {
  font-style: normal;
  color: var(--gold);
}
.stat-item span {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  display: block;
}

/* =========================================
   PAGINATION
========================================= */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

/* =========================================
   NEWSLETTER SECTION
========================================= */
.newsletter-section {
  background: linear-gradient(135deg, var(--purple) 0%, #1a0f4a 100%);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 0 24px;
}
.newsletter-content h2 { color: var(--white); }
.newsletter-content p { color: rgba(255,255,255,0.7); margin-top: 12px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: var(--gold); }

/* =========================================
   GLOSSARY
========================================= */
.glossary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 36px;
}
.glossary-nav a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.glossary-nav a:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }

.glossary-section { margin-bottom: 40px; }
.glossary-letter {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 20px;
  display: inline-block;
}
.glossary-term {
  background: var(--white);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}
.glossary-term h5 { color: var(--text); margin-bottom: 6px; }
.glossary-term p { font-size: 0.9rem; }

/* =========================================
   ARTICLE PAGE
========================================= */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.article-content h2 { margin: 36px 0 16px; }
.article-content h3 { margin: 28px 0 12px; }
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: var(--purple-muted);
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
}
.article-content blockquote p {
  color: var(--purple);
  font-style: italic;
  font-size: 1.05rem;
  margin: 0;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.sidebar-widget h5 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}

/* =========================================
   REVIEW STARS
========================================= */
.star-rating { display: flex; gap: 3px; }
.star { color: var(--gold); font-size: 1.1rem; }
.star.empty { color: var(--border); }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}
.rating-bar-track {
  flex: 1;
  height: 6px;
  background: var(--bg);
  border-radius: 3px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}

/* =========================================
   TOPIC CLOUD
========================================= */
.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.topic-tag {
  padding: 9px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.87rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.topic-tag:hover {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.topic-tag.large { font-size: 1rem; padding: 11px 22px; }
.topic-tag.xl { font-size: 1.1rem; padding: 13px 26px; }

/* =========================================
   TABLE
========================================= */
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  background: var(--purple);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.data-table th:first-child { border-radius: 8px 0 0 0; }
.data-table th:last-child { border-radius: 0 8px 0 0; }
.data-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.data-table tr:hover td { background: var(--bg); }

/* =========================================
   COOKIES BANNER
========================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 680px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  animation: slideUp 0.4s ease;
}
.cookie-banner.hidden { display: none; }
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.cookie-text p { font-size: 0.87rem; line-height: 1.6; }
.cookie-text p a { color: var(--purple); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* =========================================
   POLICY PAGES
========================================= */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
}
.policy-toc {
  background: var(--purple-muted);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 40px;
}
.policy-toc h5 {
  color: var(--purple);
  margin-bottom: 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.policy-toc ul { display: flex; flex-direction: column; gap: 8px; }
.policy-toc ul a {
  font-size: 0.88rem;
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-section { margin-bottom: 44px; }
.policy-section h3 {
  color: var(--purple);
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--gold);
}
.policy-section p {
  margin-bottom: 16px;
  font-size: 0.93rem;
  line-height: 1.8;
}
.policy-section ul, .policy-section ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.policy-section ul { list-style: disc; }
.policy-section ol { list-style: decimal; }
.policy-section li {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.policy-highlight {
  background: var(--bg);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.policy-highlight p { margin: 0; font-size: 0.9rem; color: var(--text); }

/* =========================================
   TIMELINE
========================================= */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--purple);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--purple);
}
.timeline-year {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.timeline-item h4 { margin-bottom: 8px; color: var(--text); }
.timeline-item p { font-size: 0.9rem; }

/* =========================================
   SITEMAP
========================================= */
.sitemap-section { margin-bottom: 40px; }
.sitemap-section h3 {
  color: var(--purple);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sitemap-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sitemap-links a:hover { background: var(--purple-muted); color: var(--purple); }

/* =========================================
   CONTACT
========================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--purple);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--white);
}
.contact-detail-text a {
  font-size: 0.95rem;
  color: var(--white);
  transition: var(--transition);
}
.contact-detail-text a:hover { color: var(--gold); }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .newsletter-section { grid-template-columns: 1fr; padding: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .audio-player { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 56px 0; }
  .newsletter-section { margin: 0; border-radius: 0; padding: 40px 24px; }
  .newsletter-form { flex-direction: column; }
  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: var(--radius) var(--radius) 0 0; }
  .sitemap-links { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
}

/* auto-aliases R13 */
:root {
  --shadow: 0 2px 8px rgba(0,0,0,.12);
}
