/* ============================================
   GB TRADE — HIGH-CONVERSION LANDING PAGE
   Premium Dark Theme · Gold Accent
   ============================================ */
/* Force font-display:swap for Google Fonts to prevent FOIT */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: local('Inter');
}
/* Prevent layout shift from images */
img { height: auto; }
picture img { display: block; }

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

:root {
  --bg: #0D0D0D;
  --bg-2: #111111;
  --bg-3: #161616;
  --bg-card: #1A1A1A;
  --gold: #C9A84C;
  --gold-light: #E0C070;
  --gold-dark: #A07830;
  --white: #FFFFFF;
  --grey: #B0B0B0;
  --grey-dark: #666666;
  --border: rgba(201, 168, 76, 0.15);
  --border-light: rgba(255,255,255,0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.gold { color: var(--gold); }

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}

.section-sub {
  font-size: 17px;
  color: var(--grey);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: #0D0D0D;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.btn--gold:hover {
  background-position: right center;
  box-shadow: 0 6px 30px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}

.btn--lg { font-size: 16px; padding: 16px 32px; }
.btn--xl { font-size: 18px; padding: 20px 44px; border-radius: 12px; }

.pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,0.3); }
  50% { box-shadow: 0 4px 40px rgba(201,168,76,0.6), 0 0 60px rgba(201,168,76,0.2); }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--right.visible {
  transform: translateX(0);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-light);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
}

.navbar__logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.logo-gb {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-trade {
  color: var(--white);
}

.navbar__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.navbar__links a:hover { color: var(--white); }

.navbar__cta { margin-left: 16px; }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  padding: 16px 24px 24px;
}

.navbar__mobile.open { display: flex; }

.navbar__mobile a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}

.navbar__mobile a:last-child { border-bottom: none; margin-top: 16px; }
.navbar__mobile a:hover { color: var(--white); }
.navbar__mobile .btn--gold {
  color: #0D0D0D !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.04em;
  font-size: 14px;
}
.navbar__mobile .btn--gold:hover { color: #0D0D0D !important; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero__sub {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--grey);
}

.hero__avatars {
  display: flex;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #0D0D0D;
  letter-spacing: 0;
  flex-shrink: 0;
}

.avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #8B6914, #C9A84C); }
.av2 { background: linear-gradient(135deg, #1a5276, #2980b9); }
.av3 { background: linear-gradient(135deg, #1e8449, #27ae60); }
.av4 { background: linear-gradient(135deg, #7d3c98, #9b59b6); }
.av5 { background: linear-gradient(135deg, #b7410e, #e67e22); }

/* Urgency bar */
.hero__urgency,
.final-cta__urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
  margin-top: 4px;
}

.urgency__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e74c3c;
  box-shadow: 0 0 0 0 rgba(231,76,60,0.4);
  animation: pulse-red 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-red {
  0%   { box-shadow: 0 0 0 0 rgba(231,76,60,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(231,76,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(231,76,60,0); }
}

.final-cta__urgency {
  justify-content: center;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

/* ---- Channel Preview (FIX #3) ---- */
.hero__channel-preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-gold);
  position: relative;
}

.hero__channel-preview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.channel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  background: rgba(201,168,76,0.04);
}

.channel-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-title {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}

.channel-title strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.channel-title span {
  font-size: 11px;
  color: var(--grey-dark);
}

.channel-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #4CAF50;
  font-weight: 600;
}

/* Live pulsing dot */
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(76,175,80,0.4); }
  50% { opacity: 0.8; transform: scale(1.1); box-shadow: 0 0 0 4px rgba(76,175,80,0); }
}

.channel-messages {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ch-msg {
  background: var(--bg-3);
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
}

.ch-msg--reply {
  background: rgba(255,255,255,0.03);
  margin-left: 16px;
}

.ch-msg--mentor {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.2);
  margin-left: 16px;
}

.ch-msg__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.ch-msg__author {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.ch-msg__text {
  font-size: 13px;
  color: #D0D0D0;
  line-height: 1.55;
}

.ch-msg__tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.tag-pill {
  font-size: 10px;
  font-weight: 600;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  padding: 3px 10px;
  letter-spacing: 0.04em;
}

.chart-svg {
  width: 100%;
  height: auto;
  min-height: 180px;
  max-width: 100%;
  margin: 8px 0;
  display: block;
  border-radius: 8px;
  overflow: hidden;
}

.channel-footer {
  padding: 10px 20px 14px;
  border-top: 1px solid var(--border-light);
}

.last-post {
  font-size: 11px;
  color: var(--grey-dark);
}

.hero__float-tag {
  position: absolute;
  background: rgba(13,13,13,0.9);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}

.tag1 {
  top: -16px;
  right: 20px;
  animation-delay: 0s;
}

.tag2 {
  bottom: -16px;
  left: 20px;
  animation-delay: 1.5s;
}

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

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-hint span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
  0% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0.3) translateY(20px); }
}

/* ---------- PAIN SECTION ---------- */
.pain {
  padding: 100px 0;
  background: var(--bg-2);
  position: relative;
}

.pain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.pain .container { text-align: center; }

.pain__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pain__card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pain__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.pain__card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.pain__card:hover::before { transform: scaleX(1); }

.pain__icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.pain__card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.pain__card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

.pain__bridge {
  text-align: center;
  margin-top: 48px;
  font-size: 17px;
  font-weight: 500;
  color: var(--grey);
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pain__bridge strong {
  color: var(--gold);
}

/* ---------- ABOUT SECTION ---------- */
.about {
  padding: 100px 0;
  position: relative;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__desc {
  font-size: 17px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 40px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature__icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.feature p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
}

/* About stats block (replaces photo) */
.about__stats-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-gold);
  height: 100%;
  min-height: 380px;
  justify-content: center;
}

.about__stat-item {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about__stat-num {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about__stat-label {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.4;
}

.about__stat-divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

/* ---------- INSIDE SECTION ---------- */
.inside {
  padding: 100px 0;
  background: var(--bg-2);
}

.inside__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.inside__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.inside__item:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.inside__icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inside__text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.inside__text p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

/* ---------- MENTORS SECTION ---------- */
.mentors {
  padding: 100px 0;
  position: relative;
}

.mentors__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mentor__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mentor__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.mentor__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201,168,76,0.3);
}

/* Mentor photo (FIX #2) */
.mentor__photo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 120px;
}

.mentor__photo {
  width: 120px;
  height: 150px;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  border: 2px solid var(--border);
  display: block;
  transition: border-color var(--transition);
}

.mentor__card:hover .mentor__photo {
  border-color: var(--gold);
}

.mentor__badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0D0D0D;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.mentor__name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.mentor__role {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 14px;
  font-weight: 500;
}

.mentor__desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 18px;
}

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

.mentor__facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
}

.mentor__socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.mentor__social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  transition: background 0.2s, border-color 0.2s;
}

.mentor__social-link:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

/* ---------- REVIEWS SECTION ---------- */
.reviews {
  padding: 100px 0;
  background: var(--bg-2);
}

.reviews__counter {
  text-align: center;
  margin-bottom: 56px;
}

.counter__number {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}

.counter__label {
  font-size: 16px;
  color: var(--grey);
  margin-top: 8px;
}

/* FIX #9: Live activity badge */
.reviews__live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #4CAF50;
  font-weight: 600;
  margin-bottom: 48px;
  margin-top: -32px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Review cards (FIX #7: clean cards, no fake chat timestamps/checkmarks) */
.review-card {
  background: #1E1E1E;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.review-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

.review-card__handle {
  font-size: 12px;
  color: rgba(201,168,76,0.55);
  font-weight: 500;
}

.review-card__body {
  font-size: 14px;
  color: #E0E0E0;
  line-height: 1.65;
}

.review-card__stat {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  padding: 3px 10px;
}

/* Shared avatar styles */
.tg-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--white);
}

.tg-av1 { background: linear-gradient(135deg, #8B6914, #C9A84C); }
.tg-av2 { background: linear-gradient(135deg, #1a5276, #2980b9); }
.tg-av3 { background: linear-gradient(135deg, #1e8449, #27ae60); }
.tg-av4 { background: linear-gradient(135deg, #7d3c98, #9b59b6); }
.tg-av5 { background: linear-gradient(135deg, #922b21, #e74c3c); }
.tg-av6 { background: linear-gradient(135deg, #1a5276, #5dade2); }

/* ---------- HOW IT WORKS ---------- */
.how {
  padding: 100px 0;
  position: relative;
}

.how .container { text-align: center; }

.how__steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.how__step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.how__step:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.how__num {
  font-size: 64px;
  font-weight: 900;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.how__icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.how__step h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.how__step p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
}

.how__arrow {
  font-size: 28px;
  color: var(--gold);
  padding: 0 16px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ---------- FILTER SECTION ---------- */
.filter {
  padding: 80px 0;
  background: var(--bg-2);
}

.filter__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
}

.filter__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter__title--yes { color: #4CAF50; }
.filter__title--no { color: #F44336; }

.filter__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.filter__list li {
  font-size: 15px;
  color: var(--grey);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.filter__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 700;
}

.filter__list--no li::before {
  content: '✗';
  color: #F44336;
}

.filter__divider {
  width: 1px;
  background: var(--border-light);
  align-self: stretch;
}

/* ---------- FAQ SECTION ---------- */
.faq {
  padding: 100px 0;
}

/* FIX #8: Trust question highlight */
.faq__item--trust {
  border-color: rgba(201,168,76,0.2);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item.open {
  border-color: var(--border);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color var(--transition);
}

.faq__q:hover { color: var(--gold); }

.faq__arrow {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item.open .faq__arrow {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  padding: 0 24px;
}

.faq__item.open .faq__a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, #0F0D08 50%, var(--bg) 100%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
}

.final-cta__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.final-cta__sub {
  font-size: 18px;
  color: var(--grey);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.final-cta__note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--grey-dark);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-light);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding: 64px 24px 48px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--grey);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 300px;
  font-style: italic;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(201,168,76,0.15);
  transform: translateY(-2px);
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--gold); }

.footer__disclaimer {
  border-top: 1px solid var(--border-light);
  padding: 20px 0;
}

.footer__disclaimer p {
  font-size: 12px;
  color: var(--grey-dark);
  line-height: 1.6;
  max-width: 900px;
}

.footer__copy {
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
}

.footer__copy p {
  font-size: 13px;
  color: var(--grey-dark);
}

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */

@media (max-width: 1024px) {
  .pain__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__image { order: -1; }
  .mentors__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .mentor__card { flex-direction: row; }
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__cta { display: none; }
  .navbar__burger { display: flex; }

  /* Hero: text first, channel preview second */
  .hero {
    padding: 90px 0 60px;
    min-height: auto;
    align-items: flex-start;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  /* Text block comes first on mobile */
  .hero__content { order: 1; }
  /* Channel preview comes second */
  .hero__visual { order: 2; }

  .hero__title { font-size: clamp(26px, 7.5vw, 40px); word-break: break-word; overflow-wrap: break-word; }
  .hero__sub { font-size: 15px; max-width: 100%; margin-bottom: 28px; }
  .hero__badge { font-size: 11px; padding: 6px 12px; }
  .hero__actions { align-items: stretch; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; letter-spacing: 0.03em; }
  .hero__trust { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .hero__float-tag { display: none; }

  /* Channel preview: compact on mobile */
  .channel-header { padding: 12px 14px; }
  .channel-messages { padding: 10px 12px; gap: 8px; }
  .ch-msg { padding: 10px 12px; }
  .ch-msg--reply, .ch-msg--mentor { margin-left: 8px; }
  .ch-msg__text { font-size: 12px; }
  .ch-msg__label { font-size: 10px; }
  .channel-footer { padding: 8px 14px 10px; }
  .last-post { font-size: 10px; }
  .tag-pill { font-size: 9px; padding: 2px 8px; }

  /* Sections */
  .pain { padding: 70px 0; }
  .pain__grid { grid-template-columns: 1fr; }
  .pain__card { padding: 24px 20px; }

  .about { padding: 70px 0; }
  .about__features { grid-template-columns: 1fr; }
  .about__desc { font-size: 15px; }

  .inside__grid { grid-template-columns: 1fr; }

  /* Mentors */
  .mentors { padding: 70px 0; }
  .mentor__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
  }
  .mentor__photo-wrap { width: 100px; }
  .mentor__photo { width: 100px; height: 125px; }
  .mentor__facts li { justify-content: center; }

  /* Reviews */
  .reviews { padding: 70px 0; }
  .reviews__grid { grid-template-columns: 1fr; }
  .counter__number { font-size: clamp(48px, 15vw, 80px); }

  /* How it works */
  .how { padding: 70px 0; }
  .how__steps {
    flex-direction: column;
    gap: 16px;
  }
  .how__arrow {
    transform: rotate(90deg);
    padding: 0;
    font-size: 22px;
  }
  .how__step { padding: 28px 20px; }

  /* Filter */
  .filter { padding: 60px 0; }
  .filter__inner {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }
  .filter__divider {
    width: 100%;
    height: 1px;
  }

  /* FAQ */
  .faq { padding: 70px 0; }
  .faq__q { font-size: 14px; padding: 16px 18px; }
  .faq__a { padding: 0 18px; font-size: 14px; }
  .faq__item.open .faq__a { padding: 0 18px 16px; }

  /* Final CTA */
  .final-cta { padding: 80px 0; }
  .final-cta__sub { font-size: 15px; }
  .final-cta .btn { width: 100%; max-width: 100%; justify-content: center; white-space: normal; text-align: center; line-height: 1.4; padding: 16px 12px; font-size: 14px; letter-spacing: 0.03em; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px 36px;
  }
  .footer__links { grid-template-columns: 1fr 1fr; }

  .section-sub { max-width: 100%; font-size: 15px; }
  .section-title { font-size: clamp(24px, 7vw, 36px); }

  .btn--lg { font-size: 13px; padding: 13px 16px; width: 100%; justify-content: center; white-space: normal; text-align: center; letter-spacing: 0.03em; }
  .btn--xl { font-size: 14px; padding: 15px 16px; width: 100%; justify-content: center; white-space: normal; text-align: center; letter-spacing: 0.03em; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }

  .hero { padding: 80px 0 48px; }
  .hero__title { font-size: clamp(24px, 8.5vw, 34px); word-break: break-word; overflow-wrap: break-word; }
  .hero__sub { font-size: 14px; }

  /* Channel preview even more compact */
  .hero__channel-preview { border-radius: 14px; }
  .channel-messages { padding: 8px 10px; gap: 6px; }
  .ch-msg { padding: 8px 10px; border-radius: 10px; }
  .ch-msg__text { font-size: 11px; line-height: 1.5; }
  .chart-svg { height: 160px; min-height: 160px; }

  .btn--xl { font-size: 13px; padding: 14px 12px; width: 100%; justify-content: center; white-space: normal; text-align: center; letter-spacing: 0.02em; }
  .btn--lg { font-size: 12px; padding: 12px 12px; width: 100%; justify-content: center; white-space: normal; text-align: center; letter-spacing: 0.02em; }

  .filter__inner { padding: 20px 16px; }
  .filter__title { font-size: 16px; }
  .filter__list li { font-size: 14px; }

  .footer__links { grid-template-columns: 1fr; }
  .mentor__card { padding: 20px 16px; }
  .pain__card { padding: 20px 16px; }

  .how__num { font-size: 48px; }
  .how__step h3 { font-size: 18px; }

  .reviews__counter { margin-bottom: 36px; }
  .counter__number { font-size: clamp(44px, 14vw, 72px); }
}

/* ---------- UTILITY CLASSES ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
