@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* ─── Blue & White Premium Palette ─── */
  --blue-900: #0A1628;
  --blue-800: #0F2140;
  --blue-700: #132D56;
  --blue-600: #1B3F7A;
  --blue-500: #2563EB;
  --blue-400: #3B82F6;
  --blue-300: #60A5FA;
  --blue-200: #93C5FD;
  --blue-100: #DBEAFE;
  --blue-50: #EFF6FF;

  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --gray-50: #F1F5FE;
  --gray-100: #E8EDF8;
  --gray-200: #D4DCF0;
  --gray-300: #B0BDD6;
  --gray-400: #8896B3;
  --gray-600: #4B5C7E;
  --gray-800: #1E2A42;

  --accent: #2563EB;
  --accent-light: #3B82F6;
  --accent-glow: rgba(37, 99, 235, 0.35);

  --green: #10B981;
  --green-dark: #059669;
  --green-light: #ECFDF5;
  --red: #EF4444;
  --red-light: #FEF2F2;
  --yellow: #F59E0B;

  /* Legacy compat aliases */
  --navy: var(--blue-800);
  --navy-dark: var(--blue-900);
  --navy-mid: var(--blue-700);
  --navy-light: var(--blue-600);

  --font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.04), 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 24px rgba(10, 22, 40, 0.08), 0 2px 8px rgba(10, 22, 40, 0.04);
  --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.12), 0 4px 16px rgba(10, 22, 40, 0.06);
  --shadow-blue: 0 8px 32px rgba(37, 99, 235, 0.18);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none
}

ul {
  list-style: none
}

/* ─── Utilities ─── */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 90px 0
}

.section-sm {
  padding: 64px 0
}

.text-center {
  text-align: center
}

.text-green {
  color: var(--green)
}

.text-navy {
  color: var(--blue-800)
}

.text-red {
  color: var(--red)
}

.text-gray {
  color: var(--gray-600)
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase
}

.badge-nifty {
  background: #eef2ff;
  color: #4338ca
}

.badge-bank {
  background: #fffbeb;
  color: #b45309
}

.badge-gold {
  background: #fef3c7;
  color: #92400e
}

.badge-intl {
  background: #f0fdf4;
  color: #166534
}

.badge-psu {
  background: #fff1f2;
  color: #9f1239
}

.badge-sensex {
  background: #eff6ff;
  color: #1d4ed8
}

.badge-next50 {
  background: #f0f9ff;
  color: #0369a1
}

.section-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.section-label::before {
  content: '';
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-200));
  border-radius: 2px
}

.section-title {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 900;
  color: var(--blue-900);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -.5px
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition)
}

.btn:hover::after {
  opacity: 1
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-400) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.30)
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-500) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.40)
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .45)
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
  transform: translateY(-2px)
}

.btn-navy {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 100%);
  color: var(--white)
}

.btn-navy:hover {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue)
}

.btn-sm {
  padding: 9px 20px;
  font-size: 13px;
  border-radius: 8px
}

.btn-white {
  background: var(--white);
  color: var(--blue-600);
  box-shadow: var(--shadow-sm)
}

.btn-white:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px)
}

/* ═══════════════════════════════════════ */
/*               NAVBAR                    */
/* ═══════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
  transition: all var(--transition)
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(10, 22, 40, 0.08)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.nav-logo {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-300) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transition: transform var(--transition-bounce)
}

.nav-brand:hover .nav-logo {
  transform: rotate(-6deg) scale(1.08)
}

.brand-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue-900);
  letter-spacing: -.3px
}

.brand-name span {
  color: var(--blue-400)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px
}

.nav-link {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition);
  position: relative
}

.nav-link:hover {
  color: var(--blue-500);
  background: var(--blue-50)
}

.nav-link.active {
  color: var(--blue-600);
  background: var(--blue-50)
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
  border-radius: 2px
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 9px 16px;
  flex: 1;
  max-width: 260px;
  transition: all var(--transition)
}

.nav-search:focus-within {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
  background: var(--white)
}

.nav-search svg {
  color: var(--gray-400);
  flex-shrink: 0
}

.nav-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: var(--gray-800);
  font-family: var(--font);
  width: 100%
}

.nav-search input::placeholder {
  color: var(--gray-400)
}

.search-results {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  max-height: 340px;
  overflow-y: auto;
  display: none
}

.search-results.visible {
  display: block
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  cursor: pointer;
  transition: all var(--transition);
  border-bottom: 1px solid var(--gray-100)
}

.search-result-item:hover {
  background: var(--blue-50)
}

.search-result-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-800)
}

.search-result-cat {
  font-size: 12px;
  color: var(--gray-600)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--blue-800);
  border-radius: 3px;
  transition: all var(--transition)
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-200)
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition)
}

.mobile-menu a:hover {
  color: var(--blue-500)
}

/* ═══════════════════════════════════════ */
/*                 HERO                    */
/* ═══════════════════════════════════════ */
.hero {
  background: linear-gradient(155deg, var(--blue-900) 0%, var(--blue-800) 35%, var(--blue-700) 65%, var(--blue-600) 100%);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 85% 40%, rgba(59, 130, 246, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(96, 165, 250, 0.08) 0%, transparent 70%)
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  animation: heroOrb 8s ease-in-out infinite alternate
}

/* Floating particles */
.hero .container {
  position: relative
}

.hero .container::before {
  content: '';
  position: absolute;
  top: 60px;
  right: 120px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(147, 197, 253, 0.5);
  box-shadow:
    -120px 60px 0 rgba(96, 165, 250, 0.3),
    -200px -30px 0 2px rgba(59, 130, 246, 0.2),
    80px 160px 0 rgba(147, 197, 253, 0.4),
    200px -80px 0 3px rgba(37, 99, 235, 0.15),
    -60px 200px 0 1px rgba(96, 165, 250, 0.35);
  animation: particleFloat 6s ease-in-out infinite alternate
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 24px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-200);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px)
}

.hero-label .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-300);
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--blue-300)
}

.hero h1 {
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.8px
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-200) 0%, var(--blue-300) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .68);
  margin-bottom: 40px;
  line-height: 1.75;
  max-width: 480px
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap
}

.hero-stat-val {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.3px
}

.hero-stat-key {
  font-size: 12px;
  color: rgba(255, 255, 255, .50);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase
}

/* Hero Visual Cards */
.hero-visual {
  position: relative;
  perspective: 800px
}

.hero-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 18px;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .15) 50%, transparent 100%)
}

.hero-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  border-color: rgba(96, 165, 250, .25);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15)
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px
}

.hero-card-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--white)
}

.hero-card-cat {
  font-size: 11px;
  color: rgba(255, 255, 255, .50);
  margin-top: 4px;
  font-weight: 500
}

.hero-card-return {
  font-size: 24px;
  font-weight: 900;
  color: var(--blue-300)
}

.hero-card-return small {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, .45);
  display: block;
  text-align: right
}

.hero-sparkline {
  height: 52px;
  display: flex;
  align-items: flex-end;
  gap: 4px
}

.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: height 0.6s ease
}

.bar.pos {
  background: linear-gradient(180deg, rgba(59, 130, 246, .6) 0%, rgba(37, 99, 235, .3) 100%)
}

.bar.neg {
  background: linear-gradient(180deg, rgba(239, 68, 68, .5) 0%, rgba(239, 68, 68, .25) 100%)
}

/* ═══════════════════════════════════════ */
/*             FILTER BAR                  */
/* ═══════════════════════════════════════ */
.filter-bar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
  padding: 18px 0;
  position: sticky;
  top: 72px;
  z-index: 900;
  transition: box-shadow var(--transition)
}

.filter-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

.filter-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-600);
  flex-shrink: 0
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.filter-pill {
  padding: 7px 18px;
  border-radius: 22px;
  border: 1.5px solid var(--gray-200);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition)
}

.filter-pill:hover {
  border-color: var(--blue-300);
  color: var(--blue-500);
  background: var(--blue-50)
}

.filter-pill.active {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25)
}

/* ═══════════════════════════════════════ */
/*         CATEGORY GRID                   */
/* ═══════════════════════════════════════ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.cat-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 26px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition)
}

.cat-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(37, 99, 235, 0.05);
  transform: translateY(-5px)
}

.cat-card:hover::before {
  transform: scaleX(1)
}

.cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all var(--transition-bounce)
}

.cat-card:hover .cat-icon {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18)
}

.cat-content {
  flex: 1;
  min-width: 0
}

.cat-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-800);
  margin-bottom: 8px;
  line-height: 1.3
}

.cat-desc {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 14px
}

.cat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.cat-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-500);
  background: var(--blue-50);
  padding: 4px 12px;
  border-radius: 20px
}

.cat-arrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-400);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition)
}

.cat-card:hover .cat-arrow {
  opacity: 1;
  transform: translateX(0)
}

/* ═══════════════════════════════════════ */
/*         ETF GRID & CARDS                */
/* ═══════════════════════════════════════ */
.etf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.etf-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-bounce);
  animation: fadeInUp .5s ease both;
  position: relative;
  overflow: hidden
}

.etf-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition)
}

.etf-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(37, 99, 235, 0.06);
  transform: translateY(-6px)
}

.etf-card:hover::before {
  transform: scaleX(1)
}

.etf-fund-house {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 8px
}

.etf-card-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-800);
  line-height: 1.35;
  margin-bottom: 12px
}

.etf-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.etf-card-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--gray-100) 0%, var(--gray-200) 50%, var(--gray-100) 100%);
  margin: 18px 0
}

.etf-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px
}

.etf-stat-label {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .3px
}

.etf-stat-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-800)
}

.etf-stat-val.pos {
  color: var(--green)
}

.etf-stat-val.neg {
  color: var(--red)
}

.etf-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto
}

/* ═══════════════════════════════════════ */
/*            STATS STRIP                  */
/* ═══════════════════════════════════════ */
.stats-strip {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 10% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 50%, rgba(96, 165, 250, 0.08) 0%, transparent 70%)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: all var(--transition)
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15)
}

.stat-big {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px
}

.stat-big span {
  color: var(--blue-300)
}

.stat-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  font-weight: 500
}

/* ═══════════════════════════════════════ */
/*             FEATURES                    */
/* ═══════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.feature-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
  transform: scaleX(0);
  transition: transform var(--transition)
}

.feature-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px)
}

.feature-card:hover::after {
  transform: scaleX(1)
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 28px;
  transition: all var(--transition-bounce)
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--blue-100) 0%, var(--blue-200) 100%)
}

.feature-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-800);
  margin-bottom: 12px
}

.feature-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75
}

/* ═══════════════════════════════════════ */
/*             CTA BAND                    */
/* ═══════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, var(--blue-600) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(59, 130, 246, 0.10) 0%, transparent 70%)
}

.cta-band::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  animation: heroOrb 10s ease-in-out infinite alternate
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1
}

.cta-band p {
  font-size: 18px;
  color: rgba(255, 255, 255, .60);
  margin-bottom: 40px;
  position: relative;
  z-index: 1
}

.email-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.email-form input {
  flex: 1;
  min-width: 230px;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: all var(--transition)
}

.email-form input::placeholder {
  color: rgba(255, 255, 255, .40)
}

.email-form input:focus {
  border-color: var(--blue-300);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
  background: rgba(255, 255, 255, .10)
}

/* ═══════════════════════════════════════ */
/*              FOOTER                     */
/* ═══════════════════════════════════════ */
.footer {
  background: var(--blue-900);
  padding: 72px 0 0;
  position: relative
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.2) 50%, transparent 100%)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px
}

.footer-brand .brand-name {
  color: var(--white);
  font-size: 24px
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  margin: 16px 0 28px;
  line-height: 1.75
}

.footer-socials {
  display: flex;
  gap: 10px
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: 16px;
  transition: all var(--transition)
}

.social-link:hover {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3)
}

.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px
}

.footer-links a:hover {
  color: var(--blue-300);
  transform: translateX(4px)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 24px 0;
  text-align: center
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .30);
  line-height: 1.7
}

.footer-bottom a {
  color: rgba(255, 255, 255, .45)
}

.footer-bottom a:hover {
  color: var(--blue-300)
}

.disclaimer-band {
  background: rgba(37, 99, 235, .08);
  border: 1px solid rgba(37, 99, 235, .12);
  padding: 18px 24px;
  border-radius: 10px;
  margin-bottom: 32px;
  font-size: 12px;
  color: rgba(255, 255, 255, .40);
  line-height: 1.7
}

/* ─── Page Header ─── */
.page-header {
  background: linear-gradient(155deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-700) 100%);
  padding: 68px 0 56px;
  position: relative;
  overflow: hidden
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 70%)
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 18px;
  position: relative
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, .45);
  transition: color var(--transition)
}

.page-breadcrumb a:hover {
  color: var(--blue-300)
}

.page-breadcrumb .sep {
  color: rgba(255, 255, 255, .25)
}

.page-header h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--white);
  position: relative
}

.page-header .subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, .55);
  margin-top: 12px;
  position: relative
}

/* ═══════════════════════════════════════ */
/*            ANIMATIONS                   */
/* ═══════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .6;
    transform: scale(1.5)
  }
}

@keyframes heroOrb {
  0% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(-30px, 20px)
  }
}

@keyframes particleFloat {
  0% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(-10px, 15px)
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0
  }

  100% {
    background-position: 200% 0
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.animate-fade-in {
  animation: fadeIn .5s ease both
}

.animate-fade-up {
  animation: fadeInUp .5s ease both
}

.etf-card:nth-child(1) {
  animation-delay: .05s
}

.etf-card:nth-child(2) {
  animation-delay: .10s
}

.etf-card:nth-child(3) {
  animation-delay: .15s
}

.etf-card:nth-child(4) {
  animation-delay: .20s
}

.etf-card:nth-child(5) {
  animation-delay: .25s
}

.etf-card:nth-child(6) {
  animation-delay: .30s
}

.etf-card:nth-child(7) {
  animation-delay: .35s
}

.etf-card:nth-child(8) {
  animation-delay: .40s
}

/* ─── Scroll Top ─── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  border: none;
  box-shadow: var(--shadow-blue);
  z-index: 999;
  font-size: 18px
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35)
}

/* ═══════════════════════════════════════ */
/*           COMPARE PAGE TABLE            */
/* ═══════════════════════════════════════ */
.compare-filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px
}

.compare-filters select {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition)
}

.compare-filters select:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08)
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  background: var(--white)
}

table#compare-table {
  width: 100%;
  border-collapse: collapse
}

table#compare-table th {
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .5px;
  background: var(--gray-50);
  border-bottom: 2px solid var(--gray-200);
  text-align: left;
  white-space: nowrap
}

table#compare-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100)
}

table#compare-table tr:hover td {
  background: var(--blue-50)
}

/* ═══════════════════════════════════════ */
/*            RESPONSIVE                   */
/* ═══════════════════════════════════════ */
@media(max-width:1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .etf-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-visual {
    display: none
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }
}

@media(max-width:768px) {
  .section {
    padding: 64px 0
  }

  .nav-links,
  .nav-search,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .filter-bar {
    top: 72px
  }

  .category-grid {
    grid-template-columns: 1fr
  }

  .etf-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .features-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .hero {
    padding: 80px 0 64px
  }

  .hero-stats {
    gap: 24px
  }
}

@media(max-width:480px) {
  .container {
    padding: 0 16px
  }

  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr
  }
}

/* ═══════════════════════════════════════ */
/*         DROPDOWN NAVIGATION             */
/* ═══════════════════════════════════════ */
.nav-dropdown {
  position: relative
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px
}

.dropdown-arrow {
  transition: transform var(--transition);
  flex-shrink: 0
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg)
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.14), 0 4px 16px rgba(10, 22, 40, 0.06);
  padding: 12px;
  min-width: 560px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.dropdown-section {
  padding: 8px 4px
}

.dropdown-section-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 4px 10px 10px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 6px
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit
}

.dropdown-item:hover {
  background: var(--blue-50)
}

.dropdown-item.active {
  background: var(--blue-50)
}

.di-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12)
}

.di-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-800)
}

.di-sub {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 1px
}

/* Mobile category links */
.mobile-cat-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: color var(--transition)
}

.mobile-cat-toggle:hover {
  color: var(--blue-500)
}

.mobile-cat-links {
  display: none;
  flex-direction: column
}

.mobile-cat-links.open {
  display: flex
}

.mobile-cat-links a {
  border-left: 3px solid var(--blue-100) !important
}


/* ═══════════════════════════════════════ */
/*       CATEGORY PAGE HERO               */
/* ═══════════════════════════════════════ */
.cat-page-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden
}

.cat-page-hero.gold-hero {
  background: linear-gradient(155deg, #1A1200 0%, #3D2900 35%, #6B4A00 65%, #886000 100%)
}

.cat-page-hero.silver-hero {
  background: linear-gradient(155deg, #0A0F14 0%, #1C2A35 35%, #2C4050 65%, #3A5060 100%)
}

.cat-page-hero.metal-hero {
  background: linear-gradient(155deg, #0F0A00 0%, #2A1F00 35%, #4A3800 65%, #5D4A10 100%)
}

.cat-page-hero.equity-hero {
  background: linear-gradient(155deg, var(--blue-900) 0%, var(--blue-800) 35%, var(--blue-700) 65%, #1B5FA8 100%)
}

.cat-page-hero.debt-hero {
  background: linear-gradient(155deg, #042825 0%, #0A4038 35%, #0D5449 65%, #0E6357 100%)
}

.cat-page-hero.intl-hero {
  background: linear-gradient(155deg, #0A1628 0%, #0F2444 35%, #1B3A66 65%, #1E4A80 100%)
}

.cat-page-hero.sectoral-hero {
  background: linear-gradient(155deg, #1A0A00 0%, #3D1A00 35%, #6B3000 65%, #885000 100%)
}

.cat-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1
}

.cat-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid;
  border-radius: 24px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px)
}

.gold-hero .cat-hero-badge {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.35);
  color: #F5D06E
}

.silver-hero .cat-hero-badge {
  background: rgba(168, 169, 173, 0.12);
  border-color: rgba(168, 169, 173, 0.35);
  color: #C0D0DC
}

.metal-hero .cat-hero-badge {
  background: rgba(184, 134, 11, 0.12);
  border-color: rgba(184, 134, 11, 0.35);
  color: #E8C060
}

.equity-hero .cat-hero-badge,
.debt-hero .cat-hero-badge,
.intl-hero .cat-hero-badge,
.sectoral-hero .cat-hero-badge {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
  color: var(--blue-200)
}

.cat-page-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.8px
}

.gold-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #D4AF37 0%, #F5D06E 50%, #FFF8DC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.silver-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #8A9BA8 0%, #C0D0DC 50%, #E8F0F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.metal-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 40%, #C0C0C0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.equity-hero h1 em,
.debt-hero h1 em,
.intl-hero h1 em,
.sectoral-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-200) 0%, var(--blue-300) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.cat-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 36px
}

.cat-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap
}

.cat-hero-stat {
  text-align: center
}

.cat-hero-stat-val {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--white)
}

.cat-hero-stat-key {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase
}

.gold-hero .cat-hero-stat-val { color: #F5D06E }
.silver-hero .cat-hero-stat-val { color: #C0D0DC }
.metal-hero .cat-hero-stat-val { color: #E8C060 }

.cat-hero-icon-big {
  font-size: 120px;
  opacity: 0.15;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  filter: blur(2px)
}

/* ═══════════════════════════════════════ */
/*            ETF DATA TABLE               */
/* ═══════════════════════════════════════ */
.etf-table-section {
  padding: 60px 0 80px;
  background: var(--off-white)
}

.table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap
}

.table-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 260px;
  transition: all var(--transition)
}

.table-search:focus-within {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08)
}

.table-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  font-family: var(--font);
  color: var(--gray-800);
  width: 100%
}

.table-count {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500
}

.etf-table-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md)
}

.etf-table {
  width: 100%;
  border-collapse: collapse
}

.etf-table thead th {
  background: var(--blue-900);
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 18px;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: color var(--transition)
}

.etf-table thead th:hover {
  color: var(--white)
}

.etf-table thead th.gold-head {
  background: linear-gradient(90deg, #2A1C00, #3D2900)
}

.etf-table thead th.silver-head {
  background: linear-gradient(90deg, #0F1E2A, #1C3040)
}

.etf-table thead th.metal-head {
  background: linear-gradient(90deg, #1A1200, #3D2900)
}

.etf-table thead th .sort-icon {
  display: inline-block;
  margin-left: 4px;
  opacity: 0.5;
  font-size: 10px;
  transition: opacity var(--transition)
}

.etf-table thead th:hover .sort-icon {
  opacity:1
}

.etf-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition)
}

.etf-table tbody tr:last-child {
  border-bottom: none
}

.etf-table tbody tr:hover {
  background: var(--blue-50)
}

.etf-table tbody td {
  padding: 16px 18px;
  font-size: 14px;
  color: var(--gray-800);
  white-space: nowrap
}

.etf-table .etf-name-cell {
  white-space: normal;
  min-width: 200px
}

.etf-table .etf-name-main {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-800);
  margin-bottom: 2px
}

.etf-table .etf-name-sym {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 600;
  font-family: 'Courier New', monospace
}

.etf-amc-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  background: var(--blue-50);
  color: var(--blue-600)
}

.gold-row .etf-amc-badge {
  background: #FEF3C7;
  color: #92400E
}

.silver-row .etf-amc-badge {
  background: #F0F4F8;
  color: #3A5060
}

.metal-row .etf-table tbody tr:hover {
  background: #FFFBF0
}

.ret-pos {
  color: var(--green);
  font-weight: 700
}

.ret-neg {
  color: var(--red);
  font-weight: 700
}

.ret-na {
  color: var(--gray-400);
  font-size: 12px
}

.expense-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700
}

.expense-low {
  background: #ECFDF5;
  color: #065F46
}

.expense-mid {
  background: #FFFBEB;
  color: #92400E
}

.expense-high {
  background: #FEF2F2;
  color: #991B1B
}

/* ═══════════════════════════════════════ */
/*          CATEGORY INFO SECTIONS         */
/* ═══════════════════════════════════════ */
.cat-info-section {
  padding: 72px 0;
  background: var(--white)
}

.cat-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start
}

.cat-info-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--blue-900);
  margin-bottom: 16px;
  line-height: 1.25
}

.cat-info-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px
}

.cat-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px
}

.pros-box,
.cons-box {
  padding: 20px;
  border-radius: var(--radius);
  border: 1.5px solid
}

.pros-box {
  background: #ECFDF5;
  border-color: #A7F3D0
}

.cons-box {
  background: #FEF2F2;
  border-color: #FECACA
}

.pros-box-title {
  font-size: 13px;
  font-weight: 800;
  color: #065F46;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px
}

.cons-box-title {
  font-size: 13px;
  font-weight: 800;
  color: #991B1B;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px
}

.pros-box li,
.cons-box li {
  font-size: 13px;
  list-style: none;
  padding: 3px 0;
  color: var(--gray-800)
}

.pros-box li::before { content: '✓ '; color: var(--green-dark); font-weight: 700 }
.cons-box li::before { content: '✗ '; color: var(--red); font-weight: 700 }

.cat-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px
}

.cat-stat-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition)
}

.cat-stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.cat-stat-card .big-val {
  font-size: 32px;
  font-weight: 900;
  color: var(--blue-800);
  margin-bottom: 6px
}

.cat-stat-card .big-label {
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px
}

.gold-stat .big-val { color: #B8860B }
.silver-stat .big-val { color: #607080 }
.metal-stat .big-val { color: #8B6914 }

/* ═══════════════════════════════════════ */
/*        PAGE HEADER / BREADCRUMB         */
/* ═══════════════════════════════════════ */
.page-header {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 60%, var(--blue-700) 100%);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
  text-align: left
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(59,130,246,0.12) 0%, transparent 70%)
}

.page-header .container { position: relative; z-index: 1 }

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.45)
}

.page-breadcrumb a {
  color: var(--blue-300);
  font-weight: 600
}

.page-breadcrumb a:hover { color: var(--white) }

.page-breadcrumb .sep {
  color: rgba(255,255,255,.3)
}

.page-header h1 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -.5px
}

.page-header .subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  line-height: 1.7
}

/* ═══════════════════════════════════════ */
/*         COMPARISON TABLE                */
/* ═══════════════════════════════════════ */
.vs-section {
  padding: 72px 0;
  background: var(--off-white)
}

.vs-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm)
}

.vs-table th {
  background: var(--blue-900);
  color: var(--white);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  text-align: left
}

.vs-table th:nth-child(2) { background: linear-gradient(90deg, #2A1C00, #4A3000); color: #F5D06E }
.vs-table th:nth-child(3) { background: linear-gradient(90deg, #0F1A22, #1C3040); color: #C0D0DC }

.vs-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600)
}

.vs-table td:first-child {
  font-weight: 600;
  color: var(--gray-800)
}

.vs-table tr:last-child td { border-bottom: none }

.vs-table tr:nth-child(even) td { background: var(--off-white) }

/* ═══════════════════════════════════════ */
/*       ADDITIONAL MOBILE FIXES           */
/* ═══════════════════════════════════════ */
@media(max-width:900px) {
  .nav-dropdown-menu {
    display: none !important
  }

  .cat-hero-inner {
    grid-template-columns: 1fr
  }

  .cat-info-grid {
    grid-template-columns: 1fr
  }

  .cat-pros-cons {
    grid-template-columns: 1fr
  }

  .cat-stats-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .etf-table-wrap {
    overflow-x: auto
  }

  .table-toolbar {
    flex-direction: column;
    align-items: flex-start
  }

  .table-search {
    width: 100%
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .cat-stats-row {
    grid-template-columns: 1fr 1fr
  }

  .category-grid {
    grid-template-columns: 1fr
  }

  .cat-page-hero {
    padding: 56px 0 40px
  }
}