@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:        #132249;
  --navy-mid:    #1e3464;
  --navy-light:  #2b4a8a;
  --gold:        #b8923a;
  --gold-light:  #d4a84b;
  --sand:        #f2e8d5;
  --bg:          #f5f7fa;
  --bg-card:     #ffffff;
  --text:        #1c1e26;
  --text-mid:    #3d4358;
  --text-muted:  #6b7285;
  --border:      #dde1ec;
  --border-light:#eaedf5;
  --accent-line: #c9a84c;
  --shadow-sm:   0 1px 4px rgba(19,34,73,.08);
  --shadow-md:   0 4px 18px rgba(19,34,73,.12);
  --shadow-lg:   0 10px 40px rgba(19,34,73,.16);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --font-body:   'Inter', sans-serif;
  --font-head:   'Playfair Display', serif;
  --max-w:       1220px;
  --transition:  0.25s ease;
}

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; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--text-mid); line-height: 1.8; }
.lead { font-size: 1.15rem; color: var(--text-mid); line-height: 1.9; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 8px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  font-size: 0.9rem; font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-gold {
  background: var(--gold); color: #fff; border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-sm { padding: 9px 20px; font-size: 0.83rem; }
.btn-lg { padding: 17px 38px; font-size: 1rem; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark span {
  color: var(--gold-light); font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
}
.logo-text { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.logo-text em { color: var(--gold); font-style: normal; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 7px 14px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--text-mid);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--navy); background: var(--bg);
}
.nav-link.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--gold); border-radius: 2px;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 8px;
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-item {
  display: block; padding: 9px 14px;
  font-size: 0.875rem; color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.dropdown-item:hover { background: var(--bg); color: var(--navy); }

.header-cta { margin-left: 16px; }

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

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(19,34,73,0.97) 0%, rgba(30,52,100,0.92) 100%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.22;
}
.hero-content { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold-light);
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero .lead { color: rgba(255,255,255,0.78); 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);
  position: relative;
}
.hero-image-wrap img { width: 100%; height: 400px; object-fit: cover; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 56px; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat { padding: 28px 0 0; }
.hero-stat-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--gold-light); }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ===== SECTION LAYOUTS ===== */
.section { padding: 90px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 120px 0; }
.section-dark { background: var(--navy); }
.section-alt { background: var(--sand); }
.section-header { margin-bottom: 52px; max-width: 680px; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header p { margin-top: 14px; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border); }
.card-img { width: 100%; height: 210px; object-fit: cover; }
.card-body { padding: 26px; }
.card-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; display: flex; gap: 14px; align-items: center; }
.card-meta span { display: flex; align-items: center; gap: 5px; }
.card-tag {
  display: inline-block; padding: 3px 10px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 20px; font-size: 0.73rem; font-weight: 600;
  color: var(--navy); letter-spacing: 0.04em;
}
.card-tag-gold { background: rgba(185,146,58,0.1); border-color: rgba(185,146,58,0.3); color: var(--gold); }
.card h3 { margin: 10px 0 10px; }
.card p { font-size: 0.9rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
  margin-top: 18px; transition: gap var(--transition);
}
.card-link:hover { gap: 10px; color: var(--gold); }

/* ===== PODCAST CARDS ===== */
.podcast-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== STAT BLOCKS ===== */
.stat-block {
  padding: 36px 28px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
}
.stat-block .num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--navy); }
.stat-block .unit { font-size: 1rem; color: var(--gold); font-weight: 600; }
.stat-block p { font-size: 0.875rem; margin-top: 8px; }

/* ===== FEATURE LIST ===== */
.feature-list { display: flex; flex-direction: column; gap: 22px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0; width: 46px; height: 46px;
  background: rgba(19,34,73,0.07);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 1.8; }
.feature-item h4 { margin-bottom: 4px; }
.feature-item p { font-size: 0.88rem; }

/* ===== TESTIMONIAL ===== */
.testimonial-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
}
.testimonial-block::before {
  content: '"';
  position: absolute; top: -20px; left: 36px;
  font-family: var(--font-head); font-size: 16rem; font-weight: 700;
  color: rgba(255,255,255,0.04); line-height: 1;
  pointer-events: none;
}
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.testimonial-item { position: relative; z-index: 1; }
.testimonial-item p { color: rgba(255,255,255,0.82); font-size: 1rem; line-height: 1.85; }
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.15); overflow: hidden; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 600; color: #fff; font-size: 0.9rem; }
.author-title { font-size: 0.78rem; color: var(--gold-light); }

/* ===== PODCAST PLAYER CARD ===== */
.player-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; gap: 22px; align-items: flex-start;
  transition: all var(--transition);
}
.player-card:hover { box-shadow: var(--shadow-md); }
.player-thumb {
  width: 88px; height: 88px; border-radius: 10px;
  overflow: hidden; flex-shrink: 0;
  background: var(--bg);
}
.player-thumb img { width: 100%; height: 100%; object-fit: cover; }
.player-info { flex: 1; }
.player-info .card-tag { margin-bottom: 8px; }
.player-info h4 { font-size: 1rem; margin-bottom: 6px; line-height: 1.4; }
.player-info p { font-size: 0.83rem; color: var(--text-muted); }
.player-meta { display: flex; gap: 16px; margin-top: 12px; }
.player-meta span { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.player-actions { display: flex; gap: 10px; align-items: center; margin-top: 14px; }
.play-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.play-btn:hover { background: var(--navy-mid); transform: scale(1.08); }
.play-btn svg { width: 14px; height: 14px; fill: #fff; margin-left: 2px; }
.progress-bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gold); border-radius: 2px; }

/* ===== EXPERT CARD ===== */
.expert-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all var(--transition);
}
.expert-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.expert-img { width: 100%; height: 240px; object-fit: cover; }
.expert-body { padding: 24px; }
.expert-name { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); margin-bottom: 4px; }
.expert-role { font-size: 0.8rem; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.expert-bio { font-size: 0.875rem; color: var(--text-mid); margin-top: 12px; line-height: 1.7; }
.expert-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 0;
  display: flex; gap: 8px; align-items: center;
  font-size: 0.82rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb-sep { color: var(--border); }

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 13px 18px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9rem; background: #fff;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { outline: none; border-color: var(--navy); }

/* ===== CONTACT FORM ===== */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem; color: var(--text);
  background: #fff;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(19,34,73,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; }
.form-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--navy); }
.form-consent label { font-size: 0.82rem; color: var(--text-muted); }
.form-consent a { color: var(--navy); text-decoration: underline; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute;
  bottom: 0; right: 0;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(200,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .breadcrumb { margin-bottom: 20px; }
.page-hero .breadcrumb, .page-hero .breadcrumb a { color: rgba(255,255,255,0.5); }
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 640px; }

/* ===== RATING STARS ===== */
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }

/* ===== TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left; padding: 13px 18px;
  background: var(--navy); color: #fff;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em;
}
.data-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem; color: var(--text-mid);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--bg); }
.data-table tr:hover td { background: var(--border-light); }

/* ===== ACCORDION ===== */
.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: 10px;
}
.accordion-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer;
  background: #fff; transition: background var(--transition);
}
.accordion-header:hover { background: var(--bg); }
.accordion-header h4 { font-size: 1rem; color: var(--navy); margin: 0; }
.accordion-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); border-radius: 50%;
  transition: transform var(--transition);
}
.accordion-icon svg { width: 12px; height: 12px; stroke: var(--navy); fill: none; stroke-width: 2.5; }
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 0 24px 22px;
  background: #fff;
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 1.8;
}
.accordion-item.open .accordion-body { display: block; }

/* ===== TAGS FILTER ===== */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 7px 16px;
  border: 1.5px solid var(--border); border-radius: 30px;
  font-size: 0.82rem; font-weight: 500; color: var(--text-mid);
  background: #fff; cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); border-color: var(--navy); color: #fff;
}

/* ===== SIDEBAR LAYOUT ===== */
.sidebar-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 26px;
}
.sidebar-widget h4 {
  font-size: 1rem; margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.widget-list { display: flex; flex-direction: column; gap: 12px; }
.widget-list-item {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px; border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
}
.widget-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.widget-list-item a { color: var(--text-mid); transition: color var(--transition); }
.widget-list-item a:hover { color: var(--navy); }
.widget-count { font-size: 0.75rem; background: var(--bg); padding: 2px 8px; border-radius: 10px; color: var(--text-muted); }

/* ===== DIVIDER ===== */
.divider { border: none; border-top: 1px solid var(--border-light); margin: 40px 0; }
.gold-line { height: 3px; width: 48px; background: var(--gold); border-radius: 2px; margin: 16px 0 28px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 0.875rem; margin-top: 16px; line-height: 1.75; color: rgba(255,255,255,0.62); }
.footer-contact { margin-top: 22px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact span { font-size: 0.83rem; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); }
.footer-contact span svg { width: 14px; height: 14px; stroke: var(--gold-light); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.footer-col h5 {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.95); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: var(--sand);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 22px 26px;
}
.highlight-box p { font-size: 0.92rem; }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff; border: none;
  cursor: pointer; display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: all var(--transition); z-index: 90;
}
.back-top.visible { display: flex; }
.back-top:hover { background: var(--navy-mid); transform: translateY(-2px); }
.back-top svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; background: var(--navy);
  z-index: 200; padding: 80px 28px 40px;
  flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; color: #fff; cursor: pointer;
  font-size: 1.6rem; line-height: 1;
}
.mobile-nav a {
  color: rgba(255,255,255,0.8); font-size: 1.05rem; padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition); display: block;
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .sub-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-light);
  margin-top: 14px; margin-bottom: 4px; display: block;
  border-bottom: none; padding-bottom: 0;
}

/* ===== ARTICLE CONTENT ===== */
.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 li { margin-bottom: 8px; color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; }
.article-content ul li { list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content blockquote {
  border-left: 4px solid var(--gold);
  margin: 30px 0; padding: 18px 24px;
  background: var(--sand); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-content blockquote p { font-style: italic; font-size: 1.05rem; margin: 0; color: var(--navy); }

/* ===== POLICY PAGE ===== */
.policy-content { max-width: 820px; }
.policy-content h2 { font-size: 1.4rem; margin: 40px 0 16px; color: var(--navy); }
.policy-content h3 { font-size: 1.1rem; margin: 28px 0 12px; }
.policy-content p, .policy-content li { font-size: 0.95rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 14px; }
.policy-content ul { padding-left: 22px; }
.policy-content ul li { list-style: disc; margin-bottom: 8px; }
.policy-content a { color: var(--navy); text-decoration: underline; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.875rem; }
.policy-content table th { background: var(--navy); color: #fff; padding: 10px 16px; text-align: left; }
.policy-content table td { padding: 10px 16px; border-bottom: 1px solid var(--border-light); color: var(--text-mid); }
.policy-content table tr:nth-child(even) td { background: var(--bg); }
.policy-toc { background: var(--sand); border-radius: var(--radius-md); padding: 26px 30px; margin-bottom: 40px; }
.policy-toc h4 { margin-bottom: 14px; font-size: 0.95rem; color: var(--navy); }
.policy-toc ol { padding-left: 20px; }
.policy-toc li { margin-bottom: 6px; font-size: 0.875rem; }
.policy-toc a { color: var(--navy); text-decoration: underline; }

/* ===== PROGRESS INDICATOR ===== */
.reading-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 3px; background: var(--gold); width: 0%;
  transition: width 0.1s linear;
}

/* ===== NOTICE BANNER ===== */
.notice-bar {
  background: var(--navy); color: rgba(255,255,255,0.82);
  text-align: center; padding: 11px 24px;
  font-size: 0.82rem;
}
.notice-bar a { color: var(--gold-light); text-decoration: underline; }

/* ===== COOKIE TABLE ===== */
.cookie-table-wrap { overflow-x: auto; margin: 16px 0 28px; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
.cookie-table th {
  background: var(--navy); color: #fff;
  padding: 10px 14px; text-align: left; font-weight: 600;
}
.cookie-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.cookie-table tr:hover td { background: rgba(19,34,73,0.04); }
.cookie-table code { background: rgba(19,34,73,0.08); padding: 2px 6px; border-radius: 4px; font-size: 0.82rem; }

/* ===== DISCLAIMER NOTICE ===== */
.disclaimer-notice {
  background: rgba(185,146,58,0.1); border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0; padding: 24px 28px; margin-bottom: 36px;
}
.disclaimer-notice h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.disclaimer-notice p { color: var(--text-mid); margin: 0; }

/* ===== POLICY CONTENT WIDE ===== */
.policy-content-wide { max-width: 100%; }
.policy-content-wide section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.policy-content-wide section:last-child { border-bottom: none; }

/* ===== SITEMAP ===== */
.sitemap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.sitemap-section { }
.sitemap-section-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px; border-bottom: 2px solid var(--navy); margin-bottom: 20px;
}
.sitemap-section-head svg { width: 20px; height: 20px; color: var(--navy); }
.sitemap-section-head h2 { font-size: 1.1rem; color: var(--navy); margin: 0; }
.sitemap-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.sitemap-list li a {
  display: block; padding: 10px 12px; border-radius: 6px;
  text-decoration: none; color: inherit;
  transition: background 0.18s;
}
.sitemap-list li a:hover { background: rgba(19,34,73,0.05); }
.sitemap-title { display: block; font-weight: 600; color: var(--navy); font-size: 0.88rem; }
.sitemap-desc { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.sitemap-meta {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px 28px;
  font-size: 0.85rem; color: var(--text-mid);
}
.sitemap-meta p { margin: 0 0 8px; }
.sitemap-meta p:last-child { margin: 0; }

/* ===== REVIEW CARD HORIZONTAL ===== */
.review-card-h {
  display: flex; gap: 28px; background: #fff;
  border: 1px solid var(--border); border-radius: 12px;
  padding: 28px; transition: box-shadow 0.2s;
}
.review-card-h:hover { box-shadow: 0 8px 32px rgba(19,34,73,0.1); }
.review-card-h-score {
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start; gap: 4px; flex-shrink: 0;
  min-width: 70px;
}
.score-circle {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700;
}
.review-card-h-score span { font-size: 0.75rem; color: var(--text-muted); text-align: center; }
.review-card-h-body { flex: 1; }
.review-scores { display: flex; flex-direction: column; gap: 7px; margin-top: 16px; }
.score-item { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--text-mid); }
.score-bar {
  display: block; height: 6px; border-radius: 99px;
  background: var(--border); width: 160px; flex-shrink: 0; position: relative; overflow: hidden;
}
.score-bar::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: var(--w, 80%); background: var(--navy); border-radius: 99px;
}

/* ===== CAT HERO ===== */
.cat-hero { background: var(--navy); color: #fff; padding: 64px 0 52px; }
.cat-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.cat-hero .breadcrumb span:not(:last-child) { color: rgba(255,255,255,0.3); }
.cat-hero .breadcrumb span:last-child { color: rgba(255,255,255,0.85); }
.cat-hero h1 { color: #fff; }
.cat-hero .lead { color: rgba(255,255,255,0.78); }
.cat-hero-inner { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: center; margin-top: 24px; }
.cat-hero-img img { width: 100%; border-radius: 12px; aspect-ratio: 16/9; object-fit: cover; }

/* ===== INFO ASIDE ===== */
.info-aside {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px;
}
.info-aside h4 { color: var(--navy); margin-bottom: 14px; }
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.check-list li { padding-left: 22px; position: relative; font-size: 0.85rem; color: var(--text-mid); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ===== ARTICLE LAYOUT ===== */
.article-hero { background: var(--navy); padding: 64px 0 52px; }
.article-hero-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.article-hero h1 { color: #fff; font-size: 2.1rem; line-height: 1.25; }
.article-hero .lead { color: rgba(255,255,255,0.78); margin-top: 16px; font-size: 1.05rem; }
.article-hero-author { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.author-ava {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem; flex-shrink: 0;
}
.author-name { display: block; color: #fff; font-weight: 600; font-size: 0.88rem; }
.author-role { display: block; color: rgba(255,255,255,0.55); font-size: 0.78rem; }
.article-img-full img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.article-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; padding-top: 48px; padding-bottom: 64px; align-items: start; }
.article-toc { position: sticky; top: 88px; }
.article-toc h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 12px; }
.article-toc nav { display: flex; flex-direction: column; gap: 2px; }
.article-toc nav a { display: block; font-size: 0.82rem; color: var(--text-mid); text-decoration: none; padding: 5px 10px; border-left: 2px solid var(--border); transition: all 0.18s; }
.article-toc nav a:hover { color: var(--navy); border-left-color: var(--navy); }
.article-body section { margin-bottom: 40px; }
.article-body h2 { font-size: 1.45rem; color: var(--navy); margin-bottom: 14px; }
.article-body h3 { font-size: 1.1rem; color: var(--navy); margin: 20px 0 10px; }
.data-box { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 22px 24px; margin: 20px 0; }
.data-box h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.data-table { display: flex; flex-direction: column; gap: 0; }
.data-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.84rem; color: var(--text-mid); gap: 16px; }
.data-row:last-child { border-bottom: none; }
.data-source { font-size: 0.75rem; color: var(--text-muted); margin: 12px 0 0; font-style: italic; }
.article-cta-block { background: var(--bg); border-radius: 12px; padding: 28px; margin-top: 40px; }
.article-cta-block h3 { color: var(--navy); margin-bottom: 16px; font-size: 1.05rem; }
.related-articles { display: flex; flex-direction: column; gap: 10px; }
.related-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #fff; border: 1px solid var(--border); border-radius: 8px; text-decoration: none; color: inherit; transition: box-shadow 0.18s; }
.related-item:hover { box-shadow: 0 4px 16px rgba(19,34,73,0.08); }
.related-item strong { font-size: 0.88rem; color: var(--navy); }

/* ===== RESOURCES PAGE ===== */
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.resource-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 24px; transition: box-shadow 0.2s;
}
.resource-card:hover { box-shadow: 0 8px 28px rgba(19,34,73,0.09); }
.resource-icon { width: 44px; height: 44px; background: rgba(19,34,73,0.07); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.resource-icon svg { width: 22px; height: 22px; }
.resource-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 0.95rem; }
.resource-card p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.55; }
.resource-link { display: inline-flex; align-items: center; gap: 4px; font-size: 0.8rem; color: var(--navy); text-decoration: none; font-weight: 600; margin-top: 12px; }
.resource-link:hover { text-decoration: underline; }
.tools-list { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.tool-item { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.tool-item:last-child { border-bottom: none; }
.tool-num { font-size: 2rem; font-weight: 800; color: rgba(19,34,73,0.12); flex-shrink: 0; line-height: 1; min-width: 40px; }
.tool-item h4 { color: var(--navy); margin-bottom: 8px; }
.tool-item p { font-size: 0.85rem; color: var(--text-mid); }
.books-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.book-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 22px; }
.book-info h4 { color: var(--navy); font-size: 0.93rem; margin: 8px 0 8px; }
.book-info p { font-size: 0.82rem; color: var(--text-mid); }

/* ===== SECTION HEADING UTILITY ===== */
.section-h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .four-col { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { grid-row: 1; }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .sitemap-grid { grid-template-columns: 1fr; gap: 32px; }
  .cat-hero-inner { grid-template-columns: 1fr; }
  .cat-hero-img { display: none; }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { display: none; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .three-col { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .newsletter-section { grid-template-columns: 1fr; padding: 40px 28px; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .article-grid, .podcast-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .hero-stat { padding: 14px 0 0; }
  .review-card-h { flex-direction: column; gap: 16px; }
  .review-card-h-score { flex-direction: row; justify-content: flex-start; }
  .resources-grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .article-hero h1 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  .hero { padding: 70px 0 60px; }
  .section { padding: 60px 0; }
  .testimonial-block { padding: 32px 24px; }
  .four-col { grid-template-columns: 1fr; }
}
