/* =============================================
   TUNDRA — Audio Financial Analysis
   Main Stylesheet
   ============================================= */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0d1f3c;
  --navy-mid:  #152b52;
  --navy-soft: #1e3a6e;
  --gold:      #c9a84c;
  --gold-light:#e8c96f;
  --white:     #ffffff;
  --gray-50:   #f8f9fb;
  --gray-100:  #eef0f4;
  --gray-200:  #d9dde6;
  --gray-400:  #8e95a5;
  --gray-600:  #555f73;
  --gray-800:  #2c3344;
  --font-body: 'Inter', sans-serif;
  --font-head: 'Playfair Display', serif;
  --radius:    8px;
  --shadow-sm: 0 2px 8px rgba(13,31,60,.07);
  --shadow-md: 0 6px 24px rgba(13,31,60,.12);
  --shadow-lg: 0 16px 48px rgba(13,31,60,.16);
  --transition: .22s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--gray-600); }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.125rem; color: var(--gray-600); line-height: 1.75; }
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-muted { color: var(--gray-400); font-size: .9rem; }

/* ---- Container ---- */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px;  margin: 0 auto; padding: 0 24px; }

/* ---- Section spacing ---- */
.section      { padding: 80px 0; }
.section-sm   { padding: 48px 0; }
.section-lg   { padding: 112px 0; }
.section-alt  { background: var(--gray-50); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header p { font-size: 1.05rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: .95rem; font-weight: 600; letter-spacing: .02em;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold); color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light); color: var(--navy); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
}
.btn-outline {
  border: 2px solid var(--navy); color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.7); color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-ghost { color: var(--navy-soft); }
.btn-ghost:hover { color: var(--gold); }
.btn-sm { padding: 8px 20px; font-size: .875rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ---- Tags / Badges ---- */
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.tag-gold   { background: rgba(201,168,76,.15); color: #a07a20; }
.tag-navy   { background: rgba(13,31,60,.08);   color: var(--navy); }
.tag-green  { background: rgba(34,139,87,.12);  color: #1a6e44; }
.tag-gray   { background: var(--gray-100); color: var(--gray-600); }

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  color: var(--navy); white-space: nowrap;
}
.logo span { color: var(--gold); }
.logo-icon {
  width: 36px; height: 36px; background: var(--navy);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px; border-radius: 6px; font-size: .9rem; font-weight: 500;
  color: var(--gray-800); white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--navy); background: var(--gray-50); }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  min-width: 220px; opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px); transition: all var(--transition);
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; pointer-events: all; transform: none; }
.nav-dropdown a { display: block; padding: 10px 16px; font-size: .875rem; border-radius: 0; }
.nav-dropdown a:hover { background: var(--gray-50); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }

/* ---- FOOTER ---- */
.site-footer { background: var(--navy); color: var(--gray-200); padding: 72px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { color: var(--gray-400); font-size: .9rem; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-body); font-size: .85rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--gray-200); font-size: .9rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 10px; font-size: .9rem; color: var(--gray-400); }
.footer-contact-item strong { color: var(--gray-200); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; font-size: .83rem; color: var(--gray-400);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--gray-400); }
.footer-bottom a:hover { color: var(--gold); }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-soft) 100%);
  color: var(--white); padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .12;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.hero-text .eyebrow { font-size: .85rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero-text h1 { color: var(--white); margin-bottom: 24px; }
.hero-text p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img img { width: 100%; height: 400px; object-fit: cover; }

/* Hero stats bar */
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12); flex-wrap: wrap;
}
.hero-stat .num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--gold); }
.hero-stat .lbl { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 2px; }

/* ---- PODCAST CARD ---- */
.podcast-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.podcast-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.podcast-card-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.podcast-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.podcast-card:hover .podcast-card-img img { transform: scale(1.04); }
.podcast-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.podcast-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.podcast-card-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.podcast-card-body p  { font-size: .9rem; flex: 1; }
.podcast-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-top: 1px solid var(--gray-100);
  font-size: .82rem; color: var(--gray-400);
}
.play-btn {
  width: 36px; height: 36px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.play-btn:hover { background: var(--navy); transform: scale(1.1); }
.play-btn svg { color: var(--white); margin-left: 2px; }

/* ---- PODCAST GRID ---- */
.podcast-grid { display: grid; gap: 28px; }
.podcast-grid-3 { grid-template-columns: repeat(3, 1fr); }
.podcast-grid-2 { grid-template-columns: repeat(2, 1fr); }
.podcast-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- REVIEW CARD ---- */
.review-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 12px;
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.review-rating { display: flex; gap: 3px; }
.star { color: var(--gold); font-size: 1rem; }
.star.empty { color: var(--gray-200); }
.review-score { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; color: var(--gold); }
.review-score span { font-size: 1rem; color: var(--gray-400); }
.review-card h3 { font-size: 1.1rem; margin-bottom: 8px; }

/* ---- ARTICLE CARD ---- */
.article-card {
  display: grid; grid-template-columns: 200px 1fr; gap: 0; border: 1px solid var(--gray-100);
  border-radius: 12px; overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-card-img img { width: 200px; height: 100%; object-fit: cover; }
.article-card-body { padding: 24px; }
.article-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; font-size: .82rem; color: var(--gray-400); }
.article-card-body h3 { margin-bottom: 8px; }
.article-card-body p { font-size: .9rem; margin-bottom: 16px; }

/* ---- ANALYST CARD ---- */
.analyst-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 12px;
  padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.analyst-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.analyst-avatar {
  width: 88px; height: 88px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 16px; border: 3px solid var(--gold);
}
.analyst-avatar img { width: 100%; height: 100%; object-fit: cover; }
.analyst-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.analyst-role { font-size: .85rem; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.analyst-stats { display: flex; justify-content: center; gap: 24px; margin-top: 16px; }
.analyst-stat .n { font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.analyst-stat .l { font-size: .75rem; color: var(--gray-400); }

/* ---- AUDIO PLAYER ---- */
.audio-player {
  background: var(--navy); border-radius: 12px; padding: 20px 24px;
  display: flex; align-items: center; gap: 20px; color: var(--white);
}
.ap-cover { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.ap-cover img { width: 100%; height: 100%; object-fit: cover; }
.ap-info { flex: 1; min-width: 0; }
.ap-title { font-weight: 600; font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ap-sub   { font-size: .8rem; color: rgba(255,255,255,.55); }
.ap-controls { display: flex; align-items: center; gap: 12px; }
.ap-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1); transition: background var(--transition);
}
.ap-btn:hover { background: var(--gold); }
.ap-btn.main { background: var(--gold); width: 48px; height: 48px; }
.ap-btn.main:hover { background: var(--gold-light); }
.ap-btn svg { color: var(--white); }
.ap-progress { flex: 1; }
.ap-bar { height: 4px; background: rgba(255,255,255,.2); border-radius: 2px; cursor: pointer; position: relative; }
.ap-bar-fill { height: 100%; width: 35%; background: var(--gold); border-radius: 2px; transition: width .1s; }
.ap-time { display: flex; justify-content: space-between; font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ---- RATING BAR ---- */
.rating-bar { margin-bottom: 10px; }
.rating-bar-label { display: flex; justify-content: space-between; font-size: .875rem; color: var(--gray-600); margin-bottom: 4px; }
.rating-bar-track { height: 8px; background: var(--gray-100); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--gold); border-radius: 4px; }

/* ---- BREADCRUMB ---- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--gray-400); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gray-200); }
.breadcrumb .current { color: var(--gray-800); }

/* ---- PAGINATION ---- */
.pagination { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: .9rem; font-weight: 500; border: 1px solid var(--gray-200);
  color: var(--gray-600); transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---- FORM ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-family: inherit; font-size: .95rem;
  color: var(--gray-800); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { outline: none; border-color: var(--navy-soft); box-shadow: 0 0 0 3px rgba(30,58,110,.12); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-hint { font-size: .8rem; color: var(--gray-400); margin-top: 4px; }

/* ---- SIDEBAR ---- */
.sidebar-widget {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 12px;
  padding: 24px; margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.sidebar-widget h4 { margin-bottom: 16px; font-size: 1rem; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 10px; }
.sidebar-list li { padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-size: .9rem; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { color: var(--gray-800); display: flex; justify-content: space-between; align-items: center; }
.sidebar-list a:hover { color: var(--gold); }
.sidebar-list .count { color: var(--gray-400); font-size: .8rem; }

/* ---- SEARCH BAR ---- */
.search-bar { display: flex; gap: 0; }
.search-bar input {
  flex: 1; padding: 12px 16px; border: 1.5px solid var(--gray-200);
  border-right: none; border-radius: var(--radius) 0 0 var(--radius);
  font-family: inherit; font-size: .9rem; color: var(--gray-800);
}
.search-bar input:focus { outline: none; border-color: var(--navy-soft); }
.search-bar button {
  padding: 12px 20px; background: var(--navy); color: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0; font-weight: 600; font-size: .9rem;
  transition: background var(--transition);
}
.search-bar button:hover { background: var(--navy-soft); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white); padding: 72px 0 64px;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 640px; }

/* ---- DIVIDERS ---- */
.divider { height: 1px; background: var(--gray-100); margin: 0; }
.gold-divider { height: 3px; width: 48px; background: var(--gold); border-radius: 2px; margin-bottom: 20px; }

/* ---- QUOTE BLOCK ---- */
.quote-block {
  border-left: 4px solid var(--gold); padding: 20px 24px;
  background: var(--gray-50); border-radius: 0 8px 8px 0; margin: 28px 0;
}
.quote-block p { font-size: 1.05rem; font-style: italic; color: var(--gray-600); margin-bottom: 8px; }
.quote-block cite { font-size: .85rem; color: var(--gray-400); font-style: normal; }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy); color: var(--white);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2); flex-wrap: wrap;
  transform: translateY(100%); transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: .88rem; color: rgba(255,255,255,.8); margin: 0; }
.cookie-banner a { color: var(--gold); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ---- MISC UTILS ---- */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.text-center { text-align: center; }
.text-right  { text-align: right; }

/* ---- CONTENT ARTICLE ---- */
.article-content h2 { margin: 36px 0 16px; }
.article-content h3 { margin: 28px 0 12px; }
.article-content p  { margin-bottom: 1.25rem; }
.article-content ul, .article-content ol { margin: 0 0 1.25rem 1.5rem; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: .5rem; color: var(--gray-600); }
.article-content img { border-radius: 12px; margin: 28px 0; }
.article-content .info-box {
  background: rgba(13,31,60,.05); border-left: 4px solid var(--navy-soft);
  padding: 20px 24px; border-radius: 0 8px 8px 0; margin: 28px 0;
}
.article-content .info-box p { color: var(--gray-800); margin: 0; }
.article-content table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: .9rem; }
.article-content th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 600; }
.article-content td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); color: var(--gray-600); }
.article-content tr:nth-child(even) td { background: var(--gray-50); }

/* ---- POLICY PAGES ---- */
.policy-content { max-width: 800px; }
.policy-content h2 { font-size: 1.4rem; margin: 40px 0 14px; color: var(--navy); }
.policy-content h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.policy-content p, .policy-content li { font-size: .97rem; color: var(--gray-600); line-height: 1.8; }
.policy-content ul { list-style: disc; margin-left: 1.5rem; margin-bottom: 1.25rem; }
.policy-content ol { list-style: decimal; margin-left: 1.5rem; margin-bottom: 1.25rem; }
.policy-content li { margin-bottom: .4rem; }
.policy-meta { background: var(--gray-50); border-radius: 8px; padding: 16px 20px; margin-bottom: 32px; font-size: .85rem; color: var(--gray-400); display: flex; gap: 24px; flex-wrap: wrap; }

/* ---- THANK YOU PAGE ---- */
.thankyou-section { padding: 120px 0; text-align: center; }
.thankyou-icon { width: 80px; height: 80px; background: rgba(34,139,87,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.thankyou-icon svg { color: #1a6e44; }

/* ---- 404 ---- */
.notfound { padding: 120px 0; text-align: center; }
.notfound .big-num { font-family: var(--font-head); font-size: 9rem; font-weight: 700; color: var(--gray-100); line-height: 1; }
.notfound h2 { margin-top: -20px; margin-bottom: 16px; }

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 44px; height: 44px; background: var(--navy); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: all var(--transition);
  box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* ---- CATEGORY FILTER ---- */
.cat-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.cat-btn {
  padding: 8px 18px; border-radius: 100px; font-size: .85rem; font-weight: 500;
  border: 1.5px solid var(--gray-200); color: var(--gray-600);
  transition: all var(--transition); cursor: pointer;
}
.cat-btn:hover, .cat-btn.active { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* ---- FEATURED STRIP ---- */
.featured-strip {
  background: var(--gold); padding: 18px 0;
}
.featured-strip .container {
  display: flex; align-items: center; gap: 24px; overflow: hidden;
}
.featured-strip strong { color: var(--navy); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.featured-strip span { color: var(--navy); font-size: .9rem; padding: 0 24px; border-right: 1px solid rgba(13,31,60,.2); white-space: nowrap; }
.featured-strip span:last-child { border-right: none; }

/* ---- STAT BLOCK ---- */
.stat-block { text-align: center; padding: 32px 20px; }
.stat-block .big { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--navy); }
.stat-block .lbl { font-size: .9rem; color: var(--gray-400); margin-top: 4px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .podcast-grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .podcast-grid-3 { grid-template-columns: 1fr; }
  .podcast-grid-2 { grid-template-columns: 1fr; }
  .podcast-grid-4 { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .article-card { grid-template-columns: 1fr; }
  .article-card-img img { width: 100%; height: 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 16px; box-shadow: var(--shadow-md);
    border-top: 1px solid var(--gray-100);
  }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  .header-inner { position: relative; }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; box-shadow: none; transform: none; border: none; padding-left: 12px; }
  .hero-stats { gap: 24px; }
  .section { padding: 56px 0; }
  .featured-strip { overflow: hidden; }
}
@media (max-width: 480px) {
  .btn-lg { padding: 13px 24px; }
  .hero { padding: 72px 0 56px; }
}
