/* ===== PROMO TICKER ===== */
.promo-ticker { width: 100%; background: #6c63ff; overflow: hidden; white-space: nowrap; padding: 8px 0; position: relative; z-index: 1001; }
.promo-ticker-track { display: inline-flex; animation: ticker-scroll 28s linear infinite; }
.promo-ticker-track:hover { animation-play-state: paused; }
.promo-ticker-track span { display: inline-block; padding: 0 48px; font-size: 0.82rem; font-weight: 700; color: #fff; letter-spacing: 0.04em; text-transform: uppercase; }
.promo-ticker-track span::before { content: '🔥'; margin-right: 10px; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

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

:root {
  --bg:           #151515;
  --bg2:          #1a1a1a;
  --bg3:          #202020;
  --bg4:          #282828;
  --nav-bg:       #0f0f0f;
  --blue:         #3646f5;
  --blue-dim:     #2538e0;
  --blue-bright:  #5566ff;
  --blue-light:   #e8edff;
  --blue-glow:    rgba(54,70,245,0.1);
  --blue-line:    rgba(54,70,245,0.3);
  --green:        #0b9524;
  --green-light:  #ecfdf3;
  --text:         #ffffff;
  --text-dim:     #d6d6d6;
  --text-muted:   #aeb4b7;
  --border:       rgba(255,255,255,0.1);
  --border2:      rgba(255,255,255,0.07);
  --radius:       8px;
  --radius-lg:    12px;
  --radius-xl:    16px;
  --font:         'Syne', sans-serif;
  --nav-h:        68px;
  --ease:         cubic-bezier(0.4,0,0.2,1);
}

/* ===== KEYFRAMES ===== */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(54,70,245,0.25), 0 4px 20px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 48px rgba(54,70,245,0.55), 0 4px 20px rgba(0,0,0,0.4); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes gradient-x {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ===== LOGO ===== */
.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.logo:hover .logo-img { transform: scale(1.06); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 12px rgba(54,70,245,0.35);
}
.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(54,70,245,0.5);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--bg3);
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-dark:hover {
  background: var(--bg4);
  border-color: var(--border);
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--bg);
  font-weight: 700;
}
.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.btn-sm   { padding: 8px 18px; font-size: 0.82rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  transition: background 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--text); }
.nav-links .nav-cta {
  background: var(--blue);
  color: #fff !important;
  font-weight: 700;
  padding: 9px 20px;
  margin-left: 8px;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover {
  background: var(--blue-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(54,70,245,0.45);
}

.burger {
  display: none;
  background: none;
  border: 1px solid var(--border2);
  color: var(--text-muted);
  width: 38px; height: 38px;
  border-radius: var(--radius);
  font-size: 1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.burger:hover { border-color: var(--border); color: var(--text); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(15,15,15,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 199;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 28px;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border2);
  transition: all 0.18s;
}
.mobile-menu a:hover { color: var(--text); background: rgba(255,255,255,0.03); }

/* ===== ACCENT LINE ===== */
.accent-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--blue-bright), var(--blue), transparent);
  background-size: 200% 100%;
  animation: gradient-x 4s ease-in-out infinite;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border2);
  display: flex;
}
.stat-item {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid var(--border2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--bg);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--border2);
}
.page-hero .label { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--blue-bright); font-style: normal; }
.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}

/* ===== HOME HERO ===== */
.home-main { width: 100%; }

.home-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 28px 40px 20px;
}
.hero-video-wrap { flex: 1; min-width: 0; }

.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border2);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  transition: box-shadow 0.4s var(--ease);
}
.slideshow:hover {
  box-shadow: 0 32px 80px rgba(0,0,0,0.65);
  border-color: var(--border);
}
.slides { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.85s var(--ease);
  pointer-events: none;
}
.slide:first-child, .slide.active { opacity: 1; pointer-events: auto; }

.slide-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(15,15,15,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.6rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s var(--ease);
  z-index: 2;
  opacity: 0;
}
.slideshow:hover .slide-btn { opacity: 1; }
.slide-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.08);
}
.slide-btn.prev { left: 14px; }
.slide-btn.next { right: 14px; }

.slide-dots {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.25s, width 0.3s var(--ease);
}
.dot.active { background: var(--blue-bright); width: 20px; }

/* PROFILE CARD */
.hero-profile {
  flex: 0 0 clamp(200px, 28%, 320px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.profile-avatar {
  width: min(85%, 240px);
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow 0.4s, transform 0.4s, border-color 0.3s;
}
.hero-profile:hover .profile-avatar {
  transform: scale(1.03) translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 3px rgba(54,70,245,0.2);
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-avatar.avatar-placeholder::after {
  content: 'K';
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--blue-bright);
}
.profile-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  display: flex; align-items: center; gap: 8px;
}
.verified {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: var(--blue);
  color: #fff;
  font-size: 0.65rem; font-weight: 700;
  border-radius: 50%; flex-shrink: 0;
}
.profile-bio {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
.profile-socials {
  display: flex; gap: 10px;
  align-items: center; justify-content: center;
  margin-top: 4px;
}
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.22s var(--ease);
}
.social-icon:hover { transform: translateY(-3px); }
.social-icon--discord { color: #5865F2; background: rgba(88,101,242,0.1); border: 1px solid rgba(88,101,242,0.2); }
.social-icon--discord:hover { background: rgba(88,101,242,0.2); border-color: #5865F2; box-shadow: 0 4px 16px rgba(88,101,242,0.3); }
.social-icon--x { color: #fff; background: rgba(255,255,255,0.06); border: 1px solid var(--border2); }
.social-icon--x:hover { background: rgba(255,255,255,0.1); border-color: var(--border); }
.social-icon--yt { color: #ff4444; background: rgba(255,60,60,0.07); border: 1px solid rgba(255,60,60,0.15); }
.social-icon--yt:hover { background: rgba(255,60,60,0.14); border-color: #ff4444; box-shadow: 0 4px 16px rgba(255,60,60,0.2); }

/* HOME BELOW */
.home-below {
  display: flex;
  width: 100%;
  padding: 0 40px;
  gap: 40px;
}
.home-below-left {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 20px 0 40px;
}
.home-below-right { flex: 0 0 clamp(200px, 28%, 320px); }

.btn-cta {
  font-size: 0.95rem;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.01em;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(54,70,245,0.35);
  transition: all 0.2s var(--ease);
  display: inline-flex; align-items: center; gap: 10px;
  align-self: center;
  border: none;
}
.btn-cta::after { content: '→'; font-size: 1rem; transition: transform 0.2s; }
.btn-cta:hover {
  background: var(--blue-bright);
  box-shadow: 0 8px 32px rgba(54,70,245,0.5);
  transform: translateY(-1px);
}
.btn-cta:hover::after { transform: translateX(4px); }

/* APPLY FORM */
.apply-block { width: 100%; display: flex; flex-direction: column; align-items: flex-start; }
.apply-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-bright); margin-bottom: 8px; display: block;
}
.apply-title {
  font-size: 1.25rem; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  margin-bottom: 4px; line-height: 1.2;
}
.apply-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.apply-form {
  display: flex;
  max-width: 440px;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg2);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.apply-form:focus-within {
  border-color: rgba(54,70,245,0.5);
  box-shadow: 0 0 0 3px rgba(54,70,245,0.08);
}
.apply-input {
  flex: 1; background: transparent; border: none;
  padding: 13px 16px; font-size: 0.875rem;
  font-family: var(--font); color: var(--text); outline: none;
}
.apply-input::placeholder { color: var(--text-muted); }
.apply-form .btn {
  border-radius: 0; padding: 13px 20px; font-size: 0.875rem;
  background: var(--blue);
  color: #fff; border: none; font-weight: 700;
}
.apply-form .btn:hover { background: var(--blue-bright); transform: none; box-shadow: none; }

/* REVIEWS */
.home-reviews { padding: 8px 0 64px; }
.reviews-track {
  display: flex; gap: 12px;
  padding: 0 40px;
  overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex-shrink: 0; width: 240px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 20px 18px;
  scroll-snap-align: start;
  transition: all 0.2s var(--ease);
}
.review-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.review-stars { color: var(--blue-bright); font-size: 0.82rem; margin-bottom: 10px; letter-spacing: 1px; }
.review-card p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.65; margin-bottom: 12px; }
.review-author { font-size: 0.76rem; color: var(--text-muted); font-weight: 600; }

/* ===== SECTION BASE ===== */
.section { padding: 88px 0; }
.section-dark { background: var(--bg2); }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-head h2 em { color: var(--blue-bright); font-style: normal; }
.section-head p { color: var(--text-muted); font-size: 1rem; max-width: 520px; line-height: 1.75; }

.label {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-bright);
  background: var(--blue-glow);
  border: 1px solid var(--blue-line);
  padding: 4px 12px; border-radius: var(--radius);
  margin-bottom: 16px;
}
.divider {
  height: 1px;
  background: var(--border2);
}

/* ===== PROP FIRMS ===== */
.firms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.firm-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all 0.25s var(--ease);
}
.firm-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.5);
}
.firm-card.top {
  border-color: rgba(54,70,245,0.3);
  box-shadow: 0 0 0 1px rgba(54,70,245,0.08);
}
.firm-card.top:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.5), 0 0 0 1px rgba(54,70,245,0.2);
}
.firm-rank {
  position: absolute; top: 20px; right: 20px;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-bright); background: var(--blue-glow);
  border: 1px solid var(--blue-line); padding: 3px 10px; border-radius: var(--radius);
}
.firm-top {
  display: flex; align-items: flex-start;
  gap: 14px; margin-bottom: 20px; padding-right: 70px;
}
.firm-icon {
  width: 48px; height: 48px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: var(--blue-bright);
  flex-shrink: 0;
}
.firm-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.firm-stars { color: var(--blue-bright); font-size: 0.82rem; }
.firm-table { width: 100%; border-collapse: collapse; margin-bottom: 18px; }
.firm-table tr { border-bottom: 1px solid var(--border2); }
.firm-table tr:last-child { border-bottom: none; }
.firm-table td { padding: 9px 0; font-size: 0.83rem; }
.firm-table td:first-child { color: var(--text-muted); width: 55%; }
.firm-table td:last-child { color: var(--text); font-weight: 700; text-align: right; }
.code-box {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg3);
  border: 1px dashed rgba(54,70,245,0.3);
  border-radius: var(--radius); padding: 10px 14px; margin-bottom: 14px;
  position: relative; overflow: hidden;
}
.code-box::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(54,70,245,0.04) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
.code-box-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.04em; }
.code-box-value { font-size: 0.88rem; font-weight: 700; color: var(--blue-bright); letter-spacing: 0.06em; }
.code-box-save {
  font-size: 0.75rem; color: #0b9524; font-weight: 700;
  background: rgba(11,149,36,0.08); border: 1px solid rgba(11,149,36,0.2);
  padding: 2px 8px; border-radius: var(--radius);
}

.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  background: var(--bg2);
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; min-width: 700px; }
.compare-table thead tr { background: var(--bg3); border-bottom: 1px solid var(--border2); }
.compare-table th { padding: 14px 20px; text-align: left; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.compare-table td { padding: 13px 20px; border-bottom: 1px solid var(--border2); color: var(--text-dim); }
.compare-table td:first-child { font-weight: 600; color: var(--text); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr { transition: background 0.15s; }
.compare-table tbody tr:hover { background: var(--bg3); }
.compare-table .yes { color: #0b9524; }
.compare-table .no  { color: var(--text-muted); }

/* ===== INDICATORS ===== */
.indicators-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.ind-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: all 0.25s var(--ease);
  position: relative; overflow: hidden;
}
.ind-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.ind-card:hover::before { transform: scaleX(1); }
.ind-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.ind-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 20px; }
.ind-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.ind-card p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.ind-tags span {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--bg3); border: 1px solid var(--border2); color: var(--text-muted);
  padding: 4px 10px; border-radius: var(--radius);
  transition: all 0.2s;
}
.ind-card:hover .ind-tags span { border-color: var(--blue-line); color: var(--blue-bright); background: var(--blue-glow); }

.access-banner {
  margin-top: 48px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.access-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(54,70,245,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.access-banner .label { margin-bottom: 12px; }
.access-banner h3 { font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.02em; }
.access-banner p { color: var(--text-muted); font-size: 0.9rem; max-width: 380px; line-height: 1.7; }

/* ===== QUARTERLY THEORY ===== */
.qt-hero {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  margin-bottom: 40px;
  position: relative; overflow: hidden;
}
.qt-hero::before {
  content: 'QT';
  position: absolute; right: 40px; top: 50%;
  transform: translateY(-50%);
  font-size: 9rem; font-weight: 700;
  color: rgba(54,70,245,0.05);
  letter-spacing: -0.05em; pointer-events: none; line-height: 1;
}
.qt-hero h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; color: var(--text); }
.qt-hero p { color: var(--text-muted); font-size: 0.95rem; max-width: 560px; line-height: 1.75; }

.qt-modules { display: flex; flex-direction: column; gap: 2px; }
.qt-module {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 0;
  padding: 22px 28px;
  display: grid; grid-template-columns: 52px 1fr auto;
  align-items: center; gap: 24px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.qt-module:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.qt-module:last-child { border-radius: 0 0 var(--radius) var(--radius); border-bottom: 1px solid var(--border2); }
.qt-module + .qt-module { border-top: none; }
.qt-module:hover { background: var(--bg3); border-color: var(--border); transform: translateX(3px); }
.qt-module-num { font-size: 1.3rem; font-weight: 700; color: var(--blue); opacity: 0.5; }
.qt-module-title { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.qt-module-desc { font-size: 0.8rem; color: var(--text-muted); }
.qt-badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 11px; border-radius: var(--radius); white-space: nowrap; }
.badge-free { background: rgba(11,149,36,0.08); color: #0b9524; border: 1px solid rgba(11,149,36,0.2); }
.badge-premium { background: var(--blue-glow); color: var(--blue-bright); border: 1px solid var(--blue-line); }

/* ===== PREMIUM ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: start; }
.price-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  position: relative;
  transition: all 0.25s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 24px 56px rgba(0,0,0,0.5); }
.price-card.featured {
  background: var(--bg);
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(54,70,245,0.15), 0 20px 56px rgba(0,0,0,0.4);
}
.price-card.featured:hover {
  box-shadow: 0 0 0 1px rgba(54,70,245,0.25), 0 28px 64px rgba(0,0,0,0.5);
}
.price-top-badge {
  position: absolute; top: -13px; left: 28px;
  background: var(--blue);
  color: #fff;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: var(--radius);
}
.price-tier-name { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.price-amount { font-size: 3.2rem; font-weight: 700; color: var(--text); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.price-amount sup { font-size: 1.4rem; vertical-align: super; font-weight: 700; }
.price-period { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 28px; }
.price-divider { height: 1px; background: var(--border2); margin-bottom: 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: var(--text-dim); line-height: 1.5; }
.price-features li .check { color: #0b9524; flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }
.price-features li .cross { color: var(--text-muted); flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }
.price-features li.inactive { color: var(--text-muted); }

/* FAQ */
.faq-wrap { max-width: 680px; margin: 80px auto 0; }
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-bottom: none;
  padding: 22px 28px;
  transition: all 0.2s var(--ease);
}
.faq-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border2); border-radius: 0 0 var(--radius) var(--radius); }
.faq-item:hover { background: var(--bg3); border-color: var(--border); }
.faq-q { font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.faq-a { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; }

/* ===== MISC ===== */
.risk-note {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 20px;
  font-size: 0.78rem; color: var(--text-muted);
  line-height: 1.6; margin-top: 32px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--nav-bg);
  border-top: 1px solid var(--border2);
  padding: 24px 0;
}
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-disclaimer { font-size: 0.72rem; color: var(--text-muted); opacity: 0.6; max-width: 500px; text-align: right; line-height: 1.5; }

/* ===== RESPONSIVE ===== */
/* ===== TABLET (max 1024px) ===== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .firms-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .home-hero { gap: 16px; padding: 24px 28px 16px; }
  .hero-profile { flex: 0 0 clamp(160px, 22%, 260px); }
}

/* ===== MOBILE (max 768px) ===== */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* Nav */
  .nav-links { display: none; }
  .burger { display: flex; }
  .container { padding: 0 16px; }

  /* Ticker */
  .promo-ticker-track span { font-size: 0.74rem; padding: 0 28px; }

  /* Hero */
  .home-hero { flex-direction: column; padding: 20px 16px; gap: 16px; }
  .hero-video-wrap { width: 100%; }
  .hero-profile { flex-direction: column; flex: unset; width: 100%; align-items: center; }
  .profile-avatar { width: 160px; height: 160px; aspect-ratio: unset; }

  .home-below { flex-direction: column; padding: 0 16px; }
  .home-below-right { display: none; }
  .home-below-left { padding: 16px 0 28px; }
  .btn-cta { align-self: flex-start; }
  .apply-form { max-width: 100%; }
  .reviews-track { padding: 0 12px; }

  /* Sections */
  .section { padding: 48px 0; }
  .page-hero { padding: 40px 0 32px; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-amount { font-size: 2.6rem; }
  .price-card { padding: 28px 22px; }

  /* Prop Firms */
  .firms-grid { grid-template-columns: 1fr; }
  .firm-card { padding: 22px 18px; }
  .firm-table td { font-size: 0.78rem; padding: 8px 0; }
  .code-box { flex-wrap: wrap; gap: 10px; }

  /* Compare table */
  .compare-wrap { -webkit-overflow-scrolling: touch; }
  .compare-table { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }

  /* Indicators */
  .indicators-grid { grid-template-columns: 1fr; }
  .ind-card { padding: 24px 18px; }
  .access-banner { flex-direction: column; align-items: flex-start; padding: 28px 20px; gap: 20px; }
  .access-banner h3 { font-size: 1.2rem; }

  /* QT */
  .qt-hero { padding: 32px 24px; }
  .qt-module { grid-template-columns: 44px 1fr; padding: 18px 16px; gap: 14px; }
  .qt-badge { display: none; }

  /* Stats */
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-bottom: 1px solid var(--border2); }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-disclaimer { text-align: left; max-width: 100%; font-size: 0.68rem; }
}

/* ===== SMALL PHONES (max 480px) ===== */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .page-hero h1 { font-size: clamp(1.4rem, 7vw, 2rem); }
  .page-hero p { font-size: 0.88rem; }

  /* Nav */
  .logo { font-size: 0.95rem; gap: 8px; }
  .logo-img { width: 36px; height: 36px; }

  /* Ticker */
  .promo-ticker-track span { font-size: 0.68rem; padding: 0 20px; }

  /* Pricing */
  .price-card { padding: 24px 16px; }
  .price-amount { font-size: 2.2rem; }
  .price-features li { font-size: 0.82rem; }

  /* Prop firms */
  .firm-card { padding: 18px 14px; }
  .firm-table td { font-size: 0.74rem; }
  .code-box { padding: 10px 10px; }
  .code-box-value { font-size: 0.8rem; }

  /* Buttons */
  .btn { font-size: 0.84rem; padding: 10px 20px; }
  .btn-block { padding: 12px 20px; }

  /* Indicators slider */
  .ind-slider-track img { height: 160px; }

  /* FAQ */
  .faq-item { padding: 18px 16px; }
  .faq-q { font-size: 0.86rem; }

  /* Stats */
  .stat-item { flex: 0 0 100%; }
  .stat-value { font-size: 1.4rem; }
}
