/* ============================================================
   HUMAIRFX THEME — MAIN STYLESHEET
   Dark Premium Financial Design
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --hfx-bg:           #070b14;
  --hfx-bg-2:         #0d1422;
  --hfx-bg-card:      #111827;
  --hfx-bg-card-2:    #161f30;
  --hfx-border:       rgba(255,255,255,0.06);
  --hfx-border-light: rgba(255,255,255,0.10);

  --hfx-gold:         #f7b731;
  --hfx-gold-dark:    #d4960a;
  --hfx-gold-light:   #ffd166;
  --hfx-blue:         #3b82f6;
  --hfx-blue-dark:    #1d4ed8;
  --hfx-blue-light:   #60a5fa;
  --hfx-cyan:         #00b4d8;
  --hfx-green:        #00d68f;
  --hfx-red:          #ff4d6d;
  --hfx-purple:       #8b5cf6;

  --hfx-text:         #f1f5f9;
  --hfx-text-muted:   #94a3b8;
  --hfx-text-dim:     #64748b;

  --hfx-gradient-gold: linear-gradient(135deg, #f7b731 0%, #ffd166 50%, #d4960a 100%);
  --hfx-gradient-blue: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #1d4ed8 100%);
  --hfx-gradient-hero: linear-gradient(135deg, #070b14 0%, #0d1422 50%, #0a0f1e 100%);

  --hfx-radius:       16px;
  --hfx-radius-sm:    10px;
  --hfx-radius-lg:    24px;
  --hfx-shadow:       0 4px 24px rgba(0,0,0,0.4);
  --hfx-shadow-gold:  0 0 40px rgba(247,183,49,0.2);
  --hfx-shadow-blue:  0 0 40px rgba(59,130,246,0.2);

  --hfx-transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height:       72px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--hfx-bg);
  color: var(--hfx-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--hfx-transition); }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { font-family: 'Rajdhani', 'Inter', sans-serif; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

/* ---- LAYOUT ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.hfx-section { padding: 100px 0; }
.hfx-section--dark { background: var(--hfx-bg-2); }

/* ---- SECTION HEADERS ---- */
.hfx-section-header { text-align: center; margin-bottom: 64px; }
.hfx-section-tag {
  display: inline-block;
  background: rgba(247,183,49,0.1);
  border: 1px solid rgba(247,183,49,0.3);
  color: var(--hfx-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hfx-section-title { color: var(--hfx-text); margin-bottom: 16px; }
.hfx-section-title span { color: var(--hfx-gold); }
.hfx-section-subtitle { color: var(--hfx-text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ====================================================
   NAVIGATION
==================================================== */
.hfx-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(7,11,20,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--hfx-border);
  z-index: 1000;
  transition: var(--hfx-transition);
}
.hfx-nav.scrolled {
  background: rgba(7,11,20,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hfx-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px;
}
.hfx-nav__logo { display: flex; align-items: center; }
.hfx-nav__logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--hfx-text);
  letter-spacing: 0.05em;
}
.hfx-nav__logo-text span { color: var(--hfx-gold); }
.hfx-nav__logo img { height: 44px; width: auto; }
.hfx-nav__links {
  display: flex; align-items: center; gap: 32px;
}
.hfx-nav__links a {
  color: var(--hfx-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}
.hfx-nav__links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--hfx-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}
.hfx-nav__links a:hover { color: var(--hfx-text); }
.hfx-nav__links a:hover::after { transform: scaleX(1); }
.hfx-nav__cta {
  background: var(--hfx-gradient-gold) !important;
  color: #000 !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(247,183,49,0.3);
  transition: var(--hfx-transition) !important;
}
.hfx-nav__cta::after { display: none !important; }
.hfx-nav__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(247,183,49,0.5) !important; }
.hfx-nav__hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hfx-nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--hfx-text); border-radius: 2px;
  transition: var(--hfx-transition);
}

/* ====================================================
   BUTTONS
==================================================== */
.hfx-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--hfx-radius-sm);
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none;
  transition: var(--hfx-transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.hfx-btn--primary {
  background: var(--hfx-gradient-gold);
  color: #000;
  box-shadow: 0 4px 20px rgba(247,183,49,0.35);
}
.hfx-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(247,183,49,0.55);
  color: #000;
}
.hfx-btn--ghost {
  background: transparent;
  color: var(--hfx-text);
  border: 1.5px solid var(--hfx-border-light);
}
.hfx-btn--ghost:hover { border-color: var(--hfx-gold); color: var(--hfx-gold); background: rgba(247,183,49,0.05); }
.hfx-btn--gold { background: rgba(247,183,49,0.1); color: var(--hfx-gold); border: 1px solid rgba(247,183,49,0.3); }
.hfx-btn--gold:hover { background: rgba(247,183,49,0.2); transform: translateY(-2px); }
.hfx-btn--blue { background: rgba(59,130,246,0.1); color: var(--hfx-blue-light); border: 1px solid rgba(59,130,246,0.3); }
.hfx-btn--blue:hover { background: rgba(59,130,246,0.2); transform: translateY(-2px); }
.hfx-btn--lg { padding: 16px 36px; font-size: 1rem; }
.hfx-btn--full { width: 100%; justify-content: center; }

/* ====================================================
   HERO SECTION
==================================================== */
.hfx-hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: var(--hfx-gradient-hero);
}
.hfx-hero__grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(247,183,49,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,183,49,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hfx-hero__particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hfx-particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--hfx-gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
.hfx-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  width: 100%;
}
.hfx-hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(247,183,49,0.08);
  border: 1px solid rgba(247,183,49,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--hfx-gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}
.hfx-pulse {
  width: 8px; height: 8px;
  background: var(--hfx-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,214,143,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(0,214,143,0); }
}
.hfx-hero__title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--hfx-text);
}
.hfx-hero__title span {
  background: var(--hfx-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hfx-hero__subtitle { color: var(--hfx-text-muted); font-size: 1.1rem; margin-bottom: 40px; max-width: 520px; line-height: 1.75; }
.hfx-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hfx-hero__trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hfx-hero__trust-item {
  display: flex; align-items: center; gap: 6px;
  color: var(--hfx-text-muted); font-size: 0.82rem; font-weight: 500;
}
.hfx-hero__trust-item svg { color: var(--hfx-gold); flex-shrink: 0; }

/* Chart card in hero */
.hfx-hero__visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hfx-chart-card {
  background: var(--hfx-bg-card);
  border: 1px solid var(--hfx-border-light);
  border-radius: var(--hfx-radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--hfx-shadow), var(--hfx-shadow-gold);
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hfx-chart-card__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.hfx-chart-card__pair { font-weight: 700; letter-spacing: 0.05em; font-size: 0.95rem; }
.hfx-chart-card__profit { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; }
.hfx-chart-card__chart { height: 100px; margin-bottom: 16px; }
.hfx-candlestick-svg { width: 100%; height: 100%; }
.hfx-chart-card__signal {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem;
}
.hfx-chart-card__stat { color: var(--hfx-text-muted); }

/* Floating stat cards */
.hfx-stat-float {
  position: absolute;
  background: var(--hfx-bg-card-2);
  border: 1px solid var(--hfx-border-light);
  border-radius: var(--hfx-radius-sm);
  padding: 12px 18px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: var(--hfx-shadow);
}
.hfx-stat-float--1 { top: 5%; right: -10%; animation: floatCard 3.5s ease-in-out infinite 0.5s; }
.hfx-stat-float--2 { bottom: 10%; left: -5%; animation: floatCard 4.5s ease-in-out infinite 1s; }
.hfx-stat-float__num { font-size: 1.3rem; font-weight: 800; color: var(--hfx-gold); }
.hfx-stat-float__label { font-size: 0.7rem; color: var(--hfx-text-muted); font-weight: 500; }

/* Scroll hint */
.hfx-hero__scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--hfx-text-dim); font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hfx-scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid var(--hfx-gold);
  border-bottom: 2px solid var(--hfx-gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

/* ====================================================
   SIGNAL BADGES
==================================================== */
.hfx-signal-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em;
  padding: 4px 12px; border-radius: 50px; text-transform: uppercase;
}
.hfx-signal-badge--buy { background: rgba(0,214,143,0.15); color: var(--hfx-green); border: 1px solid rgba(0,214,143,0.3); }
.hfx-signal-badge--sell { background: rgba(255,77,109,0.15); color: var(--hfx-red); border: 1px solid rgba(255,77,109,0.3); }

/* ====================================================
   STATS BAR
==================================================== */
.hfx-stats-bar {
  background: linear-gradient(90deg, rgba(247,183,49,0.08) 0%, rgba(59,130,246,0.08) 100%);
  border-top: 1px solid var(--hfx-border);
  border-bottom: 1px solid var(--hfx-border);
  padding: 40px 0;
}
.hfx-stats-bar__grid {
  display: flex; align-items: center; justify-content: space-around;
  gap: 20px; flex-wrap: wrap;
}
.hfx-stats-bar__item { text-align: center; padding: 8px 20px; }
.hfx-stats-bar__num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  font-family: 'Rajdhani', sans-serif;
  background: var(--hfx-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.hfx-stats-bar__label { font-size: 0.82rem; color: var(--hfx-text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.hfx-stats-bar__divider { width: 1px; height: 60px; background: var(--hfx-border-light); }

/* ====================================================
   SERVICES
==================================================== */
.hfx-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hfx-service-card {
  background: var(--hfx-bg-card);
  border: 1px solid var(--hfx-border);
  border-radius: var(--hfx-radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--hfx-transition);
  overflow: hidden;
}
.hfx-service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--hfx-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.hfx-service-card:hover { transform: translateY(-6px); border-color: var(--hfx-border-light); box-shadow: var(--hfx-shadow-gold); }
.hfx-service-card:hover::before { opacity: 1; }
.hfx-service-card--featured {
  border-color: rgba(247,183,49,0.2);
  background: linear-gradient(145deg, var(--hfx-bg-card), rgba(247,183,49,0.03));
  box-shadow: var(--hfx-shadow-gold);
}
.hfx-service-card--featured::before { opacity: 1; }
.hfx-service-card__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--hfx-gradient-gold);
  color: #000; font-size: 0.7rem; font-weight: 800;
  padding: 4px 12px; border-radius: 50px; letter-spacing: 0.05em;
}
.hfx-service-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.hfx-icon--gold { background: rgba(247,183,49,0.1); color: var(--hfx-gold); }
.hfx-icon--blue { background: rgba(59,130,246,0.1); color: var(--hfx-blue-light); }
.hfx-icon--purple { background: rgba(139,92,246,0.1); color: var(--hfx-purple); }
.hfx-service-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--hfx-text); }
.hfx-service-card p { color: var(--hfx-text-muted); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; }
.hfx-service-card__features { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.hfx-service-card__features li {
  color: var(--hfx-text-muted); font-size: 0.875rem;
  display: flex; align-items: center; gap: 8px;
}
.hfx-service-card__features li::before {
  content: '→';
  color: var(--hfx-gold); font-weight: 700;
}
.hfx-service-card__link {
  color: var(--hfx-gold); font-size: 0.875rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}
.hfx-service-card__link:hover { gap: 8px; }

/* ====================================================
   SIGNALS
==================================================== */
.hfx-signals-showcase {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 48px;
}
.hfx-signal-card {
  background: var(--hfx-bg-card);
  border: 1px solid var(--hfx-border);
  border-radius: var(--hfx-radius);
  padding: 24px;
  transition: var(--hfx-transition);
  position: relative; overflow: hidden;
}
.hfx-signal-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--hfx-gradient-gold);
}
.hfx-signal-card:hover { transform: translateY(-4px); border-color: rgba(247,183,49,0.2); box-shadow: var(--hfx-shadow-gold); }
.hfx-signal-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.hfx-signal-card__symbol { font-size: 1rem; font-weight: 800; letter-spacing: 0.04em; display: block; }
.hfx-signal-card__name { font-size: 0.72rem; color: var(--hfx-text-muted); display: block; margin-top: 2px; }
.hfx-signal-card__details { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.hfx-signal-card__row { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--hfx-text-muted); }
.hfx-signal-card__row strong { font-weight: 700; color: var(--hfx-text); }
.hfx-signal-card__result {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 8px 12px;
  background: rgba(0,214,143,0.08);
  border: 1px solid rgba(0,214,143,0.2);
  border-radius: 8px;
  margin-bottom: 14px;
}
.hfx-signal-card__mini-chart { height: 44px; }
.hfx-signal-card__mini-chart svg { width: 100%; height: 100%; }
.hfx-signals-cta { text-align: center; }

/* ====================================================
   EXPERTS
==================================================== */
.hfx-experts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.hfx-expert-card {
  background: var(--hfx-bg-card);
  border: 1px solid var(--hfx-border);
  border-radius: var(--hfx-radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
  position: relative;
  overflow: hidden;
  transition: var(--hfx-transition);
}
.hfx-expert-card:hover { transform: translateY(-4px); }
.hfx-expert-card__glow {
  position: absolute; top: -100px; left: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.3;
}
.hfx-expert-card__glow--gold { background: var(--hfx-gold); }
.hfx-expert-card__glow--blue { background: var(--hfx-blue); }
.hfx-expert-card:hover .hfx-expert-card__glow { opacity: 0.5; }
.hfx-expert-card__image-wrap { position: relative; }
.hfx-expert-card__img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--hfx-radius);
  border: 2px solid var(--hfx-border-light);
}
.hfx-expert-card__img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--hfx-radius);
  border: 2px dashed;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  text-align: center;
  font-size: 0.82rem; font-weight: 500;
  padding: 20px;
  line-height: 1.5;
}
.hfx-expert-card__img-placeholder--gold { border-color: rgba(247,183,49,0.3); color: var(--hfx-gold); background: rgba(247,183,49,0.05); }
.hfx-expert-card__img-placeholder--blue { border-color: rgba(59,130,246,0.3); color: var(--hfx-blue-light); background: rgba(59,130,246,0.05); }
.hfx-expert-card__exp-badge {
  position: absolute; bottom: -12px; right: -12px;
  background: var(--hfx-gradient-gold);
  border-radius: 50%;
  width: 72px; height: 72px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 3px solid var(--hfx-bg-card);
  box-shadow: var(--hfx-shadow);
}
.hfx-expert-card__exp-badge--blue { background: var(--hfx-gradient-blue); }
.hfx-expert-card__exp-badge strong { font-size: 1rem; font-weight: 900; color: #fff; line-height: 1; }
.hfx-expert-card__exp-badge span { font-size: 0.55rem; color: rgba(255,255,255,0.8); font-weight: 600; letter-spacing: 0.05em; }
.hfx-expert-card__name { font-size: 1.8rem; font-weight: 900; margin-bottom: 4px; letter-spacing: 0.05em; }
.hfx-expert-card__title { color: var(--hfx-gold); font-size: 0.875rem; font-weight: 600; margin-bottom: 16px; }
.hfx-expert-card__bio { color: var(--hfx-text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.hfx-expert-card__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.hfx-expert-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.75rem; font-weight: 600;
  padding: 5px 12px; border-radius: 50px;
}
.hfx-expert-badge::before { content: '✓'; }
.hfx-expert-badge--gold { background: rgba(247,183,49,0.1); color: var(--hfx-gold); border: 1px solid rgba(247,183,49,0.2); }
.hfx-expert-badge--blue { background: rgba(59,130,246,0.1); color: var(--hfx-blue-light); border: 1px solid rgba(59,130,246,0.2); }

/* ====================================================
   PROFIT PROOFS
==================================================== */
.hfx-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.hfx-proof-card {
  background: var(--hfx-bg-card);
  border: 1px solid var(--hfx-border);
  border-radius: var(--hfx-radius);
  padding: 28px;
  transition: var(--hfx-transition);
}
.hfx-proof-card:hover { transform: translateY(-4px); border-color: rgba(0,214,143,0.2); }
.hfx-proof-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.hfx-proof-card__platform { font-size: 0.78rem; color: var(--hfx-text-muted); font-weight: 600; background: rgba(255,255,255,0.05); padding: 4px 10px; border-radius: 6px; }
.hfx-proof-card__roi { font-size: 1.3rem; font-weight: 900; }
.hfx-proof-card__chart { height: 70px; margin-bottom: 18px; }
.hfx-proof-card__chart svg { width: 100%; height: 100%; }
.hfx-proof-card__stats { display: flex; justify-content: space-between; margin-bottom: 20px; padding: 14px; background: rgba(255,255,255,0.03); border-radius: 10px; }
.hfx-proof-card__stats div { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.hfx-proof-card__stats span { font-size: 0.72rem; color: var(--hfx-text-muted); }
.hfx-proof-card__stats strong { font-size: 0.9rem; font-weight: 700; }
.hfx-proof-card__student { display: flex; gap: 14px; align-items: flex-start; border-top: 1px solid var(--hfx-border); padding-top: 18px; }
.hfx-proof-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--hfx-blue), var(--hfx-cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; flex-shrink: 0;
  color: #fff;
}
.hfx-avatar--gold { background: var(--hfx-gradient-gold); color: #000; }
.hfx-avatar--blue { background: var(--hfx-gradient-blue); }
.hfx-avatar--sm { width: 36px; height: 36px; font-size: 0.75rem; }
.hfx-proof-card__name { font-size: 0.875rem; font-weight: 700; margin-bottom: 4px; }
.hfx-proof-card__quote { font-size: 0.82rem; color: var(--hfx-text-muted); line-height: 1.5; font-style: italic; }

/* ====================================================
   TESTIMONIALS SLIDER
==================================================== */
.hfx-testimonials-slider { overflow: hidden; position: relative; }
.hfx-testimonial-card {
  background: var(--hfx-bg-card);
  border: 1px solid var(--hfx-border);
  border-radius: var(--hfx-radius);
  padding: 32px;
  display: none;
  transition: var(--hfx-transition);
}
.hfx-testimonial-card.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.hfx-testimonial-card__stars { color: var(--hfx-gold); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 16px; }
.hfx-testimonial-card p { color: var(--hfx-text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.hfx-testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.hfx-testimonial-card__author strong { display: block; font-size: 0.95rem; }
.hfx-testimonial-card__author span { font-size: 0.8rem; color: var(--hfx-text-muted); }
.hfx-slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.hfx-slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--hfx-bg-card-2);
  border: 1px solid var(--hfx-border);
  color: var(--hfx-text);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--hfx-transition);
}
.hfx-slider-btn:hover { background: var(--hfx-gold); color: #000; border-color: var(--hfx-gold); }
.hfx-slider-dots { display: flex; gap: 8px; }
.hfx-slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--hfx-border-light); cursor: pointer;
  transition: var(--hfx-transition);
}
.hfx-slider-dot.active { background: var(--hfx-gold); width: 24px; border-radius: 4px; }

/* ====================================================
   PRICING
==================================================== */
.hfx-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.hfx-pricing-card {
  background: var(--hfx-bg-card);
  border: 1px solid var(--hfx-border);
  border-radius: var(--hfx-radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--hfx-transition);
  display: flex; flex-direction: column;
}
.hfx-pricing-card:hover { transform: translateY(-6px); }
.hfx-pricing-card--featured {
  border-color: rgba(247,183,49,0.3);
  background: linear-gradient(145deg, var(--hfx-bg-card), rgba(247,183,49,0.04));
  box-shadow: var(--hfx-shadow-gold);
  transform: scale(1.02);
}
.hfx-pricing-card--featured:hover { transform: scale(1.02) translateY(-6px); }
.hfx-pricing-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--hfx-gradient-gold);
  color: #000; font-size: 0.75rem; font-weight: 800;
  padding: 5px 18px; border-radius: 50px; white-space: nowrap; letter-spacing: 0.05em;
}
.hfx-pricing-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.hfx-pricing-card__name { font-size: 1.1rem; font-weight: 800; margin-bottom: 16px; letter-spacing: 0.05em; }
.hfx-pricing-card__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; }
.hfx-pricing-card__amount { font-size: 3rem; font-weight: 900; color: var(--hfx-gold); font-family: 'Rajdhani', sans-serif; line-height: 1; }
.hfx-pricing-card__period { color: var(--hfx-text-muted); font-size: 0.9rem; }
.hfx-pricing-card__desc { color: var(--hfx-text-muted); font-size: 0.875rem; line-height: 1.6; margin-bottom: 24px; }
.hfx-pricing-card__features { flex: 1; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.hfx-pricing-card__features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: var(--hfx-text-muted);
}
.hfx-pricing-card__features li svg { color: var(--hfx-green); flex-shrink: 0; }
.hfx-pricing-note { text-align: center; color: var(--hfx-text-muted); font-size: 0.9rem; }
.hfx-pricing-note a { color: var(--hfx-gold); font-weight: 600; }
.hfx-pricing-note a:hover { text-decoration: underline; }

/* ====================================================
   SOCIAL CARDS
==================================================== */
.hfx-social-section { background: var(--hfx-bg); }
.hfx-social-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.hfx-social-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--hfx-bg-card);
  border: 1px solid var(--hfx-border);
  border-radius: var(--hfx-radius);
  padding: 24px 28px;
  transition: var(--hfx-transition);
  position: relative; overflow: hidden;
}
.hfx-social-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--platform-color, #f7b731) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.hfx-social-card:hover { transform: translateY(-4px); border-color: var(--platform-color, var(--hfx-gold)); }
.hfx-social-card:hover::before { opacity: 0.07; }
.hfx-social-card__icon { color: var(--platform-color, var(--hfx-gold)); flex-shrink: 0; position: relative; z-index: 1; }
.hfx-social-card__content { flex: 1; position: relative; z-index: 1; }
.hfx-social-card__content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.hfx-social-card__content p { font-size: 0.82rem; color: var(--hfx-text-muted); line-height: 1.5; }
.hfx-social-card__count { text-align: center; position: relative; z-index: 1; }
.hfx-social-card__count strong { display: block; font-size: 1.2rem; font-weight: 800; color: var(--hfx-gold); }
.hfx-social-card__count span { font-size: 0.72rem; color: var(--hfx-text-muted); }
.hfx-social-card__arrow { color: var(--hfx-text-dim); font-size: 1.2rem; transition: var(--hfx-transition); position: relative; z-index: 1; }
.hfx-social-card:hover .hfx-social-card__arrow { color: var(--platform-color, var(--hfx-gold)); transform: translateX(4px); }

/* ====================================================
   SOCIAL ICONS (Footer)
==================================================== */
.hfx-social-icons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.hfx-social-icon {
  width: 42px; height: 42px;
  background: var(--hfx-bg-card-2);
  border: 1px solid var(--hfx-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--hfx-text-muted);
  transition: var(--hfx-transition);
}
.hfx-social-icon:hover { transform: translateY(-3px); color: var(--hfx-text); }
.hfx-social-icon--youtube:hover { background: rgba(255,0,0,0.15); border-color: rgba(255,0,0,0.3); color: #ff4444; }
.hfx-social-icon--telegram:hover { background: rgba(0,136,204,0.15); border-color: rgba(0,136,204,0.3); color: #0088cc; }
.hfx-social-icon--instagram:hover { background: rgba(225,48,108,0.15); border-color: rgba(225,48,108,0.3); color: #E1306C; }
.hfx-social-icon--facebook:hover { background: rgba(24,119,242,0.15); border-color: rgba(24,119,242,0.3); color: #1877f2; }
.hfx-social-icon--tiktok:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: var(--hfx-text); }
.hfx-social-icon--twitter:hover { background: rgba(29,155,240,0.15); border-color: rgba(29,155,240,0.3); color: #1d9bf0; }

/* ====================================================
   FOOTER
==================================================== */
.hfx-footer {
  background: var(--hfx-bg-2);
  border-top: 1px solid var(--hfx-border);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.hfx-footer__glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(247,183,49,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Contact CTA */
.hfx-contact-cta {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(247,183,49,0.05) 0%, rgba(59,130,246,0.05) 100%);
  border: 1px solid var(--hfx-border);
  border-radius: var(--hfx-radius-lg);
  margin-bottom: 64px;
}
.hfx-contact-cta h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }
.hfx-contact-cta p { color: var(--hfx-text-muted); font-size: 1rem; margin-bottom: 36px; }
.hfx-contact-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Footer Grid */
.hfx-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.hfx-footer__logo { font-size: 2rem; display: inline-block; margin-bottom: 16px; }
.hfx-footer__brand p { color: var(--hfx-text-muted); font-size: 0.875rem; line-height: 1.7; max-width: 300px; }
.hfx-footer__links h4 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; color: var(--hfx-gold); }
.hfx-footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.hfx-footer__links a { color: var(--hfx-text-muted); font-size: 0.875rem; transition: var(--hfx-transition); }
.hfx-footer__links a:hover { color: var(--hfx-gold); transform: translateX(3px); display: inline-block; }
.hfx-footer__divider { height: 1px; background: var(--hfx-border); margin-bottom: 32px; }
.hfx-footer__bottom { text-align: center; }
.hfx-footer__bottom p { color: var(--hfx-text-dim); font-size: 0.82rem; margin-bottom: 8px; }
.hfx-footer__risk { font-size: 0.78rem; color: var(--hfx-text-dim); }

/* ====================================================
   UTILITY CLASSES
==================================================== */
.hfx-text-green { color: var(--hfx-green) !important; }
.hfx-text-red { color: var(--hfx-red) !important; }
.hfx-arrow-up { display: inline-block; }

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

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 1024px) {
  .hfx-hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hfx-hero__badge { margin: 0 auto 28px; }
  .hfx-hero__subtitle { margin: 0 auto 40px; }
  .hfx-hero__cta { justify-content: center; }
  .hfx-hero__trust { justify-content: center; }
  .hfx-hero__visual { display: none; }
  .hfx-services-grid { grid-template-columns: 1fr 1fr; }
  .hfx-experts-grid { grid-template-columns: 1fr; }
  .hfx-expert-card { grid-template-columns: 180px 1fr; }
  .hfx-signals-showcase { grid-template-columns: repeat(2, 1fr); }
  .hfx-footer__main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hfx-nav__links { display: none; flex-direction: column; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--hfx-bg-2); border-bottom: 1px solid var(--hfx-border); padding: 24px; gap: 16px; z-index: 999; }
  .hfx-nav__links.open { display: flex; }
  .hfx-nav__hamburger { display: flex; }
  .hfx-services-grid { grid-template-columns: 1fr; }
  .hfx-signals-showcase { grid-template-columns: 1fr 1fr; }
  .hfx-proof-grid { grid-template-columns: 1fr; }
  .hfx-pricing-grid { grid-template-columns: 1fr; }
  .hfx-pricing-card--featured { transform: none; }
  .hfx-social-cards-grid { grid-template-columns: 1fr; }
  .hfx-experts-grid { grid-template-columns: 1fr; }
  .hfx-expert-card { grid-template-columns: 1fr; padding: 24px; }
  .hfx-expert-card__image-wrap { max-width: 200px; margin: 0 auto; }
  .hfx-expert-card__content { text-align: center; }
  .hfx-expert-card__badges { justify-content: center; }
  .hfx-footer__main { grid-template-columns: 1fr; }
  .hfx-stats-bar__grid { gap: 32px; }
  .hfx-stats-bar__divider { display: none; }
  .hfx-section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .hfx-signals-showcase { grid-template-columns: 1fr; }
  .hfx-hero__cta { flex-direction: column; }
  .hfx-btn--lg { width: 100%; justify-content: center; }
  .hfx-contact-cta { padding: 40px 20px; }
  .hfx-contact-cta__btns { flex-direction: column; }
}

/* =========================================
   EXPERT SOCIAL BUTTONS
========================================= */
.hfx-expert-socials {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}
.hfx-expert-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.hfx-expert-social-btn svg {
    width: 24px;
    height: 24px;
}
.hfx-expert-social-btn--gold:hover {
    background: var(--hfx-gold);
    color: #000;
    border-color: var(--hfx-gold);
    box-shadow: 0 4px 15px rgba(247, 183, 49, 0.4);
    transform: translateY(-3px);
}
.hfx-expert-social-btn--blue:hover {
    background: var(--hfx-blue);
    color: #fff;
    border-color: var(--hfx-blue);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
    transform: translateY(-3px);
}

/* =========================================
   NEWSLETTER SECTION
========================================= */
.hfx-newsletter-section {
    padding: 80px 0;
    background: var(--hfx-dark-bg);
}
.hfx-newsletter-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}
.hfx-newsletter-box::before {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(247, 183, 49, 0.1) 0%, transparent 70%);
    transform: translate(30%, -30%);
    pointer-events: none;
}
.hfx-newsletter-content {
    flex: 1;
}
.hfx-newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hfx-newsletter-content p {
    font-size: 1.1rem;
    color: var(--hfx-text-muted);
    max-width: 400px;
}
.hfx-newsletter-form-wrap {
    flex: 1;
    max-width: 500px;
    width: 100%;
}
/* Style overrides for common plugin shortcodes (WPForms, Mailchimp, etc) */
.hfx-newsletter-form-wrap input[type="email"],
.hfx-newsletter-form-wrap input[type="text"] {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}
.hfx-newsletter-form-wrap input[type="email"]:focus {
    outline: none;
    border-color: var(--hfx-gold);
}
.hfx-newsletter-form-wrap button,
.hfx-newsletter-form-wrap input[type="submit"] {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: var(--hfx-gold);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.hfx-newsletter-form-wrap button:hover,
.hfx-newsletter-form-wrap input[type="submit"]:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(247, 183, 49, 0.4);
}
@media (max-width: 768px) {
    .hfx-newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .hfx-newsletter-content p {
        margin: 0 auto;
    }
}

/* =========================================
   PRICING SHORTCODE SUPPORT
========================================= */
.hfx-pricing-shortcode {
    margin-top: auto;
    width: 100%;
}
.hfx-pricing-shortcode button,
.hfx-pricing-shortcode input[type="submit"],
.hfx-pricing-shortcode a.button {
    width: 100% !important;
    padding: 14px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: block !important;
}
