* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', Arial, Tahoma, sans-serif; }

:root {
  --green: #10b981;
  --green-dark: #047857;
  --green-soft: #ecfdf5;
  --dark: #101828;
  --gray: #667085;
  --line: #e4e7ec;
  --white: #ffffff;
  --gold: #f59e0b;
  --gold-soft: #fffbeb;
  --blue: #2563eb;
  --blue-soft: #dbeafe;
  --purple: #8b5cf6;
  --purple-soft: #f3e8ff;
  --red: #ef4444;
  --orange: #f97316;
  --pink: #ec4899;
  --cyan: #06b6d4;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  color: var(--dark);
  background:
    radial-gradient(circle at top right, rgba(16,185,129,.14), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f3f8f6 45%, #eef6f2 100%);
}

.container {
  max-width: 1240px;
  margin: auto;
  padding: 0 24px;
}

/* ==================== TOPBAR ==================== */
.topbar-wrap {
  position: sticky;
  top: 16px;
  z-index: 100;
  padding: 0 24px;
}

.topbar {
  max-width: 1240px;
  margin: 16px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 14px 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(16,24,40,.06);
}

.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; font-size: 24px; color: var(--green-dark);
  text-decoration: none;
}
.brand-icon {
  width: 38px; height: 38px; border-radius: 13px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white; display: grid; place-items: center;
  box-shadow: 0 12px 24px rgba(16,185,129,.25);
  font-weight: 900;
  font-size: 16px;
}
.nav {
  display: flex; gap: 22px;
  color: var(--gray); font-size: 14px; font-weight: 800;
}
.nav a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
}
.nav a:hover { color: var(--green-dark); }
.nav a.active { color: var(--green-dark); }

.actions { display: flex; gap: 10px; align-items: center; }

.lang-switch {
  display: flex; align-items: center; gap: 6px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.btn {
  border: 0; border-radius: 16px; padding: 13px 20px;
  cursor: pointer; font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  box-shadow: 0 14px 26px rgba(16,185,129,.24);
  font-family: inherit;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn.light { background: #f2f4f7; color: #344054; box-shadow: none; }
.btn.gold { background: linear-gradient(135deg, #fbbf24, var(--gold)); box-shadow: 0 14px 26px rgba(245,158,11,.28); }
.btn.dark { background: linear-gradient(135deg, #111827, #1f2937); }
.btn.outline { background: transparent; color: var(--green-dark); border: 1.5px solid var(--green); box-shadow: none; }
.btn.small { padding: 9px 16px; font-size: 13px; border-radius: 12px; }
.btn.large { padding: 18px 32px; font-size: 16px; border-radius: 18px; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--dark);
}

/* ==================== HERO ==================== */
.hero {
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content { }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .5px;
  margin-bottom: 22px;
}
.hero-tag::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.hero h1 {
  font-size: 64px;
  letter-spacing: -2.5px;
  line-height: 1.05;
  font-weight: 950;
  margin-bottom: 22px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .gold-text {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray);
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

.asset-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.asset-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  transition: all .2s;
}
.asset-pill:hover {
  border-color: var(--green);
  background: var(--green-soft);
  transform: translateY(-2px);
}
.asset-pill .icon { font-size: 16px; }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.5px;
  color: var(--green-dark);
}
.hero-stat span {
  font-size: 12px;
  color: var(--gray);
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* Hero Right - Live Stats Card */
.hero-card {
  background: linear-gradient(135deg, #111827, #1f2937 55%, #064e3b);
  color: white;
  border-radius: 32px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(16,24,40,.18);
}
.hero-card::before {
  content: ""; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(16,185,129,.22);
  right: -100px; top: -120px;
}
.hero-card::after {
  content: ""; position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(245,158,11,.18);
  left: -60px; bottom: -80px;
}
.hero-card > * { position: relative; z-index: 1; }

.hero-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(16,185,129,.20);
  border: 1px solid rgba(52,211,153,.4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5px;
  color: #6ee7b7;
  margin-bottom: 20px;
}
.hero-card-tag::before {
  content: "";
  width: 6px; height: 6px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-card h3 {
  font-size: 16px;
  color: #d1fae5;
  font-weight: 800;
  margin-bottom: 6px;
}
.hero-card-amount {
  font-size: 48px;
  font-weight: 950;
  letter-spacing: -2px;
  color: white;
  margin-bottom: 4px;
}
.hero-card-period {
  font-size: 14px;
  color: #d1fae5;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-card-progress {
  height: 8px;
  background: rgba(255,255,255,.10);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
}
.hero-card-progress-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--green), #fbbf24);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.hero-card-progress-fill::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  animation: shimmer 2.5s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-mini-stat {
  padding: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
}
.hero-mini-stat strong {
  display: block;
  font-size: 18px;
  font-weight: 950;
  color: white;
}
.hero-mini-stat span {
  font-size: 11px;
  color: #d1fae5;
  font-weight: 800;
}

/* ==================== ASSET CATEGORIES ==================== */
.section {
  padding: 60px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 44px;
}
.section-tag {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section h2 {
  font-size: 44px;
  letter-spacing: -1.5px;
  line-height: 1.15;
  font-weight: 950;
  margin-bottom: 14px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section h2 .highlight {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  font-size: 17px;
  color: var(--gray);
  font-weight: 700;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

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

.category-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 44px rgba(16,24,40,.06);
  transition: all .3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(16,24,40,.12);
}
.category-card::before {
  content: ""; position: absolute;
  width: 140px; height: 140px; border-radius: 50%;
  opacity: .08;
  right: -40px; top: -40px;
  transition: all .3s;
}
.category-card:hover::before {
  transform: scale(1.5);
  opacity: .12;
}
.category-card.forex::before { background: var(--green); }
.category-card.metals::before { background: var(--gold); }
.category-card.crypto::before { background: var(--orange); }
.category-card.indices::before { background: var(--blue); }
.category-card.energy::before { background: var(--red); }
.category-card.stocks::before { background: var(--purple); }
.category-card.commodities::before { background: #84cc16; }

.cat-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.cat-icon.forex { background: var(--green-soft); }
.cat-icon.metals { background: var(--gold-soft); }
.cat-icon.crypto { background: #fff7ed; }
.cat-icon.indices { background: var(--blue-soft); }
.cat-icon.energy { background: #fef2f2; }
.cat-icon.stocks { background: var(--purple-soft); }
.cat-icon.commodities { background: #f7fee7; }

.cat-card h3 {
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 6px;
  letter-spacing: -.5px;
  position: relative;
}
.cat-card .sub {
  font-size: 13px;
  color: var(--gray);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}
.cat-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  position: relative;
}
.cat-stats strong {
  display: block;
  font-size: 18px;
  font-weight: 950;
  color: var(--green-dark);
  letter-spacing: -.3px;
}
.cat-stats span {
  font-size: 11px;
  color: var(--gray);
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.cat-rate {
  text-align: right;
}
.cat-rate strong { color: var(--gold); }

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
  background: white;
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 60px 40px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(16,24,40,.06);
}
.how-it-works::before {
  content: ""; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(16,185,129,.05);
  right: -150px; top: -150px;
}
.how-it-works > * { position: relative; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.step {
  text-align: center;
  position: relative;
}
.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 36px;
  right: -20px;
  font-size: 22px;
  color: var(--green);
  font-weight: 900;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 28px;
  margin: 0 auto 18px;
  box-shadow: 0 14px 34px rgba(16,185,129,.28);
  position: relative;
  z-index: 2;
}
.step h4 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.step p {
  font-size: 14px;
  color: var(--gray);
  font-weight: 700;
  line-height: 1.7;
}

/* ==================== STATS BANNER ==================== */
.stats-banner {
  background: linear-gradient(135deg, #111827, #1f2937 55%, #064e3b);
  color: white;
  border-radius: 36px;
  padding: 60px 40px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(16,24,40,.18);
}
.stats-banner::before {
  content: ""; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(16,185,129,.22);
  left: -120px; top: -150px;
}
.stats-banner::after {
  content: ""; position: absolute;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(245,158,11,.18);
  right: -100px; bottom: -120px;
}
.stats-banner > * { position: relative; z-index: 1; }

.stats-banner h2 {
  color: white;
  text-align: center;
  font-size: 36px;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.stats-banner .sub {
  text-align: center;
  color: #d1fae5;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat-block {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 26px;
  text-align: center;
  transition: all .25s;
}
.stat-block:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.12);
}
.stat-block-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.stat-block strong {
  display: block;
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.stat-block span {
  font-size: 12px;
  color: #d1fae5;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* ==================== TOP BROKERS ==================== */
.brokers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.broker-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 44px rgba(16,24,40,.06);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.broker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(16,24,40,.12);
}
.broker-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.broker-logo {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #111827, #1f2937);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 22px;
  flex: 0 0 auto;
  box-shadow: 0 8px 20px rgba(16,24,40,.18);
}
.broker-info h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 4px;
}
.broker-info .rating {
  font-size: 13px;
  color: var(--gold);
  font-weight: 800;
}
.broker-cashback {
  background: linear-gradient(135deg, var(--green-soft), #fef3c7);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  margin-bottom: 18px;
  border: 1px solid rgba(16,185,129,.2);
}
.broker-cashback strong {
  display: block;
  font-size: 28px;
  font-weight: 950;
  color: var(--green-dark);
  letter-spacing: -.5px;
}
.broker-cashback span {
  font-size: 11px;
  color: var(--gray);
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.broker-assets {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.asset-badge {
  padding: 4px 10px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

/* ==================== TOP TRADERS ==================== */
.traders-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.trader-card {
  background: linear-gradient(180deg, white, #fffbeb);
  border: 2px solid var(--gold);
  border-radius: 28px;
  padding: 28px;
  text-align: center;
  position: relative;
  transition: all .3s;
}
.trader-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(245,158,11,.25); }
.trader-card.silver {
  background: linear-gradient(180deg, white, #f1f5f9);
  border-color: #94a3b8;
}
.trader-card.bronze {
  background: linear-gradient(180deg, white, #fff7ed);
  border-color: #fb923c;
}
.medal {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.2));
}
.trader-avatar {
  width: 72px; height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, #111827, #1f2937);
  color: white;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 950;
  margin: 0 auto 16px;
  border: 4px solid white;
  box-shadow: 0 12px 28px rgba(16,24,40,.18);
}
.trader-card h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 4px;
}
.trader-personality {
  display: inline-block;
  padding: 4px 12px;
  background: var(--purple-soft);
  color: #6b21a8;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 16px;
}
.trader-cashback {
  font-size: 30px;
  font-weight: 950;
  color: var(--green-dark);
  letter-spacing: -.5px;
  margin-bottom: 4px;
}
.trader-card .label {
  font-size: 11px;
  color: var(--gray);
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* ==================== FEATURES ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.feature-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 14px 44px rgba(16,24,40,.06);
  transition: all .3s;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
}
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--green-soft), #fef3c7);
  display: grid;
  place-items: center;
  font-size: 30px;
  margin: 0 auto 18px;
}
.feature-card h3 {
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--gray);
  font-weight: 700;
  line-height: 1.7;
}

/* ==================== LEADERBOARD PREVIEW ==================== */
.leaderboard-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 44px;
  box-shadow: 0 24px 80px rgba(16,24,40,.08);
  margin-top: 36px;
}
.leaderboard-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.lb-tab {
  padding: 9px 16px;
  background: #f8fafc;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: all .2s;
}
.lb-tab.active {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  border-color: var(--green-dark);
}

.lb-row {
  display: grid;
  grid-template-columns: 50px 60px 1fr 120px 100px;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 8px;
  transition: all .2s;
}
.lb-row:hover {
  background: white;
  border-color: var(--green);
  transform: translateX(4px);
}
.lb-rank {
  font-size: 22px;
  font-weight: 950;
  color: var(--gray);
  text-align: center;
}
.lb-rank.gold { color: var(--gold); }
.lb-rank.silver { color: #94a3b8; }
.lb-rank.bronze { color: #c2410c; }
.lb-avatar {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #111827, #1f2937);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 18px;
}
.lb-info strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 2px;
}
.lb-info .meta {
  font-size: 12px;
  color: var(--gray);
  font-weight: 700;
}
.lb-cashback {
  text-align: right;
  font-size: 18px;
  font-weight: 950;
  color: var(--green-dark);
}
.lb-streak {
  text-align: right;
  font-size: 13px;
  color: var(--orange);
  font-weight: 900;
}

/* ==================== CALCULATOR ==================== */
.calculator-card {
  background: linear-gradient(135deg, var(--green-soft), #fef3c7);
  border: 2px solid var(--green);
  border-radius: 36px;
  padding: 44px;
  margin-top: 36px;
  position: relative;
  overflow: hidden;
}
.calculator-card::before {
  content: ""; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(16,185,129,.10);
  right: -100px; top: -100px;
}
.calculator-card::after {
  content: ""; position: absolute;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(245,158,11,.10);
  left: -80px; bottom: -80px;
}
.calculator-card > * { position: relative; z-index: 1; }

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.calc-inputs label {
  display: block;
  font-size: 12px;
  color: var(--gray);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.calc-inputs input,
.calc-inputs select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  background: white;
  outline: none;
  margin-bottom: 16px;
  transition: all .2s;
}
.calc-inputs input:focus,
.calc-inputs select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,.12);
}

.calc-result {
  background: white;
  border-radius: 22px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 14px 44px rgba(16,24,40,.08);
}
.calc-result .label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.calc-result .amount {
  font-size: 64px;
  font-weight: 950;
  color: var(--green-dark);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.calc-result .period {
  font-size: 14px;
  color: var(--gray);
  font-weight: 800;
  margin-bottom: 24px;
}
.calc-result .extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.calc-result .extra-box {
  background: var(--green-soft);
  border-radius: 14px;
  padding: 12px;
}
.calc-result .extra-box strong {
  display: block;
  font-size: 18px;
  font-weight: 950;
  color: var(--dark);
}
.calc-result .extra-box span {
  font-size: 11px;
  color: var(--gray);
  font-weight: 800;
}

/* ==================== FAQ ==================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: all .2s;
}
.faq-item:hover { border-color: var(--green); }
.faq-item.open { border-color: var(--green); background: var(--green-soft); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--dark);
}
.faq-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f8fafc;
  display: grid;
  place-items: center;
  font-size: 12px;
  transition: all .25s;
  flex: 0 0 auto;
}
.faq-item.open .faq-arrow {
  background: var(--green-dark);
  color: white;
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--gray);
  font-weight: 700;
  line-height: 1.8;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.testimonial {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 44px rgba(16,24,40,.06);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #111827, #1f2937);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
}
.testimonial-info strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 2px;
}
.testimonial-info span {
  font-size: 12px;
  color: var(--gray);
  font-weight: 700;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
  background: linear-gradient(135deg, #111827, #1f2937 55%, #064e3b);
  color: white;
  border-radius: 36px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  box-shadow: 0 32px 100px rgba(16,24,40,.20);
}
.final-cta::before {
  content: ""; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(16,185,129,.22);
  left: -150px; top: -200px;
}
.final-cta::after {
  content: ""; position: absolute;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(245,158,11,.18);
  right: -120px; bottom: -160px;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: 52px;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: white;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta p {
  font-size: 17px;
  color: #d1fae5;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-meta {
  margin-top: 28px;
  font-size: 13px;
  color: #d1fae5;
  font-weight: 800;
  opacity: .8;
}

/* ==================== FOOTER ==================== */
.footer {
  background: #0a1018;
  color: white;
  padding: 60px 24px 30px;
  margin-top: 80px;
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--green);
}
.footer-brand p {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 18px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: all .2s;
}
.footer-social a:hover {
  background: var(--green);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: white;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p {
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: none;
  font-weight: 700;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .brokers-grid, .traders-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav { display: none; }
  .hero { padding: 40px 0 30px; }
  .hero h1 { font-size: 40px; letter-spacing: -1.5px; }
  .section { padding: 40px 0; }
  .section h2 { font-size: 32px; }
  .how-it-works, .stats-banner, .leaderboard-card, .calculator-card {
    padding: 36px 22px;
    border-radius: 24px;
  }
  .step:nth-child(1)::after, .step:nth-child(3)::after { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .lb-row { grid-template-columns: 40px 50px 1fr 90px; }
  .lb-row > .col-hide { display: none; }
  .final-cta { padding: 50px 24px; border-radius: 24px; }
  .final-cta h2 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
