:root {
    --gold: #7F77DD;
    --gold-light: #AFA9EC;
    --gold-dim: rgba(127,119,221,0.15);
    --bg: #080B10;
    --bg2: #0D1118;
    --bg3: #111820;
    --surface: rgba(255,255,255,0.04);
    --surface2: rgba(255,255,255,0.07);
    --border: rgba(127,119,221,0.18);
    --text: #E8EBF0;
    --muted: #7A8494;
    --green: #22C55E;
    --red: #EF4444;
    --blue: #3B82F6;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
  body::before {
    content: ''; position: fixed; inset: 0; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4; pointer-events: none;
  }

  /* =========================================================
     FIX #1 — MOBILE HAMBURGER MENU
  ========================================================= */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    padding: 0 5%; display: flex; align-items: center; justify-content: space-between;
    height: 72px; background: rgba(8,11,16,0.7); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(127,119,221,0.08); transition: background 0.3s;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-icon { width: 40px; height: 40px; background: var(--gold-dim); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
  .nav-logo-icon svg { width: 22px; height: 22px; }
  .nav-logo-text { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px; color: var(--gold); }
  .nav-logo-text span { color: var(--gold); }
  .modal-logo-text span { color: var(--gold); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; position: relative; padding-bottom: 2px; }
  .nav-links a:hover { color: var(--text); }
  .nav-links a.active { color: var(--gold); }
  .nav-links a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--gold); border-radius: 2px; }
  .nav-actions { display: flex; gap: 10px; align-items: center; }

  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 8px; z-index: 201;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px; background: var(--text);
    border-radius: 2px; transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile drawer */
  .mobile-menu {
    display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; z-index: 199;
    background: rgba(8,11,16,0.98); backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: center; gap: 32px;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu a { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 700; color: var(--text); text-decoration: none; transition: color 0.2s; }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu-btns { display: flex; flex-direction: column; gap: 12px; width: 240px; margin-top: 16px; }

  @media (max-width: 900px) {
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
  }

  /* ========== SHARED BUTTONS ========== */
  .btn-ghost { padding: 10px 22px; border-radius: 10px; border: 1px solid var(--border); background: transparent; color: var(--text); cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; transition: all 0.2s; }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
  .btn-nav-cta { padding: 10px 22px; border-radius: 10px; border: none; background: var(--gold); color: #fff; cursor: pointer; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; transition: all 0.2s; }
  .btn-nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-primary { width: 100%; padding: 14px; border-radius: 12px; background: linear-gradient(135deg, var(--gold) 0%, #5C55BB 100%); border: none; color: #fff; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.25s; margin-top: 6px; }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(127,119,221,0.35); }
  .btn-lg { padding: 15px 32px; border-radius: 12px; border: none; background: linear-gradient(135deg, var(--gold) 0%, #5C55BB 100%); color: #fff; cursor: pointer; font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; }
  .btn-lg:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(127,119,221,0.3); }
  .btn-lg-ghost { padding: 15px 32px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); color: var(--text); cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 500; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; }
  .btn-lg-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

  /* ========== MODAL BASE ========== */
  .modal-backdrop {
    position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.8);
    backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 16px;
  }
  .modal-backdrop.active { opacity: 1; pointer-events: all; }
  .modal {
    background: linear-gradient(135deg, #0E1520 0%, #0A1018 100%);
    border: 1px solid var(--border); border-radius: 24px; padding: 48px 44px;
    width: 100%; max-width: 460px; position: relative; overflow-y: auto; max-height: 90vh;
    transform: translateY(30px) scale(0.97); transition: transform 0.35s cubic-bezier(.22,.68,0,1.2);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(127,119,221,0.1);
  }
  .modal-backdrop.active .modal { transform: translateY(0) scale(1); }
  .modal-close { position: absolute; top: 20px; right: 20px; background: var(--surface); border: none; color: var(--muted); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
  .modal-close:hover { background: var(--gold-dim); color: var(--gold); }
  .modal-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
  .modal-logo-icon { width: 36px; height: 36px; background: var(--gold-dim); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
  .modal-logo-icon svg { width: 20px; height: 20px; }
  .modal-logo-text { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; color: var(--gold); }
  .modal-logo-text span { color: var(--gold); }
  .modal h2 { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 6px; }
  .modal p.sub { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
  .tab-row { display: flex; gap: 6px; margin-bottom: 28px; background: var(--surface); padding: 5px; border-radius: 12px; }
  .tab-btn { flex: 1; padding: 10px; border-radius: 8px; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; background: transparent; color: var(--muted); transition: all 0.2s; }
  .tab-btn.active { background: var(--gold); color: #fff; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
  .form-group input, .form-group select { width: 100%; padding: 13px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 15px; outline: none; transition: border-color 0.2s; }
  .form-group input:focus, .form-group select:focus { border-color: var(--gold); }
  .form-group input::placeholder { color: rgba(122,132,148,0.6); }
  .form-group select { appearance: none; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
  .divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
  .divider span { color: var(--muted); font-size: 13px; white-space: nowrap; }
  .oauth-row { display: flex; gap: 10px; }
  .oauth-btn { flex: 1; padding: 11px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); color: var(--text); font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s; }
  .oauth-btn:hover { border-color: var(--gold); background: var(--gold-dim); }
  .modal-switch { text-align: center; margin-top: 20px; color: var(--muted); font-size: 13px; }
  .modal-switch a { color: var(--gold); cursor: pointer; text-decoration: none; }

  /* =========================================================
     FIX NEW #1 — COOKIE CONSENT BANNER
  ========================================================= */
  .cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 5000;
    background: linear-gradient(135deg, #0E1520 0%, #0C1219 100%);
    border-top: 1px solid var(--border);
    padding: 20px 5%; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    box-shadow: 0 -20px 60px rgba(0,0,0,0.5);
    transform: translateY(100%); transition: transform 0.5s cubic-bezier(.22,.68,0,1.2);
  }
  .cookie-banner.show { transform: translateY(0); }
  .cookie-banner p { flex: 1; font-size: 13px; color: var(--muted); line-height: 1.6; min-width: 260px; }
  .cookie-banner p a { color: var(--gold); text-decoration: none; }
  .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
  .cookie-accept { padding: 10px 22px; border-radius: 10px; background: var(--gold); border: none; color: #fff; font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
  .cookie-accept:hover { background: var(--gold-light); }
  .cookie-manage { padding: 10px 22px; border-radius: 10px; background: transparent; border: 1px solid var(--border); color: var(--muted); font-size: 13px; cursor: pointer; transition: all 0.2s; }
  .cookie-manage:hover { border-color: var(--gold); color: var(--gold); }

  /* =========================================================
     FIX NEW #2 — TRADER PROFILE MODAL
  ========================================================= */
  .profile-modal { max-width: 580px; }
  .profile-header { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
  .profile-avatar-lg { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; border: 3px solid var(--border); flex-shrink: 0; }
  .profile-name { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; }
  .profile-loc { font-size: 14px; color: var(--muted); margin-top: 3px; }
  .profile-verified { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--green); background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); border-radius: 20px; padding: 3px 10px; margin-top: 6px; }
  .profile-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 24px; }
  .profile-stat { background: var(--surface); border-radius: 12px; padding: 14px; text-align: center; }
  .profile-stat-val { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; }
  .profile-stat-lbl { font-size: 11px; color: var(--muted); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
  .perf-chart-section { background: var(--surface); border-radius: 14px; padding: 18px; margin-bottom: 20px; }
  .perf-chart-title { font-size: 12px; font-weight: 600; margin-bottom: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
  .perf-bars { display: flex; align-items: center; gap: 8px; height: 90px; }
  .perf-bar-group { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; position: relative; }
  .perf-bar-pos { width: 100%; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--green) 0%, rgba(34,197,94,0.4) 100%); position: absolute; bottom: 20px; }
  .perf-bar-neg { width: 100%; border-radius: 0 0 4px 4px; background: linear-gradient(0deg, var(--red) 0%, rgba(239,68,68,0.4) 100%); position: absolute; top: 0; }
  .perf-bar-val { position: absolute; font-size: 10px; font-weight: 700; white-space: nowrap; top: -16px; left: 50%; transform: translateX(-50%); }
  .perf-bar-lbl { position: absolute; bottom: 0; font-size: 10px; color: var(--muted); white-space: nowrap; left: 50%; transform: translateX(-50%); }
  .risk-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 20px; }
  .risk-metric { background: var(--surface); border-radius: 10px; padding: 12px; text-align: center; }
  .risk-metric-val { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; }
  .risk-metric-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; }

  /* =========================================================
     FIX NEW #3 — RISK CHECKBOX
  ========================================================= */
  .risk-check-wrap { display: flex; align-items: flex-start; gap: 12px; margin: 14px 0 4px; padding: 14px; background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.15); border-radius: 12px; cursor: pointer; }
  .risk-check-wrap input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; accent-color: var(--gold); cursor: pointer; }
  .risk-check-wrap label { font-size: 12px; color: rgba(220,100,100,0.9); line-height: 1.5; cursor: pointer; }

  /* =========================================================
     FIX NEW #4 — FORGOT PASSWORD PANEL
  ========================================================= */
  .forgot-panel { display: none; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px; margin-bottom: 16px; }
  .forgot-panel.show { display: block; animation: fadeUp 0.3s ease; }
  .forgot-panel p { font-size: 13px; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }

  /* Toast */
  .toast {
    position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px);
    background: #1A2332; border: 1px solid var(--border); border-radius: 12px;
    padding: 14px 24px; font-size: 14px; z-index: 9999;
    display: flex; align-items: center; gap: 10px;
    transition: transform 0.4s cubic-bezier(.22,.68,0,1.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); white-space: nowrap;
  }
  .toast.show { transform: translateX(-50%) translateY(0); }
  .toast.success { border-color: rgba(34,197,94,0.3); }
  .toast.error { border-color: rgba(239,68,68,0.3); }

  /* =========================================================
     FIX #2 — AUTH MODALS (with feedback)
  ========================================================= */
  .input-error { border-color: var(--red) !important; }
  .field-error { color: var(--red); font-size: 12px; margin-top: 4px; display: none; }
  .field-error.show { display: block; }
  .password-wrap { position: relative; }
  .password-wrap input { padding-right: 46px; }
  .pwd-toggle { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--muted); cursor: pointer; font-size: 16px; }
  .strength-bar { height: 4px; background: var(--surface2); border-radius: 2px; margin-top: 8px; overflow: hidden; }
  .strength-fill { height: 100%; border-radius: 2px; transition: width 0.3s, background 0.3s; width: 0; }
  .strength-label { font-size: 11px; color: var(--muted); margin-top: 4px; }

  /* =========================================================
     FIX #3 — INVEST MODAL
  ========================================================= */
  .invest-modal { max-width: 520px; }
  .trader-summary { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px; margin-bottom: 24px; }
  .trader-summary-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; border: 2px solid var(--border); }
  .trader-summary-info h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; }
  .trader-summary-info p { font-size: 13px; color: var(--muted); }
  .trader-summary-roi { margin-left: auto; text-align: right; }
  .trader-summary-roi .roi-val { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--green); }
  .trader-summary-roi .roi-lbl { font-size: 11px; color: var(--muted); }

  .plan-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 20px; }
  .plan-card {
    background: var(--surface); border: 2px solid rgba(255,255,255,0.06);
    border-radius: 14px; padding: 16px 12px; cursor: pointer; text-align: center; transition: all 0.2s;
  }
  .plan-card:hover, .plan-card.selected { border-color: var(--gold); background: var(--gold-dim); }
  .plan-card .plan-name { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
  .plan-card .plan-amount { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; }
  .plan-card .plan-return { font-size: 12px; color: var(--green); margin-top: 4px; }

  .amount-input-wrap { position: relative; }
  .amount-input-wrap .currency { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--gold); font-weight: 700; font-size: 16px; }
  .amount-input-wrap input { padding-left: 40px; font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; }

  .invest-breakdown { background: var(--surface); border-radius: 12px; padding: 16px; margin: 16px 0; }
  .breakdown-row { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; }
  .breakdown-row .lbl { color: var(--muted); }
  .breakdown-row .val { font-weight: 600; }
  .breakdown-row.total { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; }
  .breakdown-row.total .val { color: var(--gold); font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; }

  .trust-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
  .trust-badge { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--muted); background: var(--surface); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 4px 10px; }
  .trust-badge span { color: var(--green); }

  /* =========================================================
     FIX #4 — COURSE ENROLL MODAL
  ========================================================= */
  .course-modal { max-width: 540px; }
  .course-modal-thumb { height: 160px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 56px; margin-bottom: 24px; position: relative; overflow: hidden; }
  .course-modal-thumb::before { content: ''; position: absolute; inset: 0; opacity: 0.4; }
  .cm-t1::before { background: linear-gradient(135deg, #7F77DD, #FF6B35); }
  .cm-t2::before { background: linear-gradient(135deg, #3B82F6, #8B5CF6); }
  .cm-t3::before { background: linear-gradient(135deg, #22C55E, #14B8A6); }
  .course-modal-tag { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; display: flex; align-items: center; gap: 5px; }
  .course-modal-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.5s infinite; }
  .course-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 16px 0; }
  .ci { background: var(--surface); border-radius: 10px; padding: 12px 14px; }
  .ci-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
  .ci-val { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-top: 3px; }
  .curriculum-list { margin: 16px 0; display: flex; flex-direction: column; gap: 8px; }
  .curriculum-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
  .curriculum-item::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 13px; flex-shrink: 0; }
  .price-row { display: flex; align-items: center; justify-content: space-between; margin: 20px 0 4px; }
  .price-big { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; }
  .price-big.free-price { color: var(--green); }
  .price-big.paid { color: var(--gold); }
  .price-note { font-size: 13px; color: var(--muted); }

  /* =========================================================
     FIX #5 — TRUST SIGNALS SECTION
  ========================================================= */
  .trust-section { padding: 60px 5%; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .trust-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
  .trust-item { display: flex; align-items: center; gap: 14px; }
  .trust-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--gold-dim); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
  .trust-item h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; }
  .trust-item p { font-size: 12px; color: var(--muted); margin-top: 2px; }
  .trust-license { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 6px 14px; font-size: 12px; color: var(--muted); font-family: 'DM Sans', sans-serif; }
  .trust-license strong { color: var(--gold); display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }

  /* =========================================================
     FIX #6 — FAQ SECTION
  ========================================================= */
  .faq-section { padding: 100px 5%; }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 50px; }
  .faq-list { display: flex; flex-direction: column; gap: 2px; }
  .faq-item { border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
  .faq-item.open { border-color: var(--border); }
  .faq-q {
    width: 100%; text-align: left; background: var(--surface); border: none; color: var(--text);
    padding: 18px 20px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
    transition: background 0.2s;
  }
  .faq-q:hover { background: var(--surface2); }
  .faq-item.open .faq-q { background: var(--gold-dim); color: var(--gold); }
  .faq-chevron { flex-shrink: 0; font-size: 12px; transition: transform 0.3s; color: var(--muted); }
  .faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--gold); }
  .faq-a { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; background: var(--surface); }
  .faq-item.open .faq-a { display: block; }
  .faq-cta-box { background: linear-gradient(145deg, var(--bg3), var(--bg2)); border: 1px solid var(--border); border-radius: 20px; padding: 36px; position: sticky; top: 100px; }
  .faq-cta-box h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 12px; }
  .faq-cta-box p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
  .faq-contact-items { display: flex; flex-direction: column; gap: 10px; }
  .faq-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
  .faq-contact-item span:first-child { font-size: 18px; }

  /* =========================================================
     FIX #7 — RISK WARNING BANNER
  ========================================================= */
  .risk-banner {
    background: rgba(239,68,68,0.06); border-top: 1px solid rgba(239,68,68,0.2);
    padding: 14px 5%; display: flex; align-items: flex-start; gap: 12px;
  }
  .risk-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
  .risk-text { font-size: 12px; color: rgba(239,68,68,0.8); line-height: 1.6; }
  .risk-text strong { color: rgba(239,68,68,1); }

  /* =========================================================
     FIX #8 — LIVE TICKER (animated prices)
  ========================================================= */
  .ticker-wrap { overflow: hidden; background: rgba(127,119,221,0.06); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px 0; }
  .ticker-inner { display: flex; gap: 0; white-space: nowrap; animation: ticker 32s linear infinite; }
  .ticker-inner:hover { animation-play-state: paused; }
  @keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
  .ticker-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 28px; font-size: 13px; }
  .ticker-sym { font-weight: 600; color: var(--text); font-family: 'Syne', sans-serif; font-size: 12px; }
  .ticker-val { color: var(--text); font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; }
  .ticker-chg { font-size: 11px; padding: 2px 7px; border-radius: 6px; }
  .ticker-up { color: var(--green); background: rgba(34,197,94,0.1); }
  .ticker-dn { color: var(--red); background: rgba(239,68,68,0.1); }
  .ticker-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.15); }

  /* ========== HERO ========== */
  .hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; padding: 130px 5% 80px; position: relative; overflow: hidden; }
  .hero-bg { position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 55% 65% at 75% 45%, rgba(127,119,221,0.09) 0%, transparent 65%),
      radial-gradient(ellipse 35% 40% at 15% 70%, rgba(127,119,221,0.05) 0%, transparent 55%),
      radial-gradient(ellipse 30% 30% at 90% 90%, rgba(34,197,94,0.03) 0%, transparent 50%);
  }
  .hero-bg::after { content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(127,119,221,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(127,119,221,0.04) 1px, transparent 1px);
    background-size: 52px 52px; mask-image: radial-gradient(ellipse 80% 80% at center, black 20%, transparent 75%);
  }
  .hero-content { position: relative; z-index: 1; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }
  @keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
  @keyframes fadeIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
  @keyframes lineGrow { to { transform: scaleX(1); } }

  /* Badge */
  .hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 7px 18px 7px 10px; border-radius: 100px; border: 1px solid var(--border); background: rgba(127,119,221,0.08); font-size: 13px; color: var(--gold); margin-bottom: 30px; animation: fadeUp 0.7s ease both; }
  .hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; position: relative; }
  .hero-badge-dot::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; background: rgba(34,197,94,0.25); animation: pulse 2s infinite; }
  .hero-badge-count { font-family: 'Syne', sans-serif; font-weight: 800; color: var(--text); font-size: 14px; }
  .hero-badge-sep { width: 1px; height: 14px; background: var(--border); }

  /* Headline */
  .hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(30px, 3.4vw, 50px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; animation: fadeUp 0.7s 0.1s ease both; letter-spacing: -0.02em; }
  .hero h1 .h1-line1 { display: block; color: var(--muted); font-size: 0.325em; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; font-family: 'DM Sans', sans-serif; }
  .hero h1 em { font-style: normal; color: var(--gold); position: relative; }
  .hero h1 em::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 3px; background: var(--gold); border-radius: 2px; transform: scaleX(0); transform-origin: left; animation: lineGrow 0.8s 0.8s ease forwards; }

  /* Subtext */
  .hero-sub { font-size: 16px; line-height: 1.75; color: var(--muted); max-width: 480px; margin-bottom: 36px; animation: fadeUp 0.7s 0.2s ease both; }
  .hero-sub strong { color: var(--text); font-weight: 600; }

  /* CTAs */
  .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; margin-bottom: 44px; }

  /* Social proof strip */
  .hero-proof { display: flex; align-items: center; gap: 16px; animation: fadeUp 0.7s 0.4s ease both; flex-wrap: wrap; }
  .proof-avatars { display: flex; }
  .proof-avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg); font-size: 14px; display: flex; align-items: center; justify-content: center; margin-left: -8px; }
  .proof-avatar:first-child { margin-left: 0; }
  .proof-text { font-size: 13px; color: var(--muted); line-height: 1.5; }
  .proof-text strong { color: var(--text); display: block; font-size: 14px; }
  .proof-divider { width: 1px; height: 28px; background: var(--border); }
  .proof-stat { text-align: center; }
  .proof-stat-val { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--gold); }
  .proof-stat-lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
  .hero-mobile-strip { display: none; gap: 0; margin-top: 36px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
  .hero-mobile-strip-item { flex: 1; padding: 16px; text-align: center; border-right: 1px solid var(--border); }
  .hero-mobile-strip-item:last-child { border-right: none; }
  .hero-mobile-strip-val { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--gold); }
  .hero-mobile-strip-lbl { font-size: 11px; color: var(--muted); margin-top: 3px; }

  /* Hero visual */
  .hero-visual { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; animation: fadeIn 1s 0.5s ease both; width: 100%; }

  /* Signal card */
  .signal-card { background: linear-gradient(145deg, rgba(17,22,34,0.98) 0%, rgba(13,17,26,0.98) 100%); border: 1px solid var(--border); border-radius: 20px; padding: 22px 24px; backdrop-filter: blur(24px); box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(127,119,221,0.08); }
  .signal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
  .signal-pair { display: flex; align-items: center; gap: 10px; }
  .signal-pair-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px; }
  .signal-pair-sub { font-size: 12px; color: var(--muted); margin-top: 1px; }
  .signal-direction { display: flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 8px; font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 1px; }
  .signal-buy { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
  .signal-levels { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 16px; }
  .signal-level { background: var(--surface); border-radius: 10px; padding: 10px 12px; }
  .sl-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; }
  .sl-val { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800; margin-top: 3px; }
  .signal-analysis { background: rgba(127,119,221,0.06); border: 1px solid rgba(127,119,221,0.12); border-radius: 12px; padding: 12px 14px; margin-bottom: 16px; }
  .signal-analysis-label { font-size: 10px; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 5px; display: flex; align-items: center; gap: 6px; }
  .signal-analysis p { font-size: 13px; color: var(--muted); line-height: 1.6; }
  .signal-analysis p strong { color: var(--text); }
  .signal-meta { display: flex; align-items: center; justify-content: space-between; }
  .signal-trader { display: flex; align-items: center; gap: 8px; font-size: 13px; }
  .signal-trader-av { width: 28px; height: 28px; border-radius: 50%; background: rgba(127,119,221,0.15); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; }
  .signal-trader-name { font-weight: 600; color: var(--text); }
  .signal-trader-roi { font-size: 11px; color: var(--green); }
  .signal-time { font-size: 11px; color: var(--muted); }

  /* Discussion thread */
  .discussion-card { background: linear-gradient(145deg, rgba(17,22,34,0.96) 0%, rgba(13,17,26,0.96) 100%); border: 1px solid var(--border); border-radius: 16px; padding: 16px 20px; backdrop-filter: blur(24px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
  .discussion-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
  .discussion-title { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 7px; }
  .disc-live { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1.5s infinite; }
  .disc-count { font-size: 11px; color: var(--muted); background: var(--surface); padding: 2px 8px; border-radius: 10px; }
  .disc-messages { display: flex; flex-direction: column; gap: 10px; }
  .disc-msg { display: flex; gap: 9px; align-items: flex-start; }
  .disc-av { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; border: 1px solid var(--border); }
  .disc-bubble { background: var(--surface); border-radius: 0 10px 10px 10px; padding: 8px 12px; flex: 1; }
  .disc-name { font-size: 11px; font-weight: 700; color: var(--gold); margin-bottom: 2px; }
  .disc-text { font-size: 12px; color: var(--muted); line-height: 1.5; }
  .disc-text .hl { color: var(--text); font-weight: 600; }
  .disc-text .up { color: var(--green); font-weight: 600; }
  .disc-text .dn { color: var(--red); font-weight: 600; }
  .signal-copy-btn { width: 100%; margin-top: 14px; padding: 11px; border-radius: 10px; background: var(--gold-dim); border: 1px solid var(--border); color: var(--gold); font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; transition: all 0.2s; }
  .signal-copy-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
  .disc-join-btn { width: 100%; margin-top: 12px; padding: 9px; border-radius: 9px; background: var(--surface); border: 1px solid var(--border); color: var(--muted); font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; transition: all 0.2s; }
  .disc-join-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
  @keyframes floatAnim { 0%,100%{transform:translateY(-50%) translateX(0)} 50%{transform:translateY(calc(-50% - 8px)) translateX(0)} }

  /* ========== SECTIONS ========== */
  section { padding: 100px 5%; position: relative; }
  .section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 16px; }
  .section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
  .section-title { font-family: 'Syne', sans-serif; font-size: clamp(32px, 4vw, 50px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
  .section-sub { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 520px; }

  /* HOW IT WORKS */
  .how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
  .how-steps { display: flex; flex-direction: column; gap: 0; }
  .how-step { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: all 0.3s; }
  .how-step:last-child { border-bottom: none; }
  .how-step:hover .how-step-icon { border-color: var(--gold); background: var(--gold-dim); }
  .how-step-icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 22px; transition: all 0.3s; }
  .how-step-num { font-family: 'Syne', sans-serif; font-size: 11px; color: var(--gold); font-weight: 700; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
  .how-step h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
  .how-step p { font-size: 14px; color: var(--muted); line-height: 1.65; }
  .how-visual { background: linear-gradient(145deg, var(--bg2) 0%, var(--bg3) 100%); border: 1px solid var(--border); border-radius: 24px; padding: 32px; }
  .portfolio-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
  .portfolio-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--muted); }
  .portfolio-val { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; }
  .portfolio-chg { font-size: 13px; color: var(--green); margin-top: 2px; }
  .portfolio-bar { height: 8px; background: var(--surface2); border-radius: 4px; margin: 20px 0; overflow: hidden; }
  .portfolio-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%); width: 68%; }
  .allocation-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
  .alloc-item { display: flex; align-items: center; gap: 12px; }
  .alloc-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
  .alloc-name { flex: 1; font-size: 14px; color: var(--muted); }
  .alloc-pct { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; }
  .alloc-bar { flex: 2; height: 4px; background: var(--surface2); border-radius: 2px; overflow: hidden; }
  .alloc-fill { height: 100%; border-radius: 2px; }

  /* STATS */
  .stats-section { background: linear-gradient(135deg, rgba(127,119,221,0.06) 0%, rgba(59,130,246,0.04) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
  .stat-block { padding: 52px 32px; border-right: 1px solid var(--border); }
  .stat-block:last-child { border-right: none; }
  .stat-num { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; color: var(--gold); }
  .stat-label { font-size: 15px; color: var(--muted); margin-top: 6px; }

  /* TRADERS */
  .traders-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
  .traders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .trader-card { background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 28px; transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden; }
  .trader-card::before { content: ''; position: absolute; inset: 0; border-radius: 20px; background: radial-gradient(circle at 50% 0%, rgba(127,119,221,0.08) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; }
  .trader-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
  .trader-card:hover::before { opacity: 1; }
  .trader-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
  .trader-avatar { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: "Syne", sans-serif; font-size: 15px; font-weight: 800; border: 2px solid var(--border); letter-spacing: -0.5px; }
  .trader-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; }
  .trader-flag { font-size: 12px; color: var(--muted); }
  .trader-badge { margin-left: auto; padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
  .badge-gold { background: rgba(127,119,221,0.15); color: var(--gold); border: 1px solid rgba(127,119,221,0.25); }
  .badge-pro { background: rgba(59,130,246,0.15); color: #7BA8F0; border: 1px solid rgba(59,130,246,0.25); }
  .badge-top { background: rgba(34,197,94,0.12); color: #6EE0A0; border: 1px solid rgba(34,197,94,0.25); }
  .trader-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
  .ts { background: var(--surface); border-radius: 10px; padding: 12px 14px; }
  .ts-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
  .ts-val { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; margin-top: 2px; }
  .ts-val.green { color: var(--green); }
  .trader-invest-btn { width: 100%; padding: 12px; border-radius: 10px; border: 1px solid var(--border); background: transparent; color: var(--gold); cursor: pointer; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; transition: all 0.25s; }
  .trader-invest-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

  /* COURSES */
  .courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
  .course-card { background: var(--bg3); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; overflow: hidden; transition: all 0.3s; cursor: pointer; }
  .course-card:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
  .course-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 52px; position: relative; overflow: hidden; }
  .course-thumb::before { content: ''; position: absolute; inset: 0; opacity: 0.3; }
  .course-thumb-1::before { background: linear-gradient(135deg, #7F77DD, #FF6B35); }
  .course-thumb-2::before { background: linear-gradient(135deg, #3B82F6, #8B5CF6); }
  .course-thumb-3::before { background: linear-gradient(135deg, #22C55E, #14B8A6); }
  .course-live-badge { position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; display: flex; align-items: center; gap: 5px; text-transform: uppercase; }
  .course-live-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.5s infinite; }
  .course-free { position: absolute; top: 14px; right: 14px; background: var(--green); color: #000; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; }
  .course-body { padding: 22px; }
  .course-tags { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
  .course-tag { padding: 3px 10px; border-radius: 20px; font-size: 11px; color: var(--muted); background: var(--surface); }
  .course-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 8px; }
  .course-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
  .course-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
  .course-instructor { display: flex; align-items: center; gap: 8px; }
  .instructor-avatar { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: "Syne", sans-serif; font-size: 9px; font-weight: 800; border: 1px solid var(--border); }
  .instructor-name { font-size: 13px; color: var(--muted); }
  .course-price { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--gold); }
  .course-price.free { color: var(--green); font-size: 14px; }
  /* FIX: Enroll button on course cards */
  .course-enroll-btn { width: 100%; padding: 11px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); color: var(--text); font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
  .course-enroll-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
  .course-enroll-btn.free-btn:hover { background: var(--green); border-color: var(--green); }

  /* TESTIMONIALS */
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
  .testimonial-card { background: var(--bg2); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 28px; position: relative; }
  .testimonial-card::before { content: '"'; position: absolute; top: -10px; left: 24px; font-family: 'Syne', sans-serif; font-size: 80px; color: var(--gold); opacity: 0.3; line-height: 1; }
  .testimonial-text { font-size: 15px; line-height: 1.7; color: var(--muted); margin-bottom: 22px; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .ta-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: "Syne", sans-serif; font-size: 12px; font-weight: 800; border: 1px solid var(--border); }
  .ta-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; }
  .ta-role { font-size: 12px; color: var(--muted); }
  .stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }

  /* CTA */
  .cta-section { text-align: center; background: radial-gradient(ellipse 80% 60% at center, rgba(127,119,221,0.07) 0%, transparent 70%); }
  .cta-btns { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

  /* FOOTER */
  footer { border-top: 1px solid var(--border); padding: 60px 5% 0; background: var(--bg2); }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
  .footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-top: 14px; max-width: 280px; }
  .footer-col h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 18px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; gap: 12px; }
  .footer-bottom p { color: var(--muted); font-size: 13px; }
  .social-row { display: flex; gap: 10px; }
  .social-btn { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border); background: var(--surface); display: flex; align-items: center; justify-content: center; color: var(--muted); cursor: pointer; font-size: 14px; transition: all 0.2s; text-decoration: none; }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

  /* ========== RESPONSIVE ========== */
  /* ========== RESPONSIVE ========== */

  /* Tablet — 1100px */
  @media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: flex; }
    .hero-content { max-width: 100%; }
    .hero-mobile-strip { display: flex !important; }
    .how-grid { grid-template-columns: 1fr; }
    .traders-grid, .courses-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-block { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-block:nth-child(odd) { border-right: 1px solid var(--border); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-cta-box { position: static; }
    .trust-inner { justify-content: flex-start; gap: 28px; }
    .plan-grid { grid-template-columns: 1fr 1fr 1fr; }
    .traders-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .how-visual { display: none; }
  }

  /* Desktop only */
  @media (min-width: 1101px) {
    .hero-mobile-strip { display: none !important; }
  }

  /* Mobile — 700px */
  @media (max-width: 700px) {
    nav { padding: 0 4%; }
    section { padding: 60px 4%; }
    .hero { padding: 100px 4% 60px; grid-template-columns: 1fr; }
    .hero h1 { font-size: clamp(32px, 10vw, 48px); letter-spacing: -0.01em; }
    .hero-badge { font-size: 12px; padding: 6px 14px 6px 8px; }
    .hero-sub { font-size: 15px; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .hero-btns .btn-lg, .hero-btns .btn-lg-ghost { width: 100%; max-width: 360px; justify-content: center; }
    .hero-proof { gap: 10px; flex-wrap: wrap; }
    .proof-divider { display: none; }
    .hero-mobile-strip { margin-top: 28px; }
    .traders-grid, .courses-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-block { border-right: none !important; padding: 32px 20px; }
    .stat-num { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .modal { padding: 28px 18px; border-radius: 16px; }
    .modal h2 { font-size: 22px; }
    .form-row { grid-template-columns: 1fr; }
    .plan-grid { grid-template-columns: 1fr; }
    .course-info-grid { grid-template-columns: 1fr 1fr; }
    .trust-inner { flex-direction: column; gap: 20px; }
    .trust-item { width: 100%; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-cta-box { margin-top: 0; }
    .section-title { font-size: clamp(26px, 8vw, 40px); }
    .how-step { gap: 14px; padding: 20px 0; }
    .trader-stats { grid-template-columns: 1fr 1fr; }
    .signal-levels { grid-template-columns: 1fr 1fr 1fr; }
    .invest-modal { padding: 24px 16px; }
    .plan-card { padding: 14px 10px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btns .btn-lg, .cta-btns .btn-lg-ghost { width: 100%; max-width: 320px; justify-content: center; }
    .risk-banner { flex-direction: column; gap: 8px; }
    .course-modal-thumb { height: 120px; }
    .signal-card, .discussion-card { border-radius: 14px; }
    .hero-mobile-strip-val { font-size: 16px; }
    .stats-section { padding: 0; }
  }

  /* Very small — 400px */
  @media (max-width: 400px) {
    .hero h1 { font-size: 30px; }
    .hero-badge { flex-wrap: wrap; }
    .hero-btns .btn-lg, .hero-btns .btn-lg-ghost { font-size: 14px; padding: 13px 20px; }
    .modal { padding: 24px 14px; }
    .plan-grid { gap: 8px; }
    .trust-inner { gap: 16px; }
    .oauth-row { flex-direction: column; }
  }

  /* ========== WHATSAPP FLOATING BUTTON ========== */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 9999;
    display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  }
  .wa-tooltip {
    background: #fff; color: #111; font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 500; padding: 10px 16px; border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15); white-space: nowrap;
    opacity: 0; transform: translateX(10px); pointer-events: none;
    transition: all 0.25s; position: relative;
  }
  .wa-tooltip::after {
    content: ''; position: absolute; right: -7px; top: 50%;
    transform: translateY(-50%); border: 7px solid transparent;
    border-right: none; border-left-color: #fff;
  }
  .wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
  .wa-btn {
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: waPulse 2.5s ease-in-out infinite;
  }
  .wa-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); animation: none; }
  .wa-btn svg { width: 30px; height: 30px; fill: #fff; }
  @keyframes waPulse {
    0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
  }