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

:root {
  --bg: #040408;
  --bg2: #080810;
  --surface: #0d0d1a;
  --border: rgba(255,255,255,0.07);
  --accent: #e8ff00;
  --accent2: #00d4ff;
  --accent3: #ff3366;
  --text: #f0f0f5;
  --text-muted: #6b6b80;
  --text-dim: #3a3a50;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --glow: 0 0 40px rgba(232,255,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  overflow-x: hidden; cursor: none;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ===== CANVAS & CURSOR ===== */
#particleCanvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.3;
}

.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

.cursor-trail {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease; opacity: 0.5;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px; transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(4,4,8,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 60px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 4px;
  color: var(--text); text-decoration: none;
}

.logo-bracket { color: var(--accent); font-size: 32px; }

.nav-links {
  display: flex; list-style: none; gap: 40px;
}

.nav-links a {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-muted); text-decoration: none;
  letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}

.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--accent); transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--bg); background: var(--accent);
  border: none; padding: 10px 20px; border-radius: 4px;
  cursor: none; transition: all 0.3s; font-weight: 700;
}

.nav-cta:hover {
  background: transparent; color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--glow);
}

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: none; z-index: 1001;
}

.hamburger span {
  width: 24px; height: 1px;
  background: var(--text); transition: all 0.3s ease; display: block;
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 60px;
  overflow: hidden; z-index: 1;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}

.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px; opacity: 0.4; pointer-events: none;
}

.page-hero::before {
  content: ''; position: absolute;
  top: 10%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,255,0,0.05), transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative; z-index: 2;
  animation: heroFadeIn 1s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 3px; color: var(--accent);
  text-transform: uppercase; display: block; margin-bottom: 16px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 13vw, 172px);
  line-height: 0.88; letter-spacing: 3px;
  margin: 20px 0 28px;
  display: flex; flex-direction: column; align-items: center;
}

.page-title .line {
  display: block; opacity: 0;
  animation: slideUp 0.8s ease forwards;
}

.page-title .line:nth-child(1) { animation-delay: 0.2s; }
.page-title .line:nth-child(2) { animation-delay: 0.4s; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-title .accent {
  color: transparent;
  -webkit-text-stroke: 3px var(--accent); position: relative;
}

.page-title .accent::before {
  content: attr(data-text);
  position: absolute; left: 0; right: 0;
  color: var(--accent); -webkit-text-stroke: 0;
  clip-path: inset(0 100% 0 0);
  animation: textReveal 2s ease 1s forwards;
}

@keyframes textReveal { to { clip-path: inset(0 0% 0 0); } }

.page-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted); line-height: 1.7;
  opacity: 0; animation: slideUp 0.8s ease 0.7s forwards;
}

.page-subtitle em { color: var(--accent2); font-style: normal; }

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: slideUp 0.8s ease 1.1s forwards;
}

.scroll-line {
  width: 40px; height: 1px; background: var(--accent);
  position: relative; overflow: hidden;
}

.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--bg);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { left: -100%; } 50% { left: 0%; } 100% { left: 100%; }
}

.hero-scroll-hint span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim);
}

/* ===== LIVE TICKER ===== */
.live-ticker {
  position: relative; z-index: 2;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  display: flex; align-items: center;
  overflow: hidden;
}

.ticker-label {
  display: flex; align-items: center; gap: 8px;
  padding: 0 24px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent3);
  border-right: 1px solid var(--border);
  flex-shrink: 0; z-index: 1;
  background: var(--surface);
}

.ticker-dot {
  width: 6px; height: 6px;
  background: var(--accent3); border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,51,102,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(255,51,102,0); }
}

.ticker-track { flex: 1; overflow: hidden; }

.ticker-inner {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker-inner span {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 1px; color: var(--text-muted);
}

.ticker-inner strong { color: var(--accent); }
.ticker-inner .sep { color: var(--text-dim); }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== HERO STATS ===== */
.hero-stats {
  padding: 80px 60px;
  position: relative; z-index: 2;
  border-bottom: 1px solid var(--border);
}

.hs-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.hs-card {
  background: var(--bg);
  padding: 32px 28px;
  transition: background 0.3s;
}

.hs-card:hover { background: var(--surface); }

.hs-card.big {
  grid-row: span 1;
  background: rgba(232,255,0,0.03);
  border-right: 1px solid var(--border);
}

.hs-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 12px;
}

.hs-value {
  margin-bottom: 16px;
}

.hs-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 60px);
  color: var(--accent); line-height: 1;
}

.hs-bar {
  height: 3px; background: var(--border);
  border-radius: 2px; overflow: hidden; margin-bottom: 10px;
}

.hs-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  transition: width 1.5s ease;
}

.hs-bar-fill.animated { width: var(--w); }

.hs-sub {
  font-size: 12px; color: var(--text-dim);
}

/* ===== SECTION COMMON ===== */
.section-header { margin-bottom: 56px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1; letter-spacing: 2px;
}

.highlight {
  color: transparent; -webkit-text-stroke: 2px var(--accent);
}

/* ===== METRICS ===== */
.metrics {
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
}

.metrics-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 32px;
  transition: all 0.3s;
}

.metric-card:hover {
  border-color: rgba(232,255,0,0.15);
  transform: translateY(-2px);
}

.metric-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 16px;
}

.metric-name {
  font-size: 14px; color: var(--text-muted);
}

.metric-val {
  font-family: var(--font-display); font-size: 28px;
  color: var(--accent); letter-spacing: 1px;
}

.metric-bar-wrap {
  display: flex; align-items: center; gap: 16px;
}

.metric-bar {
  flex: 1; height: 6px; background: var(--border);
  border-radius: 3px; overflow: hidden;
}

.metric-fill {
  height: 100%; width: 0;
  background: var(--c);
  border-radius: 3px;
  transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px var(--c);
}

.metric-fill.animated { width: var(--w); }

.metric-pct {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; color: var(--text-dim);
  white-space: nowrap; flex-shrink: 0;
}

/* ===== CHARTS ===== */
.charts {
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
  background: var(--surface);
}

.charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.chart-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: all 0.3s;
}

.chart-card:hover { border-color: rgba(232,255,0,0.1); }

.chart-card.wide {
  grid-column: span 2;
}

.chart-title {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 32px;
}

/* Bar Chart */
.bar-chart {
  display: flex; align-items: flex-end;
  gap: 12px; height: 200px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px; margin-bottom: 8px;
}

.bar-group {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 8px; height: 100%;
  justify-content: flex-end;
}

.bar {
  width: 100%; height: 0;
  background: linear-gradient(to top, var(--c), rgba(232,255,0,0.3));
  border-radius: 4px 4px 0 0;
  position: relative; cursor: none;
  transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; align-items: flex-start; justify-content: center;
}

.bar.animated { height: var(--h); }

.bar.active {
  background: linear-gradient(to top, var(--accent), rgba(232,255,0,0.5));
  box-shadow: 0 0 20px rgba(232,255,0,0.3);
}

.bar:hover { filter: brightness(1.2); }

.bar-label {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--accent); position: absolute;
  top: -20px; letter-spacing: 1px;
  opacity: 0; transition: opacity 0.3s;
}

.bar.animated .bar-label { opacity: 1; }

.bar-year {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; color: var(--text-dim);
}

.chart-note {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-dim); letter-spacing: 1px; margin-top: 4px;
}

/* Donut Chart */
.donut-wrap {
  position: relative; width: 220px; height: 220px;
  margin: 0 auto 24px;
}

#donutChart { display: block; }

.donut-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; pointer-events: none;
}

.donut-num {
  font-family: var(--font-display); font-size: 40px;
  color: var(--accent); line-height: 1; display: block;
}

.donut-sub {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim);
}

.donut-legend {
  display: flex; flex-direction: column; gap: 8px;
}

.legend-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-muted);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 1px;
}

.legend-item span {
  width: 10px; height: 10px; border-radius: 2px;
  background: var(--c); flex-shrink: 0;
  box-shadow: 0 0 6px var(--c);
}

/* Line Chart */
.line-chart-wrap {
  position: relative;
}

#lineChart {
  width: 100%; height: 200px;
  overflow: visible;
}

.line-x-labels {
  display: flex; justify-content: space-between;
  padding: 0 4px; margin-top: 8px;
}

.line-x-labels span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; color: var(--text-dim);
}

/* ===== CATEGORY STATS ===== */
.category-stats {
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
}

.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  transition: all 0.4s; cursor: none; position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--data-color, var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}

.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.cat-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}

.cat-icon {
  font-size: 24px; line-height: 1;
}

.cat-header h3 {
  font-family: var(--font-display); font-size: 20px; letter-spacing: 1px;
}

.cat-stats {
  display: flex; gap: 0; margin-bottom: 20px;
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}

.cat-stat {
  flex: 1; text-align: center; padding: 14px 8px;
  border-right: 1px solid var(--border);
}

.cat-stat:last-child { border-right: none; }

.cn {
  font-family: var(--font-display); font-size: 28px;
  color: var(--accent); line-height: 1;
}

.cu {
  font-family: var(--font-display); font-size: 20px;
  color: var(--accent2);
}

.cat-stat p {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-dim); margin-top: 4px;
}

.cat-bar {
  height: 4px; background: var(--border); border-radius: 2px; overflow: hidden;
}

.cat-fill {
  height: 100%; width: 0; background: var(--c);
  border-radius: 2px; box-shadow: 0 0 8px var(--c);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-fill.animated { width: var(--w); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
  background: var(--surface);
}

.testimonial-slider-wrap {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex; gap: 0;
  will-change: transform;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  width: 100%;
  min-width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
  transition: border-color 0.4s, transform 0.4s;
  cursor: none;
}

.testimonial-card:hover {
  border-color: rgba(232,255,0,0.15);
  transform: translateY(-4px);
}

.t-stars {
  color: var(--accent); font-size: 18px;
  letter-spacing: 2px; margin-bottom: 16px;
}

.t-quote {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 24px;
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

.t-author {
  display: flex; align-items: center; gap: 12px;
}

.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(232,255,0,0.08);
  border: 1px solid rgba(232,255,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px;
  color: var(--accent); flex-shrink: 0;
}

.t-author strong {
  display: block; font-size: 14px; font-weight: 500;
}

.t-author span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; color: var(--text-dim);
}

.testimonial-controls {
  display: flex; align-items: center;
  justify-content: center; gap: 20px; margin-top: 40px;
}

.t-prev, .t-next {
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); border-radius: 50%;
  cursor: none; font-size: 18px;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}

.t-prev:hover, .t-next:hover {
  border-color: var(--accent); color: var(--accent);
  box-shadow: 0 0 16px rgba(232,255,0,0.2);
}

.t-dots { display: flex; gap: 8px; }

.t-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-dim); transition: all 0.3s; cursor: none;
}

.t-dot.active {
  background: var(--accent); width: 20px;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(232,255,0,0.4);
}

/* ===== AWARDS ===== */
.awards {
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
}

.awards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.award-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.3s; cursor: none;
}

.award-card:hover {
  border-color: rgba(232,255,0,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.award-icon { font-size: 32px; flex-shrink: 0; line-height: 1; }

.award-year {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; color: var(--accent2);
  display: block; margin-bottom: 6px;
}

.award-info h3 {
  font-family: var(--font-display); font-size: 18px;
  letter-spacing: 1px; margin-bottom: 6px; line-height: 1.1;
}

.award-info p {
  font-size: 13px; color: var(--text-muted);
}

/* ===== CTA ===== */
.stats-cta {
  padding: 120px 60px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
  text-align: center; overflow: hidden;
}

.stats-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,255,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95; letter-spacing: 2px; margin: 20px 0 48px;
}

.cta-actions {
  display: flex; align-items: center;
  justify-content: center; gap: 24px; flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--bg); border: none;
  padding: 14px 28px; font-family: var(--font-mono);
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 4px;
  cursor: none; transition: all 0.3s; text-decoration: none;
  position: relative; overflow: hidden;
}

.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before { transform: translateX(150%) skewX(-15deg); }
.btn-primary:hover { box-shadow: 0 0 30px rgba(232,255,0,0.4); transform: translateY(-2px); }

.btn-primary svg {
  width: 18px; height: 18px; stroke: currentColor;
  fill: none; stroke-width: 2; stroke-linecap: round;
  transition: transform 0.3s;
}

.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); padding: 14px 24px;
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 1px; border-radius: 4px;
  cursor: none; transition: all 0.3s; text-decoration: none;
}

.btn-ghost:hover { border-color: var(--accent2); color: var(--accent2); }

/* ===== FOOTER ===== */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border); padding: 40px 60px 32px;
}

.footer-top {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 32px;
}

.footer-logo { font-family: var(--font-display); font-size: 22px; letter-spacing: 4px; }
.footer-links { display: flex; gap: 32px; }

.footer-links a {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none; transition: color 0.3s;
}

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

.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom span { font-size: 13px; color: var(--text-dim); }
.footer-mono { font-family: var(--font-mono); font-size: 11px; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hs-grid { grid-template-columns: repeat(3, 1fr); }
  .hs-card.big { grid-column: span 3; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .charts-grid { grid-template-columns: 1fr; }
  .chart-card.wide { grid-column: span 1; }
  .metrics-grid { grid-template-columns: 1fr; }
  /* testimonial-card zaten 100% genişlik */
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .page-hero { padding: 0 24px; }
  .hero-stats, .metrics, .charts, .category-stats,
  .testimonials, .awards, .stats-cta { padding: 80px 24px; }

  .hs-grid { grid-template-columns: repeat(2, 1fr); }
  .hs-card.big { grid-column: span 2; }
  .cat-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  /* testimonial-card zaten 100% genişlik */

  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }

  .footer { padding: 32px 24px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hs-grid { grid-template-columns: 1fr; }
  .hs-card.big { grid-column: span 1; }
  .awards-grid { grid-template-columns: 1fr; }
}