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

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --color-primary: #333333;
  --color-secondary: #607D8B;
  --color-accent: #E9C46A;
  --color-bg: #F8F8F8;
  --color-bg-light: #EEEEEE;
  --color-white: #ffffff;
  --color-border: #DDDDDD;
  --color-text-muted: #666666;
  --color-warning: #C0392B;
  --color-warning-bg: #FDECEA;
  --shadow-card: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 16px rgba(0,0,0,0.12);
  --radius: 6px;
  --container: 1200px;
  --transition: all 0.2s ease-in-out;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-primary);
  background-color: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-accent);
}

ul, ol {
  list-style: none;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===========================
   LAYOUT
=========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--color-bg-light);
}

.section-dark {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-title {
  font-size: 36px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 48px;
  max-width: 680px;
}

.section-header {
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===========================
   WARNING BANNER
=========================== */
.warning-banner {
  background-color: var(--color-warning);
  color: var(--color-white);
  text-align: center;
  padding: 10px 24px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1000;
}

.warning-banner span {
  display: inline-block;
  max-width: 1100px;
}

/* ===========================
   NAVIGATION
=========================== */
.site-header {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background-color: var(--color-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--color-white);
  letter-spacing: -1px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.main-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-secondary);
  background-color: var(--color-bg-light);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  min-width: 200px;
  padding: 8px 0;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--color-primary);
  border-radius: 0;
}

.dropdown-menu a:hover {
  background-color: var(--color-bg-light);
  color: var(--color-secondary);
}

.nav-cta {
  background-color: var(--color-accent) !important;
  color: var(--color-primary) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
}

.nav-cta:hover {
  background-color: #d4a837 !important;
  color: var(--color-primary) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background-color: #d4a837;
  border-color: #d4a837;
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233,196,106,0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn-white:hover {
  background-color: var(--color-bg-light);
  color: var(--color-secondary);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 18px;
}

/* ===========================
   HERO
=========================== */
.hero {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero h1 {
  color: var(--color-white);
  font-size: 52px;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 580px;
}

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

/* ===========================
   CARDS
=========================== */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-tag {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 10px;
  display: block;
}

.card-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.card-title a {
  color: var(--color-primary);
}

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

.card-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.rating-stars {
  color: var(--color-accent);
  font-size: 14px;
}

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

/* ===========================
   STATS BAR
=========================== */
.stats-bar {
  background-color: var(--color-secondary);
  padding: 40px 0;
}

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

.stat-item {
  color: var(--color-white);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===========================
   BREADCRUMBS
=========================== */
.breadcrumb {
  padding: 16px 0;
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb-list li::after {
  content: '/';
  color: var(--color-text-muted);
  margin-left: 8px;
}

.breadcrumb-list li:last-child::after {
  display: none;
}

.breadcrumb-list a {
  color: var(--color-secondary);
}

.breadcrumb-list span {
  color: var(--color-text-muted);
}

/* ===========================
   PAGE HEADER
=========================== */
.page-header {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 64px 0;
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: 14px;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0;
}

/* ===========================
   SIDEBAR LAYOUT
=========================== */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

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

.sidebar-widget {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

.sidebar-widget h4 {
  font-size: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
}

.sidebar-widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-bg-light);
  font-size: 15px;
}

.sidebar-widget ul li:last-child {
  border-bottom: none;
}

.sidebar-widget ul li a {
  color: var(--color-primary);
}

.sidebar-widget ul li a:hover {
  color: var(--color-secondary);
}

/* ===========================
   RATING COMPONENT
=========================== */
.rating-block {
  background-color: var(--color-bg-light);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
}

.rating-score {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
}

.rating-max {
  font-size: 20px;
  color: var(--color-text-muted);
}

.rating-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ===========================
   PODCAST CARD SPECIAL
=========================== */
.podcast-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.podcast-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.podcast-card-cover {
  width: 100px;
  height: 100px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}

.podcast-card-info { flex: 1; }

.podcast-card-title {
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}

.podcast-card-host {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.podcast-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  background-color: var(--color-bg-light);
  border-radius: 20px;
  color: var(--color-secondary);
  border: 1px solid var(--color-border);
}

/* ===========================
   FEATURED SECTION
=========================== */
.featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.featured-main {
  grid-row: 1 / 3;
}

.featured-main .card-img {
  height: 300px;
}

/* ===========================
   CATEGORY TILES
=========================== */
.category-tile {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.category-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-secondary);
}

.category-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}

.category-tile h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.category-tile p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}

.category-count {
  font-size: 12px;
  color: var(--color-secondary);
  font-weight: 700;
  margin-top: 8px;
  display: block;
}

/* ===========================
   FORMS
=========================== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: var(--color-primary);
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(96,125,139,0.12);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23607D8B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-hint {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-bg-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin: 0;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background-color: #222222;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

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

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
}

.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--color-white);
}

.footer-col h5 {
  color: var(--color-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  text-align: center;
}

/* ===========================
   TAGS & BADGES
=========================== */
.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-blue {
  background-color: rgba(96,125,139,0.12);
  color: var(--color-secondary);
}

.badge-ochre {
  background-color: rgba(233,196,106,0.18);
  color: #a07a20;
}

.badge-grey {
  background-color: var(--color-bg-light);
  color: var(--color-text-muted);
}

/* ===========================
   ARTICLE / BLOG
=========================== */
.article-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 36px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.article-meta span::before {
  content: '•';
  margin-right: 8px;
  color: var(--color-accent);
}

.article-meta span:first-child::before {
  display: none;
}

.article-content h2 {
  font-size: 28px;
  margin: 36px 0 16px;
}

.article-content h3 {
  font-size: 22px;
  margin: 28px 0 12px;
}

.article-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #444;
}

.article-content ul,
.article-content ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #444;
}

.article-content blockquote {
  border-left: 4px solid var(--color-accent);
  padding: 16px 24px;
  margin: 28px 0;
  background-color: var(--color-bg-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 18px;
  color: var(--color-secondary);
}

/* ===========================
   METHODOLOGY / LIST PAGES
=========================== */
.method-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--color-accent);
  line-height: 1;
  min-width: 50px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 16px;
  color: var(--color-text-muted);
  margin: 0;
}

/* ===========================
   GLOSSARY
=========================== */
.glossary-letter {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 8px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.glossary-term {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.glossary-term h4 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--color-secondary);
}

.glossary-term p {
  font-size: 16px;
  color: var(--color-text-muted);
  margin: 0;
}

/* ===========================
   FAQ
=========================== */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-white);
  transition: var(--transition);
  user-select: none;
}

.faq-question:hover {
  background-color: var(--color-bg-light);
}

.faq-question.open {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-border);
}

.faq-chevron {
  font-size: 12px;
  transition: transform 0.2s;
}

.faq-question.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 20px 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  background-color: #fafafa;
}

.faq-answer.open {
  display: block;
}

/* ===========================
   TABLE
=========================== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.data-table th {
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
}

.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.data-table tr:hover td {
  background-color: var(--color-bg-light);
}

.data-table tr:last-child td {
  border-bottom: none;
}

/* ===========================
   THANK YOU PAGE
=========================== */
.thank-you-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--color-white);
  margin: 0 auto 28px;
}

/* ===========================
   POLICY PAGES
=========================== */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 26px;
  margin: 40px 0 16px;
  color: var(--color-secondary);
}

.policy-content h3 {
  font-size: 20px;
  margin: 28px 0 12px;
}

.policy-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.policy-content li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #444;
}

.policy-meta {
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 14px 20px;
  background-color: var(--color-bg-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
  margin-bottom: 36px;
}

/* ===========================
   SITEMAP
=========================== */
.sitemap-section {
  margin-bottom: 40px;
}

.sitemap-section h3 {
  font-size: 20px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent);
}

.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sitemap-links a {
  font-size: 15px;
  color: var(--color-secondary);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.sitemap-links a:hover {
  background-color: var(--color-bg-light);
  color: var(--color-primary);
}

/* ===========================
   COOKIE NOTICE
=========================== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-primary);
  color: rgba(255,255,255,0.9);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-bar.visible {
  transform: translateY(0);
}

.cookie-bar p {
  font-size: 14px;
  margin: 0;
  max-width: 780px;
}

.cookie-bar a {
  color: var(--color-accent);
}

.cookie-bar-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ===========================
   TOP PODCASTS RANK
=========================== */
.rank-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--color-accent);
  min-width: 36px;
  flex-shrink: 0;
}

.ranked-podcast {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
  transition: var(--transition);
}

.ranked-podcast:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ===========================
   SEARCH BAR
=========================== */
.search-bar {
  display: flex;
  gap: 0;
  max-width: 580px;
}

.search-bar input {
  flex: 1;
  padding: 14px 18px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  border: 2px solid var(--color-border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  transition: var(--transition);
}

.search-bar input:focus {
  border-color: var(--color-secondary);
}

.search-bar button {
  padding: 14px 24px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--color-secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.search-bar button:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary);
}

/* ===========================
   NEWSLETTER BLOCK
=========================== */
.newsletter-block {
  background-color: var(--color-secondary);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  color: var(--color-white);
}

.newsletter-block h3 {
  color: var(--color-white);
  font-size: 28px;
  margin-bottom: 12px;
}

.newsletter-block p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

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

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  font-size: 15px;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  font-family: 'Lato', sans-serif;
}

.newsletter-form button {
  padding: 14px 22px;
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background-color: #d4a837;
}

/* ===========================
   HOST CARD
=========================== */
.host-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
}

.host-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.host-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
}

.host-card-body {
  padding: 20px;
}

.host-card-name {
  font-size: 19px;
  margin-bottom: 6px;
}

.host-card-title {
  font-size: 13px;
  color: var(--color-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

/* ===========================
   PAGINATION
=========================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--transition);
  background-color: var(--color-white);
  text-decoration: none;
}

.page-btn:hover,
.page-btn.active {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
}

/* ===========================
   DIVIDER
=========================== */
.divider {
  height: 1px;
  background-color: var(--color-border);
  margin: 40px 0;
}

.divider-accent {
  height: 3px;
  background-color: var(--color-accent);
  width: 60px;
  margin: 16px 0 24px;
  border-radius: 2px;
}

/* ===========================
   MOBILE NAV
=========================== */
.mobile-nav-menu {
  display: none;
  flex-direction: column;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 16px 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.mobile-nav-menu.open {
  display: flex;
}

.mobile-nav-menu a {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 12px 24px;
  border-bottom: 1px solid var(--color-bg-light);
  transition: var(--transition);
}

.mobile-nav-menu a:last-child {
  border-bottom: none;
}

.mobile-nav-menu a:hover {
  color: var(--color-secondary);
  background-color: var(--color-bg-light);
}

/* ===========================
   UTILITY
=========================== */
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }
.mt-32 { margin-top: 32px; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-main { grid-row: auto; }
}

@media (max-width: 768px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 17px; }
  .section { padding: 56px 0; }
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .sitemap-links { grid-template-columns: 1fr 1fr; }
  .newsletter-block { padding: 32px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius); border-right: 2px solid var(--color-border); }
  .newsletter-form button { border-radius: var(--radius); }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .search-bar { flex-direction: column; max-width: 100%; }
  .search-bar input { border-right: 2px solid var(--color-border); border-radius: var(--radius); }
  .search-bar button { border-radius: var(--radius); }
  .cookie-bar { flex-direction: column; text-align: center; }
  .warning-banner { font-size: 11px; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .hero { padding: 64px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .sitemap-links { grid-template-columns: 1fr; }
}
