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

/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --blue-deep:    #2C4A7C;
  --blue-mid:     #3D5E96;
  --blue-light:   #4A6FA5;
  --blue-pale:    #E8EDF5;
  --gold:         #C4963C;
  --gold-light:   #D4AB5C;
  --gold-pale:    #F5EDD8;
  --gray-dark:    #3A3733;
  --gray-mid:     #6B6560;
  --gray-warm:    #8B8680;
  --gray-light:   #C8C3BE;
  --gray-pale:    #F0EDE8;
  --bg:           #F5F4F2;
  --white:        #FFFFFF;
  --dark:         #1A2332;
  --text:         #2A2725;
  --text-muted:   #5A5550;
  --border:       #DDD8D2;

  --font-head: 'Lora', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.07);
  --shadow:     0 3px 12px rgba(0,0,0,.09);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --transition: .22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.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; }
.flex    { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.28;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; font-weight: 500; }
p  { margin-bottom: 1em; color: var(--text-muted); line-height: 1.7; }
p:last-child { margin-bottom: 0; }

.label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-header {
  margin-bottom: 48px;
}
.section-header .label { margin-bottom: 10px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p   { max-width: 580px; font-size: 1.05rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .92rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-deep);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-mid); color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border: 1.5px solid var(--blue-deep);
}
.btn-outline:hover { background: var(--blue-pale); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold-pale); }

.btn-ghost {
  background: transparent;
  color: var(--blue-light);
  padding-left: 0;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost svg { transition: transform var(--transition); }
.btn-ghost:hover svg { transform: translateX(4px); }

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

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--blue-deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 20px; height: 20px; fill: var(--gold); }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.02em;
}
.logo-sub {
  font-size: .68rem;
  color: var(--gray-warm);
  letter-spacing: .04em;
  display: block;
  margin-top: -2px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 6px 13px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-dark);
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--blue-deep); background: var(--blue-pale); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .7em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: .85rem;
  color: var(--gray-dark);
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--gray-pale); color: var(--blue-deep); }

.header-cta { display: flex; align-items: center; gap: 12px; }

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

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 998;
  flex-direction: column;
  padding: 80px 24px 32px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.close-nav {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #1A2332 0%, #2C4A7C 60%, #3D5E96 100%);
  padding: 88px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-content h1 {
  font-family: var(--font-head);
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
}
.hero-content p {
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   STAT BAR
   ============================================================ */
.stat-bar {
  background: var(--dark);
  padding: 28px 0;
}
.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ============================================================
   CARDS — PODCAST
   ============================================================ */
.podcast-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.podcast-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.podcast-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.podcast-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.podcast-card:hover .podcast-card-thumb img { transform: scale(1.04); }
.podcast-card-cat {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(26,35,50,.82);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.podcast-card-body { padding: 22px; }
.podcast-card-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}
.meta-tag {
  font-size: .75rem;
  color: var(--gray-warm);
  display: flex;
  align-items: center;
  gap: 4px;
}
.podcast-card h3 {
  font-size: 1.08rem;
  margin-bottom: 9px;
  color: var(--dark);
}
.podcast-card p { font-size: .88rem; margin-bottom: 16px; }

/* Key points */
.key-points {
  background: var(--gray-pale);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.key-points h5 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gold);
  margin-bottom: 8px;
}
.key-points li {
  font-size: .82rem;
  color: var(--text-muted);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}
.key-points li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .7em;
}

/* ============================================================
   CARDS — ANALYST
   ============================================================ */
.analyst-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition);
  display: flex;
  gap: 20px;
}
.analyst-card:hover { box-shadow: var(--shadow-lg); }
.analyst-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--blue-pale);
}
.analyst-avatar img { width: 100%; height: 100%; object-fit: cover; }
.analyst-info h4 { margin-bottom: 4px; }
.analyst-title {
  font-size: .8rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.analyst-bio { font-size: .85rem; margin-bottom: 12px; }
.analyst-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: .72rem;
  background: var(--blue-pale);
  color: var(--blue-deep);
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 500;
}

/* ============================================================
   CARDS — ARTICLE / REVIEW
   ============================================================ */
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.article-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.article-card-thumb { aspect-ratio: 16/9; overflow: hidden; }
.article-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.article-card:hover .article-card-thumb img { transform: scale(1.04); }
.article-card-body { padding: 22px; }
.article-card-date { font-size: .78rem; color: var(--gray-warm); margin-bottom: 8px; }
.article-card h3 { font-size: 1.05rem; margin-bottom: 9px; }
.article-card p { font-size: .87rem; margin-bottom: 14px; }

/* ============================================================
   CATEGORY CARD
   ============================================================ */
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all var(--transition);
  border-left: 4px solid transparent;
}
.category-card:hover {
  box-shadow: var(--shadow);
  border-left-color: var(--gold);
  transform: translateX(4px);
}
.category-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.category-icon svg { width: 24px; height: 24px; fill: var(--blue-deep); }
.category-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.category-card p { font-size: .85rem; margin-bottom: 14px; }
.category-count { font-size: .78rem; color: var(--gold); font-weight: 600; }

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.feature-strip {
  background: var(--blue-deep);
  padding: 60px 0;
}
.feature-strip h2, .feature-strip h3 { color: var(--white); }
.feature-strip p { color: rgba(255,255,255,.7); }
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(196,150,60,.18);
  border: 1px solid rgba(196,150,60,.35);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon-wrap svg { width: 26px; height: 26px; fill: var(--gold); }

/* ============================================================
   METHODOLOGY BLOCK
   ============================================================ */
.method-step {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}
.step-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .4;
  flex-shrink: 0;
  line-height: 1;
  min-width: 42px;
}
.step-body h4 { margin-bottom: 8px; }

/* ============================================================
   QUOTE / HIGHLIGHT
   ============================================================ */
.blockquote {
  border-left: 4px solid var(--gold);
  padding: 18px 24px;
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}
.blockquote p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--dark);
}
.blockquote cite { font-size: .82rem; color: var(--gray-mid); margin-top: 8px; display: block; }

/* ============================================================
   NEWSLETTER / CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(120deg, var(--dark) 0%, #2C4A7C 100%);
  padding: 64px 0;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.7); margin-bottom: 28px; }
.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
}
.cta-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: .92rem;
  outline: none;
  transition: border-color var(--transition);
}
.cta-form input::placeholder { color: rgba(255,255,255,.45); }
.cta-form input:focus { border-color: var(--gold); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form { max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .84rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: .92rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue-light); }
.form-group textarea { resize: vertical; min-height: 130px; }

.success-msg {
  display: none;
  background: #EAF5EA;
  border: 1px solid #7BC47B;
  color: #2D6A2D;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-weight: 500;
  margin-top: 16px;
}
.success-msg.show { display: flex; align-items: center; gap: 10px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--gray-warm);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--blue-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gray-light); }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-deep) 100%);
  padding: 56px 0 52px;
}
.page-header .label { color: var(--gold); margin-bottom: 12px; }
.page-header h1 { color: var(--white); margin-bottom: 14px; }
.page-header p { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 580px; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 1rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-pale);
  font-size: .86rem;
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { color: var(--text-muted); }
.sidebar-list a:hover { color: var(--gold); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: .88rem;
  font-weight: 500;
  transition: all var(--transition);
}
.page-link:hover,
.page-link.active { background: var(--blue-deep); color: var(--white); border-color: var(--blue-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-sub { color: var(--gray-warm); }
.footer-desc {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  margin-top: 16px;
  line-height: 1.7;
}
.footer-col h5 {
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: .86rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact li {
  font-size: .86rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 9px;
  display: flex;
  gap: 8px;
}
.footer-contact li svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.38); margin: 0; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   AUDIO PLAYER MOCK
   ============================================================ */
.audio-player {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 28px 0;
}
.play-btn {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  border: none;
  transition: background var(--transition);
}
.play-btn:hover { background: var(--gold-light); }
.play-btn svg { width: 18px; height: 18px; fill: var(--white); margin-left: 2px; }
.progress-wrap { flex: 1; }
.progress-bar-track {
  height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
  margin: 8px 0;
  position: relative;
  cursor: pointer;
}
.progress-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  width: 30%;
}
.progress-times { display: flex; justify-content: space-between; font-size: .75rem; color: rgba(255,255,255,.5); }
.episode-title { font-size: .88rem; color: var(--white); font-weight: 500; }
.episode-author { font-size: .75rem; color: rgba(255,255,255,.5); }
.vol-wrap { display: flex; align-items: center; gap: 8px; }
.vol-wrap svg { width: 16px; height: 16px; fill: rgba(255,255,255,.5); }

/* ============================================================
   RATING STARS
   ============================================================ */
.stars { display: flex; gap: 3px; }
.star { color: var(--gold); font-size: 1.1rem; }
.star.empty { color: var(--gray-light); }

/* ============================================================
   INFO BOX
   ============================================================ */
.info-box {
  background: var(--blue-pale);
  border: 1px solid rgba(44,74,124,.2);
  border-left: 4px solid var(--blue-deep);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 24px 0;
}
.info-box p { color: var(--dark); font-size: .9rem; margin: 0; }

/* ============================================================
   TABLE
   ============================================================ */
.data-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.data-table th {
  background: var(--blue-deep);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text-muted);
}
.data-table tr:hover td { background: var(--gray-pale); }
.data-table tr:last-child td { border-bottom: none; }

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: .94rem;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  transition: background var(--transition);
}
.accordion-header:hover { background: var(--gray-pale); }
.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  fill: var(--gray-warm);
}
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 0 20px 18px;
  background: var(--white);
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.accordion-item.open .accordion-body { display: block; }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-content h2 {
  font-size: 1.35rem;
  margin-top: 38px;
  margin-bottom: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.policy-content h2:first-child { border-top: none; margin-top: 0; }
.policy-content h3 { font-size: 1.08rem; margin-top: 22px; margin-bottom: 10px; }
.policy-content ul { padding-left: 22px; margin-bottom: 1em; }
.policy-content ul li {
  list-style: disc;
  color: var(--text-muted);
  padding: 3px 0;
  font-size: .94rem;
}
.policy-content ol { padding-left: 22px; margin-bottom: 1em; }
.policy-content ol li {
  list-style: decimal;
  color: var(--text-muted);
  padding: 3px 0;
  font-size: .94rem;
}
.policy-toc {
  background: var(--gray-pale);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 36px;
}
.policy-toc h5 { margin-bottom: 12px; color: var(--dark); }
.policy-toc ol { padding-left: 18px; }
.policy-toc ol li { list-style: decimal; font-size: .88rem; color: var(--blue-light); padding: 4px 0; }
.policy-toc a { color: var(--blue-light); }
.policy-toc a:hover { color: var(--gold); }

/* ============================================================
   SITEMAP
   ============================================================ */
.sitemap-section { margin-bottom: 36px; }
.sitemap-section h3 { color: var(--blue-deep); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); display: inline-block; }
.sitemap-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
.sitemap-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.sitemap-list a:hover { border-color: var(--gold); color: var(--blue-deep); }

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-bar {
  display: flex;
  gap: 0;
  max-width: 520px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.search-bar input {
  flex: 1;
  border: none;
  padding: 11px 16px;
  font-size: .9rem;
  color: var(--text);
  outline: none;
}
.search-bar button {
  padding: 11px 18px;
  background: var(--blue-deep);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 500;
  transition: background var(--transition);
}
.search-bar button:hover { background: var(--blue-mid); }

/* ============================================================
   COOKIE NOTICE
   ============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  flex-wrap: wrap;
}
.cookie-bar p { color: rgba(255,255,255,.75); font-size: .85rem; margin: 0; }
.cookie-bar a { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bar.hidden { display: none; }

/* ============================================================
   TABS
   ============================================================ */
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
}
.tab-btn {
  padding: 10px 22px;
  background: none;
  border: none;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-mid);
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.tab-btn.active,
.tab-btn:hover { color: var(--dark); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================================
   PROGRESS / SKILL BARS
   ============================================================ */
.skill-bar { margin-bottom: 16px; }
.skill-label {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}
.skill-track {
  height: 6px;
  background: var(--gray-pale);
  border-radius: 6px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-deep), var(--gold));
  border-radius: 6px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { gap: 28px; }
  .analyst-card { flex-direction: column; gap: 14px; }
  .cta-form { flex-direction: column; }
  .search-bar { max-width: 100%; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.45rem; }
  .hero { padding: 56px 0 52px; }
  .page-header { padding: 40px 0; }
}
