/* ============================================
   ZENITH SUM - PREMIUM INVESTMENT PLATFORM
   Grayscale-Inspired | White/Orange/Green
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #fafbfc;
  --bg-glass: rgba(255, 255, 255, 0.9);
  --bg-glass-light: rgba(255, 255, 255, 0.6);

  --accent-orange: #f97316;
  --accent-orange-light: #fb923c;
  --accent-orange-dim: rgba(249, 115, 22, 0.08);
  --accent-orange-glow: rgba(249, 115, 22, 0.12);
  --accent-orange-strong: rgba(249, 115, 22, 0.2);

  --accent-blue: #3b82f6;
  --accent-blue-dim: rgba(59, 130, 246, 0.08);
  --accent-blue-glow: rgba(59, 130, 246, 0.12);

  --accent-green: #22c55e;
  --accent-green-dim: rgba(34, 197, 94, 0.08);
  --accent-green-glow: rgba(34, 197, 94, 0.12);

  --accent-teal: #0d9488;
  --accent-teal-dim: rgba(13, 148, 136, 0.08);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-dim: #cbd5e1;

  --border-subtle: rgba(0, 0, 0, 0.04);
  --border-light: rgba(0, 0, 0, 0.07);
  --border-card: rgba(0, 0, 0, 0.08);
  --border-accent: rgba(249, 115, 22, 0.2);

  --success: #22c55e;
  --success-dim: rgba(34, 197, 94, 0.08);
  --danger: #ef4444;
  --danger-dim: rgba(239, 68, 68, 0.08);
  --warning: #f59e0b;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
  --shadow-orange: 0 4px 20px var(--accent-orange-glow);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'General Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent-orange-dim); color: var(--accent-orange-light); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== UTILITY ===== */
.gradient-text {
  background: linear-gradient(135deg, #f8fafc 0%, #94a3b8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-orange {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-blue {
  background: linear-gradient(135deg, var(--accent-blue), #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-green {
  background: linear-gradient(135deg, var(--accent-green), #34d399);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center { text-align: center; }
.section-padding { padding: 120px 0; }
.section-padding-sm { padding: 80px 0; }
.section-padding-lg { padding: 160px 0; }

/* ===== TOP BAR (Light) ===== */
.nav-top-bar {
  display: block; background: #f8f9fc;
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
}
.site-navbar.scrolled .nav-top-bar { display: none; }
.nav-top-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-top-links { display: flex; gap: 24px; }
.nav-top-links a {
  font-size: 11px; font-weight: 500; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: var(--transition);
}
.nav-top-links a:hover { color: var(--accent-orange); }
.nav-top-login {
  font-size: 11px; font-weight: 600; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: var(--transition); display: flex; align-items: center; gap: 4px;
}
.nav-top-login:hover { color: var(--accent-orange); }

/* ===== NAV SEARCH ===== */
.nav-search-btn {
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 16px;
  transition: var(--transition);
}
.nav-search-btn:hover { background: var(--accent-orange-dim); color: var(--text-primary); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; font-family: var(--font);
  border: none; cursor: pointer; transition: var(--transition);
  line-height: 1.4; text-decoration: none !important;
  position: relative; overflow: hidden;
}
.btn-sm { padding: 10px 22px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 16px 40px; font-size: 16px; }
.btn-xl { padding: 18px 48px; font-size: 17px; border-radius: 12px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), #fb923c);
  color: #fff !important; font-weight: 700;
  box-shadow: 0 4px 24px var(--accent-orange-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--accent-orange-glow); }

.btn-outline {
  background: transparent; color: var(--text-primary) !important;
  border: 1.5px solid var(--border-card);
}
.btn-outline:hover { border-color: var(--accent-orange); color: var(--accent-orange) !important; background: var(--accent-orange-dim); }

.btn-ghost {
  background: transparent; color: var(--text-secondary) !important;
}
.btn-ghost:hover { background: var(--accent-orange-dim); color: var(--text-primary) !important; }

/* ===== NAVBAR (White Glass) ===== */
.site-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-light);
}
.site-navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; display: block; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-orange), #fb923c);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; font-weight: 800;
  box-shadow: 0 2px 12px var(--accent-orange-glow);
}
.logo-text {
  font-size: 22px; font-weight: 800; color: #fff;
  letter-spacing: -0.5px; font-family: var(--font-display);
}
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: var(--transition); position: relative;
}
.nav-link:hover { color: var(--text-primary); background: var(--accent-orange-dim); }
.nav-link.active { color: var(--accent-orange); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; border-radius: 2px; background: var(--accent-orange);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 24px; cursor: pointer; padding: 4px; }

/* ===== MOBILE FULLSCREEN MENU ===== */
.nav-close { display: none; }
.nav-menu-links { display: flex; align-items: center; gap: 2px; }
.nav-menu-cta { display: none; }

@media (max-width: 768px) {
  .nav-top-bar { display: none; }
  .nav-container { height: 64px; }
  .nav-logo img { height: 38px; }

  .nav-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; min-height: 100vh;
    z-index: 9999;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    display: flex !important;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; padding: 80px 24px 40px;
    opacity: 0; visibility: hidden;
    transform: scale(0.96);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.35s;
  }
  .nav-menu.active {
    opacity: 1; visibility: visible; transform: scale(1);
  }

  .nav-close {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 16px; right: 20px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent-orange-dim); border: none;
    color: var(--text-muted); font-size: 22px; cursor: pointer;
    transition: var(--transition);
  }
  .nav-close:hover { background: rgba(0,0,0,0.06); transform: rotate(90deg); color: var(--text-primary); }

  .nav-menu-links {
    flex-direction: column; gap: 6px; width: 100%; max-width: 320px;
  }
  .nav-menu-links .nav-link {
    width: 100%; text-align: center; padding: 14px 20px;
    font-size: 16px; font-weight: 700; color: var(--text-muted);
    border-radius: 12px; letter-spacing: 1px;
    transform: translateY(12px); opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-menu.active .nav-menu-links .nav-link {
    transform: translateY(0); opacity: 1;
  }
  .nav-menu.active .nav-menu-links .nav-link:nth-child(1) { transition-delay: 0.05s; }
  .nav-menu.active .nav-menu-links .nav-link:nth-child(2) { transition-delay: 0.10s; }
  .nav-menu.active .nav-menu-links .nav-link:nth-child(3) { transition-delay: 0.15s; }
  .nav-menu.active .nav-menu-links .nav-link:nth-child(4) { transition-delay: 0.20s; }
  .nav-menu.active .nav-menu-links .nav-link:nth-child(5) { transition-delay: 0.25s; }
  .nav-menu.active .nav-menu-links .nav-link:nth-child(6) { transition-delay: 0.30s; }
  .nav-menu.active .nav-menu-links .nav-link:nth-child(7) { transition-delay: 0.35s; }

  .nav-menu-links .nav-link:hover { color: var(--text-primary); background: var(--accent-orange-dim); }
  .nav-menu-links .nav-link.active { color: #f97316; background: rgba(249,115,22,0.10); }
  .nav-menu-links .nav-link.active::after { display: none; }

  .nav-menu-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; max-width: 320px; margin-top: 12px;
    padding: 14px 20px; border-radius: 12px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff; font-size: 15px; font-weight: 700; letter-spacing: 0.5px;
    border: none; cursor: pointer; transition: var(--transition);
    transform: translateY(12px); opacity: 0;
  }
  .nav-menu.active .nav-menu-cta {
    transform: translateY(0); opacity: 1; transition-delay: 0.40s;
  }
  .nav-menu-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249,115,22,0.3); }

  .nav-actions .btn:not(.nav-toggle) { display: none; }
  .nav-toggle { display: block; }
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  position: relative; width: 100%; height: 80px; overflow: hidden;
  margin-top: -2px; pointer-events: none;
}
.wave-divider svg { position: absolute; bottom: 0; width: 100%; height: 80px; }
.wave-divider.gold svg path { fill: var(--accent-orange-dim); }
.wave-divider.blue svg path { fill: var(--accent-blue-dim); }
.wave-divider.green svg path { fill: var(--accent-green-dim); }
.wave-divider.subtle svg path { fill: var(--bg-secondary); }

/* ===== HERO (Grayscale Premium) ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--bg-primary);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, var(--accent-orange-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 30%, var(--accent-blue-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, var(--accent-green-glow) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: 0.12;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}
.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 140px 24px 80px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: var(--radius-full);
  background: var(--accent-orange-dim); border: 1px solid var(--border-accent);
  font-size: 11px; font-weight: 600; color: var(--accent-orange);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 58px; font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 20px;
}
.hero-title .highlight { color: var(--accent-orange); }
.hero-subtitle {
  font-size: 18px; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 800;
}
.hero-stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

.hero-visual { position: relative; min-height: 480px; }
.hero-card-float {
  position: absolute; background: var(--bg-glass);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-xl);
  animation: floatY 6s ease-in-out infinite;
  min-width: 200px;
}
.hero-card-float:nth-child(1) { top: 5%; right: 0; animation-delay: 0s; }
.hero-card-float:nth-child(2) { bottom: 30%; left: -10px; animation-delay: -2s; }
.hero-card-float:nth-child(3) { bottom: 5%; right: 10%; animation-delay: -4s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.card-growth .hero-card-icon { background: var(--accent-orange-dim); color: var(--accent-orange); }
.card-security .hero-card-icon { background: var(--accent-green-dim); color: var(--accent-green); }
.card-blue .hero-card-icon { background: var(--accent-blue-dim); color: var(--accent-blue); }
.hero-card-label { font-size: 12px; color: var(--text-muted); }
.hero-card-value { font-size: 20px; font-weight: 700; }
.hero-card-value.positive { color: var(--accent-green); }
.hero-card-value.orange { color: var(--accent-orange); }

.hero-chart-card {
  margin-top: 60px;
  background: var(--bg-glass); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 28px;
  box-shadow: var(--shadow-xl);
}
.hero-chart-card .chart-header { display: flex; justify-content: space-between; margin-bottom: 20px; }
.hero-chart-card .chart-label { font-size: 13px; color: var(--text-muted); }
.hero-chart-card .chart-value { font-size: 13px; color: var(--accent-green); font-weight: 600; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 130px; }
.chart-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--accent-orange), var(--accent-orange-dim));
  min-height: 20px; transition: var(--transition);
  animation: barRise 1.2s ease-out forwards;
}
.chart-bar:nth-child(1) { height: 30%; animation-delay: 0.05s; }
.chart-bar:nth-child(2) { height: 45%; animation-delay: 0.1s; }
.chart-bar:nth-child(3) { height: 35%; animation-delay: 0.15s; }
.chart-bar:nth-child(4) { height: 55%; animation-delay: 0.2s; }
.chart-bar:nth-child(5) { height: 42%; animation-delay: 0.25s; }
.chart-bar:nth-child(6) { height: 65%; animation-delay: 0.3s; }
.chart-bar:nth-child(7) { height: 50%; animation-delay: 0.35s; }
.chart-bar:nth-child(8) { height: 75%; animation-delay: 0.4s; }
.chart-bar:nth-child(9) { height: 55%; animation-delay: 0.45s; }
.chart-bar:nth-child(10) { height: 85%; animation-delay: 0.5s; }
.chart-bar:nth-child(11) { height: 60%; animation-delay: 0.55s; }
.chart-bar:nth-child(12) { height: 92%; animation-delay: 0.6s; }
@keyframes barRise { from { height: 0; } }

.hero-video-wrapper {
  margin-top: 40px;
  background: var(--bg-glass); backdrop-filter: blur(20px);
  border: 1px solid var(--border-light); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-xl);
}
.hero-video-container { position: relative; padding-bottom: 56.25%; height: 0; }
.hero-video-container iframe,
.hero-video-container video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.hero-video-label {
  padding: 16px 20px; font-size: 13px; color: var(--text-secondary);
  border-top: 1px solid var(--border-light);
}

/* ===== HERO IMAGE VARIANT ===== */
.hero-image-layout {
  min-height: 90vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-image-bg {
  position: absolute; inset: 0;
}
.hero-image-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,17,32,0.94) 0%, rgba(15,23,42,0.5) 50%, transparent 100%);
}
.hero-image-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;   padding: 160px 24px 100px;
  color: #fff;
}
.hero-image-content .hero-badge {
  background: rgba(249,115,22,0.2); border-color: rgba(249,115,22,0.3); color: var(--accent-orange-light);
}
.hero-image-content .hero-title { color: #fff; }
.hero-image-content .hero-title .highlight { color: var(--accent-orange-light); }
.hero-image-content .hero-subtitle { color: rgba(255,255,255,0.7); }
.hero-image-content .hero-stat-value { color: #fff; }
.hero-image-content .hero-stat-label { color: rgba(255,255,255,0.5); }

/* ===== HERO REPORT BAR ===== */
.hero-report-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(11,17,32,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-report-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
}
.hero-report-label {
  font-size: 12px; font-weight: 600; color: var(--accent-orange-light);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px;
}
.hero-report-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600; color: #fff;
  line-height: 1.3;
}
.hero-report-nav { display: flex; gap: 12px; }
.hero-report-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3); background: transparent;
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); font-size: 14px;
}
.hero-report-arrow:hover { border-color: var(--accent-orange); color: var(--accent-orange); background: rgba(249,115,22,0.1); }
.hero-report-progress {
  display: flex; gap: 4px; padding-bottom: 20px;
}
.hero-report-progress-bar {
  flex: 1; height: 2px; border-radius: 1px;
  background: rgba(255,255,255,0.15); transition: var(--transition);
}
.hero-report-progress-bar.active { background: var(--accent-orange); }

/* ===== CONSULTANT CTA ===== */
.consultant-cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 80px 24px; position: relative; overflow: hidden;
}
.consultant-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(249,115,22,0.06) 50%, transparent 60%),
    repeating-linear-gradient(135deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px);
}
.consultant-cta .container { position: relative; z-index: 2; }
.consultant-cta-title {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 800; line-height: 1.15;
  color: #fff; margin-bottom: 32px; letter-spacing: -1px;
}

/* ===== PAGE HERO (Dark) ===== */
.page-hero {
  padding: 200px 0 100px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, #0b1120 0%, #1a2332 50%, #0f172a 100%);
}
.page-hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(249,115,22,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(59,130,246,0.08) 0%, transparent 50%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 800; letter-spacing: -1px;
  margin-bottom: 16px; color: #fff;
}
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto; }
.page-hero .breadcrumb { margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.4); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: var(--accent-orange-light); }
.page-hero .breadcrumb span { color: var(--accent-orange-light); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-header-left { text-align: left; max-width: 600px; margin: 0 0 48px; }
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: var(--radius-full);
  background: var(--accent-orange-dim); border: 1px solid var(--border-accent);
  font-size: 11px; font-weight: 600; color: var(--accent-orange);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.section-badge.blue { background: var(--accent-blue-dim); border-color: var(--accent-blue-glow); color: var(--accent-blue); }
.section-badge.green { background: var(--accent-green-dim); border-color: rgba(34,197,94,0.15); color: var(--accent-green); }
.section-title {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 800; line-height: 1.2;
  letter-spacing: -1px; margin-bottom: 16px;
}
.section-subtitle { font-size: 17px; color: var(--text-secondary); line-height: 1.7; }

/* ===== STACK SECTION (Grayscale "Introducing The Stack") ===== */
.stack-section {
  padding-top: 180px; padding-bottom: 80px;
  background: var(--bg-primary);
}
.stack-content { max-width: 720px; }
.stack-content .section-badge { margin-bottom: 16px; }
.stack-content h2 {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 20px;
}
.stack-content h2 a {
  color: inherit; text-decoration: underline;
  text-decoration-color: var(--accent-orange-dim);
  text-underline-offset: 6px;
}
.stack-content h2 a:hover { color: var(--accent-orange); }
.stack-content p {
  font-size: 18px; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 24px; max-width: 640px;
}
.stack-content .stack-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--text-primary);
  transition: var(--transition);
}
.stack-content .stack-link:hover { color: var(--accent-orange); gap: 12px; }

/* ===== REPORT STACK (Grayscale stacked reports) ===== */
.report-stack { display: flex; flex-direction: column; gap: 0; }
.report-stack-item {
  padding: 28px 0; border-bottom: 1px solid var(--border-light);
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; transition: var(--transition);
  cursor: pointer;
}
.report-stack-item:first-child { padding-top: 0; }
.report-stack-item:last-child { border-bottom: none; }
.report-stack-item:hover { opacity: 0.7; }
.report-stack-item .report-cat {
  font-size: 11px; font-weight: 600; color: var(--accent-orange);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px;
}
.report-stack-item .report-title {
  font-size: 18px; font-weight: 600; line-height: 1.4;
  color: var(--text-primary); margin-bottom: 8px;
  flex: 1;
}
.report-stack-item .report-desc {
  font-size: 14px; color: var(--text-secondary); line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.report-stack-item .report-arrow {
  flex-shrink: 0; margin-top: 4px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-tertiary); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--transition);
}
.report-stack-item:hover .report-arrow {
  background: var(--accent-orange-dim); color: var(--accent-orange);
}

/* ===== SPLIT SECTION ===== */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-image {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; min-height: 400px;
}
.split-image img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.split-image .img-placeholder {
  width: 100%; min-height: 400px;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-elevated, #e2e8f0) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; color: var(--accent-orange-dim);
}
.split-image .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.08), transparent);
}
.split-image .floating-badge {
  position: absolute; bottom: 24px; left: 24px;
  padding: 12px 20px; border-radius: var(--radius);
  background: var(--bg-glass); backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  font-size: 14px; font-weight: 600; color: var(--accent-orange);
}
.split-content p { color: var(--text-secondary); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.split-content ul { list-style: none; padding: 0; }
.split-content ul li {
  padding: 10px 0; display: flex; align-items: flex-start; gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary); font-size: 15px;
}
.split-content ul li:last-child { border-bottom: none; }
.split-content ul li i { color: var(--accent-green); margin-top: 3px; font-size: 14px; flex-shrink: 0; }

/* ===== GRAYSCALE RESEARCH CARDS ===== */
.research-section { overflow: hidden; }
.research-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.research-card {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.research-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--border-accent); }
.research-card-img {
  position: relative; width: 100%; padding-bottom: 56.25%; overflow: hidden;
}
.research-card-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.6s ease;
}
.research-card:hover .research-card-img img { transform: scale(1.05); }
.research-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.research-card-cat {
  font-size: 11px; font-weight: 600; color: var(--accent-orange);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px;
}
.research-card-title {
  font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.research-card-desc {
  font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden; flex: 1;
}
.research-card-meta {
  display: flex; align-items: center; gap: 16px; padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px; color: var(--text-muted);
}
.research-card-meta i { font-size: 12px; margin-right: 4px; }

/* Research Carousel (Embla-style) */
.research-carousel { overflow: hidden; position: relative; }
.research-carousel-track { display: flex; gap: 24px; }
.research-carousel-slide { flex: 0 0 calc(33.333% - 16px); min-width: 0; }

/* ===== BENTO GRID ===== */
.bento-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto); gap: 20px;
}
.bento-item {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-xl); padding: 36px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.bento-item:hover { border-color: var(--border-accent); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.bento-item.wide { grid-column: span 2; }
.bento-item .bento-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
  background: var(--accent-orange-dim); color: var(--accent-orange);
}
.bento-item .bento-icon.blue { background: var(--accent-blue-dim); color: var(--accent-blue); }
.bento-item .bento-icon.green { background: var(--accent-green-dim); color: var(--accent-green); }
.bento-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.bento-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.bento-item .bento-stat {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 800; line-height: 1; margin-bottom: 8px;
}

/* ===== ABOUT CARDS ===== */
.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-card {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-xl); padding: 36px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
  opacity: 0; transition: var(--transition);
}
.about-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.about-card:hover::before { opacity: 1; }
.about-card-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
  background: var(--accent-orange-dim); color: var(--accent-orange);
}
.about-card-icon.blue { background: var(--accent-blue-dim); color: var(--accent-blue); }
.about-card-icon.green { background: var(--accent-green-dim); color: var(--accent-green); }
.about-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.about-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* ===== PLANS ===== */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; }
.plan-card {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
  position: relative;
}
.plan-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
  opacity: 0.6;
}
.plan-card.featured {
  border-color: var(--border-accent);
  box-shadow: 0 0 40px var(--accent-orange-glow);
  transform: scale(1.02);
}
.plan-card.featured::before { opacity: 1; }
.plan-card:hover { transform: translateY(-6px); border-color: var(--border-accent); box-shadow: var(--shadow-xl); }
.plan-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.plan-card-header { padding: 36px 32px 24px; text-align: center; }
.plan-card-header .featured-tag {
  display: inline-block; padding: 4px 14px; border-radius: var(--radius-full);
  background: var(--accent-orange-dim); border: 1px solid var(--border-accent);
  font-size: 11px; font-weight: 600; color: var(--accent-orange);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px;
}
.plan-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-orange-dim), var(--accent-blue-dim));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 28px; color: var(--accent-orange);
}
.plan-name { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.plan-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; padding: 0 16px; }
.plan-card-body { padding: 0 32px 24px; flex: 1; }
.plan-roi {
  text-align: center; padding: 24px;
  background: linear-gradient(135deg, var(--accent-orange-dim), rgba(249,115,22,0.04));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius); margin-bottom: 24px;
}
.plan-roi-value { display: block; font-size: 40px; font-weight: 800; color: var(--accent-orange); line-height: 1; }
.plan-roi-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; display: block; }
.plan-details { display: grid; gap: 0; }
.plan-detail { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-subtle); }
.plan-detail:last-child { border-bottom: none; }
.plan-detail-label { font-size: 14px; color: var(--text-muted); }
.plan-detail-value { font-size: 14px; font-weight: 600; }
.plan-card-footer { padding: 20px 32px; border-top: 1px solid var(--border-light); }
.empty-plans { grid-column: 1 / -1; text-align: center; padding: 80px; background: var(--bg-card); border: 1px dashed var(--border-card); border-radius: var(--radius-2xl); }
.empty-plans i { font-size: 48px; color: var(--text-dim); margin-bottom: 16px; }

.plan-compare {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--bg-card); border-radius: var(--radius-xl);
  overflow: hidden; border: 1px solid var(--border-card);
}
.plan-compare th {
  padding: 20px 24px; text-align: left; font-size: 13px;
  font-weight: 600; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.5px; background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-light);
}
.plan-compare td {
  padding: 16px 24px; font-size: 14px; color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}
.plan-compare tr:last-child td { border-bottom: none; }
.plan-compare tr:hover td { background: rgba(0,0,0,0.02); }
.plan-compare td:first-child { font-weight: 600; color: var(--text-primary); }
.plan-compare td i.fa-check { color: var(--accent-green); }

/* ===== STEPS / TIMELINE ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  text-align: center; padding: 40px 28px;
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-xl); position: relative; transition: var(--transition);
}
.step-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.step-number {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 64px; font-weight: 900; color: var(--accent-orange-dim);
  line-height: 1;
}
.step-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-orange-dim), var(--accent-blue-dim));
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 26px; color: var(--accent-orange);
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; position: relative; z-index: 1; }

.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 14px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--accent-orange), var(--accent-blue), transparent);
}
.timeline-item { position: relative; padding-bottom: 40px; padding-left: 20px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -34px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent-orange); border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 4px var(--accent-orange-dim);
}
.timeline-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.timeline-item .timeline-date {
  font-size: 12px; color: var(--accent-orange); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px;
}
.timeline-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-item {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius); padding: 28px; transition: var(--transition);
}
.feature-item:hover { border-color: var(--accent-blue); transform: translateY(-3px); }
.feature-item .dot {
  width: 10px; height: 10px; border-radius: 50%; margin-bottom: 16px;
}
.feature-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.feature-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-xl); padding: 36px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(ellipse, var(--accent-orange-dim) 0%, transparent 70%);
  pointer-events: none;
}
.why-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-orange-dim); color: var(--accent-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-item {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius); padding: 24px; transition: var(--transition);
  text-align: center;
}
.value-item:hover { border-color: var(--accent-orange); }
.value-item i { font-size: 28px; color: var(--accent-orange); margin-bottom: 12px; }
.value-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.value-item p { font-size: 13px; color: var(--text-muted); }

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border-card);
}
.stat-block {
  text-align: center; padding: 40px 24px;
  background: var(--bg-card); position: relative;
}
.stat-block:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%;
  width: 1px; background: var(--border-light);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800; line-height: 1; margin-bottom: 6px;
}
.stat-number.orange { color: var(--accent-orange); }
.stat-number.green { color: var(--accent-green); }
.stat-number.blue { color: var(--accent-blue); }
.stat-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== GRAYSCALE-STYLE STATS (Large Numbers) ===== */
.stats-grayscale {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.stats-grayscale .stat-item {
  text-align: left; padding: 48px 32px;
  border-right: 1px solid var(--border-light);
  position: relative;
}
.stats-grayscale .stat-item:last-child { border-right: none; }
.stats-grayscale .stat-number-large {
  font-family: var(--font-display);
  font-size: 72px; font-weight: 300; line-height: 1;
  color: var(--text-primary); letter-spacing: -2px;
  margin-bottom: 12px;
}
.stats-grayscale .stat-desc {
  font-size: 15px; color: var(--text-secondary); line-height: 1.6;
  max-width: 280px;
}
.stats-grayscale .stat-footnote {
  font-size: 12px; color: var(--text-muted); margin-top: 16px;
  line-height: 1.5;
}

/* ===== EMPOWERING INVESTORS (Grayscale Split) ===== */
.empowering-split {
  display: grid; grid-template-columns: 0.45fr 0.55fr; min-height: 600px;
}
.empowering-visual {
  position: relative; overflow: hidden;
  background: #1a1a2e;
}
.empowering-visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(249,115,22,0.08) 50%, transparent 60%),
    linear-gradient(45deg, transparent 40%, rgba(249,115,22,0.05) 50%, transparent 60%),
    repeating-linear-gradient(135deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
}
.empowering-visual::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(225deg, transparent 30%, rgba(249,115,22,0.06) 40%, transparent 50%);
}
.empowering-content {
  padding: 80px 64px; display: flex; flex-direction: column; justify-content: center;
}
.empowering-content .empowering-title {
  font-family: var(--font-serif);
  font-size: 48px; font-weight: 400; line-height: 1.15;
  color: var(--text-primary); margin-bottom: 48px;
  letter-spacing: -0.5px;
}
.empowering-list { list-style: none; padding: 0; margin: 0; }
.empowering-list li {
  padding: 28px 0; border-bottom: 1px solid var(--border-light);
}
.empowering-list li:first-child { padding-top: 0; }
.empowering-list li:last-child { border-bottom: none; }
.empowering-list h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 10px;
}
.empowering-list p {
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
  max-width: 480px;
}

/* ===== INVESTMENT SOLUTIONS (Product Cards) ===== */
.solutions-tabs {
  display: flex; gap: 0; margin-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
}
.solutions-tabs::-webkit-scrollbar { display: none; }
.solutions-tab {
  padding: 14px 28px; font-size: 13px; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px;
  border: none; background: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  cursor: pointer; transition: var(--transition);
  position: relative; white-space: nowrap; flex-shrink: 0;
}
.solutions-tab:hover { color: var(--accent-orange); }
.solutions-tab.active {
  color: var(--accent-orange); border-bottom-color: var(--accent-orange);
}
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.product-card {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--border-accent); transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.product-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 20px;
}
.product-card-ticker {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; color: var(--text-primary);
  letter-spacing: -0.5px;
}
.product-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-orange-dim); color: var(--accent-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.product-card-name {
  font-size: 14px; color: var(--text-secondary); margin-bottom: 24px;
  line-height: 1.5;
}
.product-card-price {
  font-size: 24px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 4px;
}
.product-card-date {
  font-size: 12px; color: var(--text-muted);
}
.product-card-arrow {
  position: absolute; bottom: 32px; right: 32px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-tertiary); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--transition);
}
.product-card:hover .product-card-arrow {
  background: var(--accent-orange-dim); color: var(--accent-orange);
}

/* ===== REPORT CARDS (Research Slider) ===== */
.report-card { transition: var(--transition); }
.report-card:hover {
  border-color: var(--border-accent) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}
.report-card img { transition: transform 0.4s ease; }

/* ===== SECTION DIVIDER (Clean) ===== */
.section-divider {
  width: 100%; height: 1px; background: var(--border-light);
}

/* ===== NEWSLETTER (Grayscale Style) ===== */
.newsletter-section {
  padding: 80px 0;
}
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 60px;
}
.newsletter-content { flex: 1; max-width: 560px; }
.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800; line-height: 1.2;
  letter-spacing: -0.5px; margin-bottom: 12px;
}
.newsletter-content p {
  font-size: 16px; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex; gap: 12px; max-width: 480px;
}
.newsletter-form input {
  flex: 1; padding: 16px 20px;
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius); color: var(--text-primary);
  font-size: 15px; font-family: var(--font); outline: none;
  transition: var(--transition);
}
.newsletter-form input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px var(--accent-orange-dim);
}
.newsletter-badge {
  flex: 0 0 auto;
  padding: 20px 32px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border-card);
  font-size: 14px; font-weight: 600; color: var(--text-primary);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.newsletter-badge i { color: var(--accent-orange); font-size: 18px; }

/* ===== FOOTER (Grayscale Dark) ===== */
.site-footer {
  background: #f4f3ef; border-top: 1px solid var(--border-light);
  padding: 80px 0 0; position: relative;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 22px; font-weight: 800; margin-bottom: 20px;
}
.footer-brand .logo img { height: 32px; width: auto; display: block; }
.footer-brand .logo-mark {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-orange), #fb923c);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff; font-weight: 800;
  box-shadow: 0 2px 12px var(--accent-orange-glow);
}
.footer-brand p {
  font-size: 14px; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 20px;
}
.footer-subscribe-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  background: transparent; border: 1.5px solid var(--border-card);
  color: var(--text-primary) !important; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: var(--transition);
}
.footer-subscribe-btn:hover {
  border-color: var(--accent-orange); color: var(--accent-orange) !important;
  background: var(--accent-orange-dim);
}
.footer-col h4 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--text-secondary);
  margin-bottom: 12px; transition: var(--transition);
}
.footer-col a:hover { color: var(--accent-orange); }
.footer-contact p {
  font-size: 14px; color: var(--text-secondary); margin-bottom: 12px;
}
.footer-contact i {
  width: 20px; color: var(--accent-orange); margin-right: 8px;
}
.footer-social {
  display: flex; gap: 10px; margin-top: 24px;
}
.footer-social a {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 15px; transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--accent-orange); color: var(--accent-orange);
  background: var(--accent-orange-dim); transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid var(--border-light); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-legal-links {
  display: flex; gap: 24px;
}
.footer-legal-links a {
  font-size: 13px; color: var(--text-muted); transition: var(--transition);
}
.footer-legal-links a:hover { color: var(--accent-orange); }

/* ===== TESTIMONIAL ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-xl); padding: 36px; transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-accent); transform: translateY(-3px); }
.testimonial-card .stars { color: var(--accent-orange); font-size: 14px; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.8; font-style: italic; margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-orange-dim), var(--accent-blue-dim));
  border: 2px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--accent-orange);
}
.testimonial-author .name { font-size: 14px; font-weight: 600; }
.testimonial-author .role { font-size: 12px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-accent); }
.faq-item.active { border-color: var(--border-accent); }
.faq-question {
  padding: 20px 24px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 600; transition: var(--transition);
  user-select: none; gap: 16px;
}
.faq-question:hover { background: rgba(0,0,0,0.02); }
.faq-question i { transition: var(--transition); color: var(--text-muted); font-size: 14px; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--accent-orange); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  padding: 0 24px;
}
.faq-answer p { padding: 0 0 20px; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

.faq-search {
  position: relative; max-width: 500px; margin: 0 auto 48px;
}
.faq-search input {
  width: 100%; padding: 16px 20px 16px 52px;
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-full); color: var(--text-primary);
  font-size: 15px; font-family: var(--font); outline: none; transition: var(--transition);
}
.faq-search input:focus { border-color: var(--accent-orange); box-shadow: 0 0 20px var(--accent-orange-glow); }
.faq-search i {
  position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-size: 16px;
}

/* ===== LOCATIONS ===== */
.location-main {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl); padding: 48px;
  position: relative; overflow: hidden;
}
.location-main::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
}
.location-main .flag { font-size: 48px; margin-bottom: 16px; }
.location-main h3 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.location-main .addr { color: var(--text-secondary); margin-bottom: 20px; }
.location-main .contact-row { font-size: 14px; margin-bottom: 8px; }
.location-main .contact-row i { width: 20px; color: var(--accent-orange); margin-right: 8px; }

.office-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius); padding: 20px; transition: var(--transition);
}
.office-item:hover { border-color: var(--accent-orange); }
.office-item i { font-size: 24px; color: var(--accent-orange); }
.office-item .city { font-size: 16px; font-weight: 600; }
.office-item .country { font-size: 13px; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.contact-info { display: grid; gap: 16px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius); padding: 20px; transition: var(--transition);
}
.contact-item:hover { border-color: var(--accent-orange); }
.contact-item i { font-size: 20px; color: var(--accent-orange); margin-top: 2px; }
.contact-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--text-secondary); }
.contact-form-wrap {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl); padding: 40px;
}
.contact-form-wrap h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 18px; margin-bottom: 16px;
  background: var(--bg-tertiary); border: 1px solid var(--border-card);
  border-radius: var(--radius); color: var(--text-primary);
  font-size: 15px; font-family: var(--font); transition: var(--transition);
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent-orange); box-shadow: 0 0 0 3px var(--accent-orange-dim); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.offices-map {
  width: 100%; min-height: 300px;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-card));
  border-radius: var(--radius-xl); border: 1px solid var(--border-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 15px; position: relative; overflow: hidden;
}
.offices-map .map-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--accent-orange-dim) 2px, transparent 2px);
  background-size: 40px 40px; opacity: 0.5;
}
.offices-map .map-pins {
  position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 24px; justify-content: center;
}
.offices-map .map-pin {
  text-align: center; padding: 12px 20px;
  background: var(--bg-glass); backdrop-filter: blur(8px);
  border-radius: var(--radius); border: 1px solid var(--border-light);
  font-size: 13px; font-weight: 500;
}
.offices-map .map-pin i { color: var(--accent-orange); display: block; font-size: 20px; margin-bottom: 4px; }

/* ===== CTA ===== */
.cta-box {
  text-align: center; padding: 80px 60px;
  background: linear-gradient(135deg, var(--accent-orange-dim), var(--accent-blue-dim));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-2xl); position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, var(--accent-orange-glow) 0%, transparent 60%);
  opacity: 0.3;
}
.cta-box h2 { font-family: var(--font-display); font-size: 38px; font-weight: 800; margin-bottom: 16px; position: relative; }
.cta-box p { font-size: 17px; color: var(--text-secondary); margin-bottom: 32px; position: relative; }
.cta-box .btn { position: relative; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, var(--accent-orange-dim), rgba(249,115,22,0.04));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl); padding: 36px;
  display: flex; gap: 20px; align-items: flex-start;
}
.highlight-box > i:first-child { font-size: 28px; color: var(--accent-orange); flex-shrink: 0; }
.highlight-box p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; font-style: italic; }

/* ===== FEE BOX ===== */
.fee-box {
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(135deg, rgba(59,130,246,0.06), var(--accent-green-dim));
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: var(--radius-xl); padding: 32px; margin-bottom: 32px;
}
.fee-box i { font-size: 40px; color: var(--accent-blue); flex-shrink: 0; }
.fee-box h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.fee-box p { font-size: 15px; color: var(--text-secondary); }

/* ===== LEGAL ===== */
.legal-section {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-xl); padding: 40px; margin-bottom: 20px;
  transition: var(--transition);
}
.legal-section:hover { border-color: var(--border-accent); }
.legal-section h2 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.legal-section h3 { font-size: 18px; font-weight: 600; margin: 24px 0 12px; }
.legal-section p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; font-size: 15px; }
.legal-section ul { color: var(--text-secondary); padding-left: 20px; margin-bottom: 12px; }
.legal-section ul li { margin-bottom: 8px; font-size: 15px; }
.legal-section strong { color: var(--text-primary); }
.legal-section .risk-title { color: var(--danger); }

/* ===== BACKGROUNDS ===== */
.bg-secondary { background: var(--bg-secondary); }
.bg-primary { background: var(--bg-primary); }
.bg-tertiary { background: var(--bg-tertiary); }

/* ===== SLIDER (Vantage-style testimonial carousel) ===== */
.slider-simple { position: relative; overflow: hidden; }
.slider-track { position: relative; }
.slider-slide { display: none; animation: fadeIn 0.6s ease-out; }
.slider-slide.active { display: block; }
.slider-nav {
  width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--accent-orange);
  background: transparent; cursor: pointer; transition: var(--transition); padding: 0;
}
.slider-nav.active { background: var(--accent-orange); box-shadow: 0 0 10px var(--accent-orange-glow); }
.slider-nav:hover { background: var(--accent-orange-dim); }

/* ===== MARKET TAB (Vantage-style) ===== */
.market-tab {
  padding: 10px 24px; border-radius: var(--radius-full); border: none;
  font-size: 14px; font-weight: 600; font-family: var(--font);
  background: var(--bg-tertiary); color: var(--text-secondary);
  cursor: pointer; transition: var(--transition);
}
.market-tab:hover { background: var(--accent-orange-dim); color: var(--accent-orange); }
.market-tab.active { background: var(--accent-orange); color: #fff; box-shadow: 0 4px 16px var(--accent-orange-glow); }

/* ===== CURVED BUTTON (Vantage-style) ===== */
.curved-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border: none; cursor: pointer;
  font-size: 14px; font-weight: 700; font-family: var(--font);
  text-transform: uppercase; letter-spacing: 1px;
  background: linear-gradient(135deg, var(--accent-orange), #fb923c);
  color: #fff; border-radius: 12px;
  border-top-right-radius: 33px;
  transition: var(--transition);
  box-shadow: 0 4px 24px var(--accent-orange-glow);
}
.curved-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--accent-orange-glow); }
.curved-btn-learn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border: 1.5px solid var(--accent-orange);
  background: transparent; color: var(--accent-orange);
  border-radius: 12px; border-top-right-radius: 33px;
  font-size: 13px; font-weight: 700; font-family: var(--font);
  text-transform: uppercase; letter-spacing: 0.5px;
  cursor: pointer; transition: var(--transition);
}
.curved-btn-learn:hover { background: var(--accent-orange); color: #fff; box-shadow: 0 4px 20px var(--accent-orange-glow); }

/* ===== AWARDS SECTION ===== */
.awards-section {
  background: var(--bg-secondary); padding: 80px 0;
}
.awards-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: 800px; margin: 0 auto;
}
.award-item {
  text-align: center; padding: 36px 24px;
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-xl); transition: var(--transition);
}
.award-item:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.award-icon {
  font-size: 48px; margin-bottom: 16px;
  width: 100px; height: 100px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--accent-orange-dim), var(--accent-blue-dim));
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
}
.award-icon i { font-size: 40px; color: var(--accent-orange); }
.award-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.award-item p { font-size: 14px; color: var(--text-muted); }

/* ===== SPONSOR / PARTNERS SECTION ===== */
.sponsor-section {
  padding: 60px 0;
}
.sponsor-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
.sponsor-item {
  padding: 20px 32px;
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-lg); transition: var(--transition);
  display: flex; align-items: center; gap: 12px;
}
.sponsor-item:hover { border-color: var(--border-accent); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.sponsor-item i { font-size: 32px; color: var(--accent-orange); }
.sponsor-item .sponsor-name { font-size: 16px; font-weight: 700; }
.sponsor-item .sponsor-desc { font-size: 12px; color: var(--text-muted); }

/* ===== ALTERNATING TIMELINE (Vantage-style) ===== */
.timeline-alt { position: relative; max-width: 900px; margin: 0 auto; padding: 40px 0; }
.timeline-alt::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--accent-orange), var(--accent-blue), transparent);
  border-radius: 2px;
}
.timeline-alt-item {
  display: flex; align-items: flex-start; margin-bottom: 60px;
  position: relative;
}
.timeline-alt-item:nth-child(odd) { flex-direction: row; }
.timeline-alt-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-alt-item:last-child { margin-bottom: 0; }
.timeline-alt-dot {
  position: absolute; left: 50%; top: 8px;
  width: 20px; height: 20px;
  background: var(--accent-orange); border-radius: 50%;
  transform: translateX(-50%);
  border: 4px solid var(--bg-secondary);
  box-shadow: 0 0 0 4px var(--accent-orange-dim);
  z-index: 2;
}
.timeline-alt-content {
  width: calc(50% - 50px);
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-xl); padding: 28px 32px;
  transition: var(--transition);
}
.timeline-alt-content:hover { border-color: var(--border-accent); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.timeline-alt-content .timeline-num {
  font-size: 11px; font-weight: 700; color: var(--accent-orange);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.timeline-alt-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.timeline-alt-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.timeline-alt-content .timeline-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-orange-dim); color: var(--accent-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}

/* ===== LIVE MARKET SNIPPET (Home page) ===== */
.live-market-snippet {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl); overflow: hidden;
  transition: var(--transition);
}
.live-market-snippet:hover { border-color: var(--border-accent); box-shadow: var(--shadow-lg); }
.live-market-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 28px; border-bottom: 1px solid var(--border-light);
}
.live-market-header h3 { font-size: 18px; font-weight: 700; }
.live-market-header .live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px; border-radius: var(--radius-full);
  background: var(--accent-green-dim); color: var(--accent-green);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.live-market-header .live-badge i { font-size: 8px; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.live-market-table { width: 100%; border-collapse: collapse; }
.live-market-table th {
  padding: 14px 28px; text-align: left; font-size: 11px;
  font-weight: 600; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.5px; background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}
.live-market-table td {
  padding: 14px 28px; font-size: 14px; border-bottom: 1px solid var(--border-subtle);
}
.live-market-table tr:last-child td { border-bottom: none; }
.live-market-table tr:hover td { background: rgba(0,0,0,0.02); }
.live-market-table .price-up { color: var(--accent-green); font-weight: 600; }
.live-market-table .price-down { color: var(--danger); font-weight: 600; }
.live-market-table .market-symbol { font-weight: 700; }
.live-market-footer {
  padding: 16px 28px; border-top: 1px solid var(--border-light);
  text-align: center;
}
.live-market-footer a { font-size: 13px; font-weight: 600; color: var(--accent-orange); }

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 24px 0; background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.trust-item i { color: var(--accent-orange); font-size: 16px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.anim-fade-up { animation: fadeInUp 0.6s ease-out forwards; }
.anim-fade-in { animation: fadeIn 0.6s ease-out forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 24px; }
  .hero-visual { display: none; }
  .research-grid { grid-template-columns: 1fr 1fr; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-item.wide { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-block:nth-child(2)::after { display: none; }
  .stats-grayscale { grid-template-columns: 1fr 1fr; }
  .stats-grayscale .stat-item:nth-child(2) { border-right: none; }
  .empowering-split { grid-template-columns: 1fr; min-height: auto; }
  .empowering-visual { min-height: 300px; }
  .empowering-content { padding: 48px 32px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { margin: 0 auto; }
  .stack-content h2 { font-size: 38px; }
  .report-stack-item { flex-direction: column; gap: 16px; }
  .awards-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .sponsor-grid { gap: 24px; }
  .live-market-table { font-size: 13px; }
  .timeline-alt::before { left: 20px; }
  .timeline-alt-item { flex-direction: column !important; padding-left: 50px; }
  .timeline-alt-dot { left: 20px; }
  .timeline-alt-content { width: 100%; }
  .timeline-alt-content[style*="border-right"] { border-right: 3px solid var(--accent-orange) !important; border-left: none !important; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 28px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero { padding: 160px 0 60px; }
  .hero-image-content { padding: 130px 24px 80px; }
  .hero-image-content .hero-title { font-size: 32px; }
  .hero-report-title { font-size: 18px; }
  .consultant-cta-title { font-size: 32px; }
  .research-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .section-padding { padding: 60px 0; }
  .section-padding-sm { padding: 40px 0; }
  .cta-box { padding: 40px 24px; }
  .cta-box h2 { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-block::after { display: none; }
  .split-section { gap: 30px; }
  .hero-card-float { display: none; }
  .stats-grayscale { grid-template-columns: 1fr; }
  .stats-grayscale .stat-item { border-right: none; border-bottom: 1px solid var(--border-light); }
  .stats-grayscale .stat-item:last-child { border-bottom: none; }
  .stats-grayscale .stat-number-large { font-size: 56px; }
  .empowering-content .empowering-title { font-size: 36px; }
  .product-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-badge { display: none; }
  .footer-legal-links { flex-wrap: wrap; gap: 12px; }
  .stack-section { padding-top: 140px; padding-bottom: 40px; }
  .stack-content h2 { font-size: 32px; }
  .stack-content p { font-size: 16px; }
  .awards-grid { grid-template-columns: 1fr; gap: 16px; }
  .sponsor-grid { gap: 16px; flex-direction: column; align-items: stretch; }
  .sponsor-item { justify-content: center; }
  .live-market-header { flex-direction: column; gap: 8px; align-items: flex-start; }
  .live-market-table th,
  .live-market-table td { padding: 10px 16px; font-size: 13px; }
  .live-market-table { display: block; overflow-x: auto; white-space: nowrap; }
  .curved-btn { font-size: 12px; padding: 12px 24px; }
  .market-tab { font-size: 12px; padding: 8px 16px; }
  .slider-slide > div { flex-direction: column !important; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-stats { gap: 16px; }
  .hero-stat-value { font-size: 22px; }
  .page-hero h1 { font-size: 26px; }
  .section-title { font-size: 24px; }
  .stats-grayscale .stat-number-large { font-size: 48px; }
  .empowering-content { padding: 32px 20px; }
  .empowering-content .empowering-title { font-size: 28px; }
  .stack-content h2 { font-size: 26px; }
}
