/* ─── RESET & BASE ─────────────────────────────────── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    :root {
      --bg:        #04090f;
      --bg2:       #080f1a;
      --bg3:       #0c1525;
      --card:      #0e1a2e;
      --border:    rgba(255,255,255,.06);
      --gold:      #f0a500;
      --gold2:     #ffcc44;
      --cyan:      #00c8f0;
      --green:     #00e67a;
      --red:       #ff4d6a;
      --text:      #dde4f0;
      --muted:     #6b7a94;
      --font-head: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
    }

    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    .container {
      width: min(1200px, 94%);
      margin: 0 auto;
    }

    .section { padding: 100px 0; }
    .section-sm { padding: 70px 0; }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: var(--font-head);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(240,165,0,.1);
      border: 1px solid rgba(240,165,0,.25);
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .tag::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse-dot 1.6s infinite;
    }

    @keyframes pulse-dot {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:.4; transform:scale(.6); }
    }

    h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.18; }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      margin-bottom: 18px;
    }

    .section-sub {
      color: var(--muted);
      max-width: 560px;
      font-size: 1.05rem;
    }

    .accent  { color: var(--gold); }
    .accent2 { color: var(--cyan); }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: .92rem;
      letter-spacing: .04em;
      padding: 14px 32px;
      border-radius: 8px;
      cursor: pointer;
      border: none;
      transition: all .25s ease;
    }

    .btn-primary {
      background: var(--gold);
      color: #000;
    }
    .btn-primary:hover {
      background: var(--gold2);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(240,165,0,.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
    }
    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    /* ─── TICKER ─────────────────────────────────────────── */
    .ticker-bar {
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      padding: 9px 0;
      font-size: .82rem;
      font-family: var(--font-head);
      font-weight: 600;
    }

    .ticker-track {
      display: flex;
      gap: 50px;
      animation: ticker-scroll 32s linear infinite;
      width: max-content;
    }

    .ticker-track:hover { animation-play-state: paused; }

    .ticker-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
    .ticker-item .sym { color: var(--gold); }
    .ticker-item .price { color: var(--text); }
    .ticker-item .chg.up   { color: var(--green); }
    .ticker-item .chg.down { color: var(--red); }

    @keyframes ticker-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── HEADER ─────────────────────────────────────────── */
    .header {
      position: fixed;
      top: 34px;  /* below ticker */
      left: 0; right: 0;
      z-index: 1000;
      transition: top .3s;
    }

    .header.scrolled {
      top: 0;
    }

    .header-inner {
      background: rgba(8,15,26,.85);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid var(--border);
      border-radius: 14px;
      margin: 12px auto;
      width: min(1200px, 94%);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 28px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 11px;
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 1.18rem;
      letter-spacing: -.01em;
    }

    .logo-icon {
      width: 36px; height: 36px;
      background: var(--gold);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-icon svg { width: 20px; height: 20px; }

    .nav { display: flex; align-items: center; gap: 6px; }

    .nav a {
      padding: 8px 16px;
      border-radius: 7px;
      font-size: .9rem;
      font-weight: 500;
      color: var(--muted);
      transition: all .2s;
    }

    .nav a:hover, .nav a.active {
      color: var(--text);
      background: rgba(255,255,255,.06);
    }

    .header-cta { display: flex; align-items: center; gap: 10px; }

    /* ─── HAMBURGER ──────────────────────────────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 26px; height: 18px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      z-index: 110;
    }

    .hamburger span {
      display: block;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all .32s cubic-bezier(.4,0,.2,1);
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* ─── MOBILE MENU ────────────────────────────────────── */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999;
      background: var(--bg);
      flex-direction: column;
      padding: 100px 32px 40px;
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform .38s cubic-bezier(.4,0,.2,1);
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    .mobile-menu-links {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 36px;
    }

    .mobile-menu-links a {
      font-family: var(--font-head);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--muted);
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      transition: color .2s;
    }

    .mobile-menu-links a:hover { color: var(--gold); }

    .mobile-menu-btns { display: flex; flex-direction: column; gap: 12px; }

    .mobile-ticker {
      margin-top: auto;
      padding-top: 30px;
      font-size: .8rem;
      color: var(--muted);
      font-family: var(--font-head);
    }

    .mobile-ticker span { color: var(--green); }

    /* ─── HERO ───────────────────────────────────────────── */
    .hero {
      padding: 200px 0 120px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hero-bg .glow1 {
      position: absolute;
      top: -100px; left: -100px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(240,165,0,.08) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-bg .glow2 {
      position: absolute;
      bottom: -80px; right: -80px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(0,200,240,.07) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-bg .grid-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }



    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,230,122,.08);
      border: 1px solid rgba(0,230,122,.2);
      color: var(--green);
      font-family: var(--font-head);
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 26px;
    }

    .hero-badge .dot { width:6px;height:6px;border-radius:50%;background:var(--green);animation:pulse-dot 1.4s infinite; }

    .hero-title {
      font-size: clamp(2.6rem, 5.5vw, 4.2rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 22px;
    }

    .hero-title .line2 { color: var(--gold); }

    .hero-desc {
      color: var(--muted);
      font-size: 1.1rem;
      max-width: 500px;
      margin-bottom: 38px;
    }

    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

    .hero-stats {
      display: flex;
      gap: 28px;
      margin-top: 50px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }

    .hero-stat-num {
      font-family: var(--font-head);
      font-size: 1.85rem;
      font-weight: 800;
      color: var(--text);
    }
    .hero-stat-num span { color: var(--gold); }
    .hero-stat-label { color: var(--muted); font-size: .85rem; margin-top: 2px; }

    /* ─── HERO RIGHT – TRADE CARD ────────────────────────── */
    .hero-right { position: relative; }

    .trade-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      position: relative;
      overflow: hidden;
    }

    .trade-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--cyan));
    }

    .tc-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 22px;
    }

    .tc-pair {
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 700;
    }

    .tc-live {
      font-size: .75rem;
      font-family: var(--font-head);
      font-weight: 600;
      color: var(--green);
      background: rgba(0,230,122,.1);
      border: 1px solid rgba(0,230,122,.2);
      padding: 4px 12px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .tc-live::before { content:''; width:5px;height:5px;border-radius:50%;background:var(--green);animation:pulse-dot 1.2s infinite; }

    .chart-area {
      height: 140px;
      position: relative;
      margin-bottom: 20px;
    }

    .chart-area canvas { width: 100% !important; }

    .tc-price-row {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 18px;
    }

    .tc-price {
      font-family: var(--font-head);
      font-size: 2.2rem;
      font-weight: 800;
    }

    .tc-change {
      font-family: var(--font-head);
      font-size: .9rem;
      font-weight: 600;
      color: var(--green);
      background: rgba(0,230,122,.1);
      padding: 3px 10px;
      border-radius: 6px;
    }

    .tc-stats-row {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 12px;
      margin-bottom: 20px;
    }

    .tc-stat {
      background: rgba(255,255,255,.03);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px;
    }

    .tc-stat-l { font-size: .72rem; color: var(--muted); margin-bottom: 4px; }
    .tc-stat-v { font-family: var(--font-head); font-weight: 700; font-size: .95rem; }

    .tc-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

    .tc-btn {
      padding: 13px;
      border-radius: 10px;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: .9rem;
      cursor: pointer;
      border: none;
      transition: all .2s;
    }

    .tc-btn.buy  { background: var(--green); color: #000; }
    .tc-btn.sell { background: var(--red);   color: #fff; }
    .tc-btn:hover { opacity: .88; transform: translateY(-1px); }

    .floating-badge {
      position: absolute;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 16px;
      font-family: var(--font-head);
      font-size: .8rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 8px 32px rgba(0,0,0,.4);
      animation: float-badge 4s ease-in-out infinite;
      z-index: 2;
    }

    .fb1 { top: -22px; right: -22px; }
    .fb2 { bottom: -18px; left: -18px; }

    .fb-icon {
      width: 32px; height: 32px;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }

    @keyframes float-badge {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-8px); }
    }

    /* ─── MARQUEE / PARTNERS ─────────────────────────────── */
    .partners-bar {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 26px 0;
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      gap: 60px;
      animation: marquee 25s linear infinite;
      width: max-content;
    }

    .marquee-item {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 700;
      color: var(--muted);
      letter-spacing: .08em;
      text-transform: uppercase;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: color .2s;
    }

    .marquee-item:hover { color: var(--gold); }
    .marquee-item::before { content:'◈'; color: var(--border); font-size:.7rem; }

    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── ABOUT / WHY US ────────────────────────────────── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-visual {
      position: relative;
    }

    .about-main-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      position: relative;
      overflow: hidden;
    }

    .about-main-card::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(240,165,0,.06) 0%, transparent 70%);
      border-radius: 50%;
    }

    .profit-graph {
      display: flex;
      align-items: flex-end;
      gap: 8px;
      height: 100px;
      margin-bottom: 24px;
    }

    .bar {
      flex: 1;
      border-radius: 5px 5px 0 0;
      position: relative;
      transition: height .6s ease;
    }

    .bar.positive { background: var(--green); }
    .bar.negative { background: var(--red); }

    .about-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .about-row:last-child { margin-bottom: 0; }

    .about-row .label { font-size:.85rem; color:var(--muted); }
    .about-row .val { font-family:var(--font-head); font-weight:700; }
    .about-row .val.up { color:var(--green); }
    .about-row .val.down { color:var(--red); }

    .about-side-card {
      position: absolute;
      right: -30px;
      bottom: 60px;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 16px 20px;
      min-width: 170px;
      box-shadow: 0 8px 32px rgba(0,0,0,.35);
      animation: float-badge 5s ease-in-out infinite;
    }

    .asc-num {
      font-family: var(--font-head);
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--gold);
    }

    .asc-label { font-size: .78rem; color: var(--muted); }

    .about-list { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }

    .about-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .about-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: rgba(240,165,0,.1);
      border: 1px solid rgba(240,165,0,.2);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
    }

    .about-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
    .about-item p  { font-size: .88rem; color: var(--muted); }

    /* ─── FEATURES ──────────────────────────────────────── */
    .features { background: var(--bg2); }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 56px;
    }

    .feature-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 32px;
      transition: all .3s ease;
      position: relative;
      overflow: hidden;
    }

    .feature-card:hover {
      border-color: rgba(240,165,0,.3);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,.3);
    }

    .feature-card:hover .feat-icon { background: rgba(240,165,0,.15); border-color: rgba(240,165,0,.35); }

    .feat-icon {
      width: 52px; height: 52px;
      border-radius: 13px;
      background: rgba(255,255,255,.04);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px;
      transition: all .3s;
    }

    .feature-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .feature-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

    .feat-tag {
      display: inline-block;
      font-size: .72rem;
      font-family: var(--font-head);
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 100px;
      margin-top: 16px;
    }

    .feat-tag.gold { background: rgba(240,165,0,.1); color: var(--gold); }
    .feat-tag.cyan { background: rgba(0,200,240,.1); color: var(--cyan); }
    .feat-tag.green { background: rgba(0,230,122,.1); color: var(--green); }

    /* ─── HOW IT WORKS ──────────────────────────────────── */
    .steps-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 60px;
      position: relative;
    }

    .steps-row::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(12.5% + 28px);
      right: calc(12.5% + 28px);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--cyan), transparent);
    }

    .step-card {
      text-align: center;
      position: relative;
    }

    .step-num {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--card);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 800;
      color: var(--gold);
      margin: 0 auto 20px;
      position: relative;
      z-index: 1;
    }

    .step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .step-card p  { font-size: .85rem; color: var(--muted); }

    /* ─── MARKETS TABLE ─────────────────────────────────── */
    .markets-section { background: var(--bg2); }

    .markets-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 32px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .market-tabs {
      display: flex;
      gap: 4px;
      background: var(--card);
      border: 1px solid var(--border);
      padding: 4px;
      border-radius: 10px;
    }

    .mtab {
      padding: 8px 20px;
      border-radius: 7px;
      font-family: var(--font-head);
      font-size: .85rem;
      font-weight: 600;
      color: var(--muted);
      cursor: pointer;
      transition: all .2s;
      border: none;
      background: none;
    }

    .mtab.active {
      background: var(--gold);
      color: #000;
    }

    .market-table {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
    }

    .table-head {
      display: grid;
      grid-template-columns: 2fr 1.5fr 1.5fr 1fr 1fr;
      padding: 16px 24px;
      border-bottom: 1px solid var(--border);
      font-size: .78rem;
      font-family: var(--font-head);
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .table-row {
      display: grid;
      grid-template-columns: 2fr 1.5fr 1.5fr 1fr 1fr;
      padding: 18px 24px;
      border-bottom: 1px solid var(--border);
      align-items: center;
      transition: background .2s;
      cursor: pointer;
    }

    .table-row:last-child { border-bottom: none; }
    .table-row:hover { background: rgba(255,255,255,.02); }

    .row-pair {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .pair-icon {
      width: 36px; height: 36px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      font-weight: 700;
      font-family: var(--font-head);
    }

    .row-pair .pair-name { font-family: var(--font-head); font-weight: 700; font-size: .95rem; }
    .row-pair .pair-sub  { font-size: .75rem; color: var(--muted); }

    .row-price { font-family: var(--font-head); font-weight: 600; }

    .row-chg {
      font-family: var(--font-head);
      font-weight: 600;
      font-size: .9rem;
    }

    .row-chg.up   { color: var(--green); }
    .row-chg.down { color: var(--red); }

    .mini-chart {
      display: flex;
      align-items: flex-end;
      gap: 3px;
      height: 32px;
    }

    .mini-bar { width: 5px; border-radius: 2px 2px 0 0; }

    .row-action .btn-sm {
      padding: 7px 16px;
      font-size: .78rem;
      font-family: var(--font-head);
      font-weight: 700;
      border-radius: 7px;
      background: rgba(240,165,0,.1);
      color: var(--gold);
      border: 1px solid rgba(240,165,0,.2);
      cursor: pointer;
      transition: all .2s;
    }

    .row-action .btn-sm:hover {
      background: var(--gold);
      color: #000;
    }

    /* ─── STATS BAND ────────────────────────────────────── */
    .stats-band {
      background: linear-gradient(135deg, #0a1628 0%, #0e1e35 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      text-align: center;
    }

    .stats-item {
      padding: 50px 24px;
      border-right: 1px solid var(--border);
      position: relative;
    }

    .stats-item:last-child { border-right: none; }

    .stats-num {
      font-family: var(--font-head);
      font-size: clamp(2rem,4vw,3.2rem);
      font-weight: 800;
      margin-bottom: 8px;
    }

    .stats-label { font-size: .9rem; color: var(--muted); }

    /* ─── TESTIMONIALS ──────────────────────────────────── */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 22px;
      margin-top: 56px;
    }

    .testi-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 28px;
      transition: all .3s;
    }

    .testi-card:hover {
      border-color: rgba(240,165,0,.2);
      transform: translateY(-3px);
    }

    .testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }

    .testi-text {
      font-size: .92rem;
      color: var(--text);
      line-height: 1.65;
      margin-bottom: 22px;
      font-style: italic;
    }

    .testi-author { display: flex; align-items: center; gap: 12px; }

    .testi-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .testi-name { font-family: var(--font-head); font-weight: 700; font-size: .92rem; }
    .testi-role { font-size: .78rem; color: var(--muted); }

    /* ─── FAQ ───────────────────────────────────────────── */
    .faq-section { background: var(--bg2); }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 56px;
    }

    .faq-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color .2s;
    }

    .faq-item.open { border-color: rgba(240,165,0,.3); }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      cursor: pointer;
      gap: 16px;
      font-family: var(--font-head);
      font-weight: 600;
      font-size: .95rem;
    }

    .faq-icon {
      width: 28px; height: 28px;
      border-radius: 7px;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
      transition: all .25s;
      color: var(--muted);
    }

    .faq-item.open .faq-icon { background: var(--gold); color: #000; border-color: var(--gold); transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .4s ease;
    }

    .faq-answer-inner {
      padding: 0 24px 20px;
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.7;
    }

    .faq-item.open .faq-answer { max-height: 200px; }

    /* ─── CTA BANNER ────────────────────────────────────── */
    .cta-section {
      background: linear-gradient(135deg, #0d1b30 0%, #091525 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 700px; height: 400px;
      background: radial-gradient(ellipse, rgba(240,165,0,.07) 0%, transparent 70%);
    }

    .cta-section .section-title { font-size: clamp(2.2rem,4.5vw,3.5rem); }

    .cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-top: 36px;
      flex-wrap: wrap;
    }

    /* ─── FOOTER ────────────────────────────────────────── */
    .footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 70px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 50px;
      margin-bottom: 60px;
    }

    .footer-brand p {
      font-size: .88rem;
      color: var(--muted);
      margin: 16px 0 24px;
      max-width: 280px;
      line-height: 1.7;
    }

    .social-links { display: flex; gap: 10px; }

    .social-link {
      width: 38px; height: 38px;
      border-radius: 9px;
      background: var(--card);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: .85rem;
      color: var(--muted);
      transition: all .2s;
    }

    .social-link:hover { border-color: var(--gold); color: var(--gold); }

    .footer-col h4 {
      font-size: .85rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }

    .footer-col ul a {
      font-size: .88rem;
      color: var(--muted);
      transition: color .2s;
    }

    .footer-col ul a:hover { color: var(--gold); }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      font-size: .82rem;
      color: var(--muted);
    }

    .footer-bottom .disclaimer {
      font-size: .75rem;
      color: var(--muted);
      max-width: 500px;
      text-align: right;
      opacity: .6;
    }

    /* ─── SCROLL REVEAL ─────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── RESPONSIVE ────────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero-content      { grid-template-columns: 1fr; gap: 50px; }
      .hero-right        { display: none; }
      .about-grid        { grid-template-columns: 1fr; }
      .about-visual      { order: -1; }
      .features-grid     { grid-template-columns: repeat(2,1fr); }
      .steps-row         { grid-template-columns: repeat(2,1fr); }
      .steps-row::before { display: none; }
      .footer-grid       { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .section   { padding: 70px 0; }
      .nav       { display: none; }
      .header-cta { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: flex; }

      .hero { padding: 130px 0 70px; }
      .hero-stats { flex-wrap: wrap; gap: 20px; }

      .features-grid     { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .faq-grid          { grid-template-columns: 1fr; }
      .stats-grid        { grid-template-columns: repeat(2,1fr); }
      .stats-item:nth-child(2) { border-right: none; }

      .table-head { grid-template-columns: 2fr 1.5fr 1fr; }
      .table-row  { grid-template-columns: 2fr 1.5fr 1fr; }
      .table-head .col-vol,
      .table-row .col-vol,
      .table-head .col-chart,
      .table-row .mini-chart { display: none; }

      .footer-grid       { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-bottom .disclaimer { text-align: center; }

      .steps-row { grid-template-columns: 1fr; }

      .markets-header { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: 2.2rem; }
      .hero-btns  { flex-direction: column; }
      .cta-btns   { flex-direction: column; align-items: center; }
      .stats-grid { grid-template-columns: 1fr; }
      .stats-item { border-right: none; border-bottom: 1px solid var(--border); }
    }

    /* ─── SCROLL TO TOP ─────────────────────────────────── */
    .scroll-top {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 44px; height: 44px;
      background: var(--gold);
      color: #000;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      cursor: pointer;
      border: none;
      opacity: 0;
      pointer-events: none;
      transition: all .3s;
      z-index: 900;
    }

    .scroll-top.show { opacity: 1; pointer-events: all; }
    .scroll-top:hover { background: var(--gold2); transform: translateY(-3px); }
