/* ============================================================
   The Funded Room - Main Stylesheet
   Dark theme, luxury/fintech aesthetic
   Font: Syne (headings) + DM Sans (body)
   ============================================================ */

:root {
  --black:     #070a0f;
  --dark:      #0d1117;
  --dark2:     #141b27;
  --dark3:     #1a2336;
  --border:    #1f2d44;
  --green:     #00e5a0;
  --green2:    #00c87a;
  --gold:      #f5c542;
  --red:       #ff4757;
  --white:     #f0f4ff;
  --muted:     #7a8bb0;
  --radius:    14px;
  --shadow:    0 8px 40px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, #00e5a0 0%, #00c87a 50%, #00a05f 100%);
  color: #000;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.marquee-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span { flex-shrink: 0; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,10,15,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}
.logo-icon {
  font-size: 24px;
  color: var(--green);
  text-shadow: 0 0 20px var(--green);
}
.logo-text strong { color: var(--green); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: var(--dark2);
}
.nav-actions { display: flex; gap: 12px; align-items: center; }

.btn-ghost {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--white);
  transition: all .2s;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.btn-primary {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  background: var(--green);
  color: #000;
  transition: all .2s;
  font-family: 'Syne', sans-serif;
}
.btn-primary:hover {
  background: var(--green2);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,229,160,0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,160,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,160,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}
.blob-1 { width: 600px; height: 600px; background: var(--green); top: -200px; left: -100px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: #0055ff; top: 100px; right: -100px; animation-delay: 2s; }
.blob-3 { width: 300px; height: 300px; background: var(--gold); bottom: -100px; left: 50%; animation-delay: 4s; }
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,229,160,0.1);
  border: 1px solid rgba(0,229,160,0.3);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(40px, 5vw, 68px);
  margin-bottom: 20px;
  color: var(--white);
}
.gradient-text {
  background: linear-gradient(135deg, var(--green) 0%, #00b4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; align-items: center; margin-bottom: 48px; }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--green);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  transition: all .3s;
}
.btn-hero-primary:hover {
  background: var(--green2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,229,160,0.4);
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all .2s;
}
.btn-hero-ghost:hover { border-color: var(--green); color: var(--green); }
.play-icon {
  width: 32px; height: 32px;
  background: rgba(0,229,160,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
}
.hstat { text-align: center; padding: 0 24px; }
.hstat:first-child { padding-left: 0; }
.hstat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}
.hstat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hstat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== TRADING CARD ===== */
.hero-visual { position: relative; z-index: 1; }
.trading-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,229,160,0.1);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.tc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.tc-badge {
  background: rgba(0,229,160,0.1);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(0,229,160,0.2);
}
.tc-badge.live { animation: blink 1s ease infinite; }
@keyframes blink { 50% { opacity: 0.5; } }
.tc-title { font-weight: 700; font-size: 15px; }

.tc-payout-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.tc-payout-row:last-child { border-bottom: none; }
.tc-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--green), #00b4ff);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}
.tc-info { flex: 1; }
.tc-info strong { display: block; font-size: 14px; }
.tc-info small { color: var(--muted); font-size: 11px; }
.tc-amount { font-family: 'Syne', sans-serif; font-weight: 800; }
.tc-amount.green { color: var(--green); }

.mini-chart { width: 100%; height: 60px; margin-top: 16px; }

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  background: var(--dark);
}
.trust-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 20px;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-logo {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}
.trust-logo:hover { color: var(--white); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 100px 0; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(0,229,160,0.1);
  border: 1px solid rgba(0,229,160,0.2);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 16px;
}
.section-header p { font-size: 17px; color: var(--muted); max-width: 580px; margin: 0 auto; }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section { background: var(--dark); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,229,160,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.why-card:hover { border-color: rgba(0,229,160,0.3); transform: translateY(-4px); }
.why-card:hover::before { opacity: 1; }
.why-card.featured {
  border-color: rgba(0,229,160,0.4);
  background: linear-gradient(135deg, var(--dark2), rgba(0,229,160,0.05));
}
.why-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--green);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 { font-size: 20px; margin-bottom: 10px; }
.why-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ============================================================
   PLANS SECTION
   ============================================================ */
.plans-section { background: var(--black); }
.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  background: var(--dark2);
  padding: 6px;
  border-radius: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
}
.plan-tab {
  padding: 10px 28px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
}
.plan-tab.active {
  background: var(--green);
  color: #000;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.plan-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.plan-card:hover { border-color: rgba(0,229,160,0.3); transform: translateY(-6px); box-shadow: var(--shadow); }
.plan-card.popular {
  border-color: var(--green);
  background: linear-gradient(160deg, var(--dark2), rgba(0,229,160,0.07));
  transform: scale(1.03);
}
.popular-badge {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 0 0 10px 10px;
}
.plan-size {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 4px;
}
.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
}
.plan-orig {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
}
.plan-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 20px;
}
.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-features li {
  font-size: 13px;
  color: var(--muted);
}
.plan-features li:first-child { color: var(--white); }
.btn-plan {
  display: block;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  transition: all .2s;
}
.btn-plan:hover { border-color: var(--green); color: var(--green); }
.btn-plan.popular-btn {
  background: var(--green);
  border-color: var(--green);
  color: #000;
}
.btn-plan.popular-btn:hover { background: var(--green2); }

.coupon-bar {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.coupon-bar input {
  padding: 10px 16px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.coupon-bar input:focus { border-color: var(--green); }
.coupon-bar button {
  padding: 10px 20px;
  background: var(--green);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw-section { background: var(--dark); }
.hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.hiw-step {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  transition: all .3s;
}
.hiw-step:hover { border-color: rgba(0,229,160,0.3); transform: translateY(-4px); }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: rgba(0,229,160,0.15);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 40px; margin-bottom: 16px; }
.hiw-step h3 { font-size: 22px; margin-bottom: 12px; }
.hiw-step p { color: var(--muted); font-size: 15px; }
.hiw-arrow {
  font-size: 32px;
  color: var(--green);
  padding: 0 16px;
  margin-top: 80px;
  flex-shrink: 0;
}

/* ============================================================
   RULES TABLE
   ============================================================ */
.rules-section { background: var(--black); }
.rules-table-wrap { overflow-x: auto; }
.rules-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.rules-table th, .rules-table td {
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.rules-table th:first-child, .rules-table td:first-child { text-align: left; }
.rules-table thead th {
  background: var(--dark2);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  color: var(--white);
}
.rules-table tbody tr:last-child td { border-bottom: none; }
.rules-table tbody tr:hover td { background: rgba(0,229,160,0.03); }
.rules-table td { color: var(--muted); }
.rules-table td:first-child { color: var(--white); font-weight: 600; }
.rules-table .yes { color: var(--green); font-weight: 700; }

/* ============================================================
   PAYOUTS WALL
   ============================================================ */
.payouts-section { background: var(--dark); }
.payouts-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.payout-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .3s;
}
.payout-card:hover { border-color: rgba(0,229,160,0.3); transform: translateX(4px); }
.pc-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green), #00b4ff);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #000;
  flex-shrink: 0;
}
.pc-info { flex: 1; }
.pc-info strong { display: block; font-size: 15px; font-weight: 700; }
.pc-info span { font-size: 12px; color: var(--muted); }
.pc-amount {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
}
.pc-badge {
  font-size: 11px;
  color: var(--green);
  background: rgba(0,229,160,0.1);
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--black); }
.rating-overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.stars { font-size: 22px; color: var(--gold); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tcard {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s;
}
.tcard:hover { border-color: rgba(0,229,160,0.2); transform: translateY(-3px); }
.tcard-stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; }
.tcard p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green), #00b4ff);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #000;
  flex-shrink: 0;
}
.tcard-author strong { display: block; font-size: 15px; }
.tcard-author small { font-size: 12px; color: var(--muted); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-blob {
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,229,160,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-content {
  position: relative;
  text-align: center;
}
.cta-content h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.cta-content p { font-size: 18px; color: var(--muted); margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--green);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  transition: all .3s;
}
.btn-cta-primary:hover {
  background: var(--green2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,229,160,0.4);
}
.btn-cta-ghost {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all .2s;
}
.btn-cta-ghost:hover { border-color: var(--green); color: var(--green); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--black); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--dark2);
  border: none;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}
.faq-q:hover { background: var(--dark3); }
.faq-q span {
  font-size: 22px;
  color: var(--green);
  transition: transform .3s;
}
.faq-q.open span { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  background: var(--dark2);
}
.faq-a.open { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  margin: 16px 0 24px;
  line-height: 1.7;
}
.footer-socials { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-socials a {
  font-size: 13px;
  color: var(--muted);
  transition: color .2s;
}
.footer-socials a:hover { color: var(--green); }
.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--muted);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.footer-disclaimer {
  margin-top: 8px;
  font-size: 11px;
  opacity: 0.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   LIVE NOTIFICATION POPUP
   ============================================================ */
.live-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--dark2);
  border: 1px solid rgba(0,229,160,0.3);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  z-index: 999;
  animation: slideIn .4s ease;
  transition: opacity .3s;
  max-width: 340px;
}
@keyframes slideIn { from { transform: translateX(-100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.notif-icon { font-size: 24px; }
.notif-text strong { display: block; font-size: 14px; }
.notif-text span { font-size: 13px; color: var(--muted); }
.live-notification button {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  margin-left: auto;
  padding: 0 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
  }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .hiw-steps { flex-direction: column; align-items: center; }
  .hiw-arrow { transform: rotate(90deg); margin: 0; }
  .payouts-wall { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hstat-divider { display: none; }
}

@media (max-width: 480px) {
  .plans-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }
  .trust-logos { gap: 24px; }
  .plan-tab { padding: 8px 16px; font-size: 13px; }
}
