/* ============================================================
   Trade5x.com — StockCryptoInd Color Theme
   Dark Navy + Yellow-Green (#c8f000) Accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Barlow:wght@400;500;600;700;800;900&display=swap');

:root {
  /* ── Core Palette (matches StockCryptoInd) ── */
  --bg:          #060d1f;          /* deepest navy */
  --bg2:         #0a1428;          /* section bg */
  --bg3:         #0d1a33;          /* card bg */
  --bg4:         #0f1e3a;          /* elevated card */
  --accent:      #c8f000;          /* yellow-green CTA */
  --accent2:     #a8d000;          /* darker accent hover */
  --accent-glow: rgba(200,240,0,0.18);
  --blue:        #1a7aff;          /* secondary blue */
  --blue-dim:    rgba(26,122,255,0.15);
  --green:       #00e676;          /* up tick */
  --red:         #ff3d57;          /* down tick */
  --white:       #ffffff;
  --text:        #dce8ff;
  --text-muted:  #7a95b8;
  --text-dim:    #3d5478;
  --border:      rgba(255,255,255,0.07);
  --border-blue: rgba(26,122,255,0.22);
  --border-accent: rgba(200,240,0,0.3);
  --gold:        #ffc107;

  /* ── Typography ── */
  --font-head: 'Barlow', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* ── Misc ── */
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 8px 40px rgba(0,0,0,0.55);
  --glow-accent: 0 0 28px rgba(200,240,0,0.22);
  --glow-blue:   0 0 28px rgba(26,122,255,0.25);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.section-dark { background: var(--bg2); }
.text-center  { text-align: center; }

.tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(200,240,0,0.08);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 14px;
}
.tag .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: blink 1.6s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800; line-height: 1.15; color: var(--white);
  margin-bottom: 12px;
}
.section-title .hl { color: var(--accent); }
.section-sub { font-size: 16px; color: var(--text-muted); max-width: 580px; margin: 0 auto 48px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 14px; letter-spacing: 0.4px;
  cursor: pointer; border: none; transition: all 0.22s ease;
  text-transform: uppercase;
}
.btn-accent {
  background: var(--accent); color: #000;
  box-shadow: var(--glow-accent);
}
.btn-accent:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(200,240,0,0.35); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-blue {
  background: var(--blue); color: #fff;
  box-shadow: var(--glow-blue);
}
.btn-blue:hover { background: #1568e0; transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 3px; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  transition: all 0.3s;
}
#navbar.scrolled {
  background: rgba(6,13,31,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.nav-logo img {
  height: 46px; width: auto;
  filter: drop-shadow(0 2px 10px rgba(200,240,0,0.2));
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text-muted); transition: color 0.2s; letter-spacing: 0.3px; }
.nav-links a:hover { color: var(--accent); }

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

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* =============================================
   MOBILE FULL-SCREEN NAV
   ============================================= */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 990;
  background: rgba(6,13,31,0.99);
  flex-direction: column; align-items: center; justify-content: center; gap: 26px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 20px; font-weight: 700; color: var(--text-muted); transition: color 0.2s; }
.mobile-nav a:hover, .mobile-nav a:active { color: var(--accent); }
.mobile-close { position: absolute; top: 18px; right: 20px; background: none; border: none; color: var(--white); font-size: 26px; cursor: pointer; }

/* =============================================
   MOBILE STICKY BOTTOM BAR
   ============================================= */
.mob-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1002;
  height: 56px;
  grid-template-columns: 1fr 1fr;
}
.mob-bar a {
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
}
.mob-bar .mob-login    { background: #0a0e1a; color: var(--white); border-top: 1px solid rgba(255,255,255,0.08); }
.mob-bar .mob-register { background: var(--accent); color: #000; }
.mob-bar .mob-register:active { background: var(--accent2); }

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 70% 30%, rgba(26,122,255,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(200,240,0,0.06) 0%, transparent 50%),
              linear-gradient(180deg, #060d1f 0%, #08112a 60%, #060d1f 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 90px 0 60px;
}

/* Animated grid */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(26,122,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,122,255,0.08) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
/* Perspective floor */
.hero-floor {
  position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background-image:
    linear-gradient(rgba(200,240,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,240,0,0.04) 1px, transparent 1px);
  background-size: 70px 35px;
  transform: perspective(400px) rotateX(60deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.5), transparent 80%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5), transparent 80%);
  pointer-events: none;
}
/* Glow orbs */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb-1 { width: 600px; height: 600px; top: -180px; right: -120px; background: radial-gradient(circle, rgba(26,122,255,0.14) 0%, transparent 65%); animation: orb 9s ease-in-out infinite; }
.hero-orb-2 { width: 400px; height: 400px; bottom: -100px; left: -80px; background: radial-gradient(circle, rgba(200,240,0,0.08) 0%, transparent 65%); animation: orb 12s ease-in-out infinite reverse; }
.hero-orb-3 { width: 260px; height: 260px; top: 38%; left: 38%; background: radial-gradient(circle, rgba(26,122,255,0.07) 0%, transparent 70%); animation: orb 15s ease-in-out infinite 3s; }
@keyframes orb { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-24px)} }

/* Floating spheres */
.hero-sphere {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hs1 { width: 80px; height: 80px; top: 14%; right: 7%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.2), rgba(26,122,255,0.5) 50%, rgba(4,14,40,0.9));
  border: 1px solid rgba(26,122,255,0.4); box-shadow: 0 0 30px rgba(26,122,255,0.2);
  animation: float1 7s ease-in-out infinite; }
.hs2 { width: 48px; height: 48px; bottom: 28%; right: 12%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.15), rgba(200,240,0,0.5) 50%, rgba(4,14,10,0.9));
  border: 1px solid rgba(200,240,0,0.35); box-shadow: 0 0 20px rgba(200,240,0,0.15);
  animation: float1 9s ease-in-out infinite 2s; }
.hs3 { width: 32px; height: 32px; top: 58%; left: 4%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.12), rgba(100,80,255,0.45) 50%, rgba(8,5,30,0.9));
  border: 1px solid rgba(100,80,255,0.3);
  animation: float1 11s ease-in-out infinite 4s; }
@keyframes float1 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-18px) rotate(5deg)} }

/* Scanline */
.hero-scan {
  position: absolute; left: 0; right: 0; height: 1.5px; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(200,240,0,0.35) 40%, rgba(26,122,255,0.35) 60%, transparent 100%);
  animation: scan 7s linear infinite;
}
@keyframes scan { 0%{top:0;opacity:0} 5%{opacity:1} 90%{opacity:.5} 100%{top:100%;opacity:0} }

/* Globe SVG */
.hero-globe {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px; opacity: 0.09; pointer-events: none;
}

/* ── HERO LAYOUT ── */
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,240,0,0.08); border: 1px solid rgba(200,240,0,0.25);
  color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 22px;
}
.hero-badge .bdot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: blink 1.4s infinite; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900; line-height: 1.12; color: var(--white);
  margin-bottom: 18px;
}
.hero-title .hl {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(200,240,0,0.35);
}
.hero-desc { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.75; }

/* Margin feature cards (like screenshot) */
.margin-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.mc {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(26,122,255,0.18);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 2px;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}
.mc::before { content:''; position:absolute; inset:0; background:linear-gradient(90deg, rgba(200,240,0,0.04) 0%, transparent 50%); }
.mc:hover { border-color: rgba(200,240,0,0.4); transform: translateX(5px); }
.mc-label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.mc-value {
  font-family: var(--font-head); font-size: 30px; font-weight: 900; color: var(--accent);
  text-shadow: 0 0 18px rgba(200,240,0,0.3);
  line-height: 1.1;
}
.mc-value span { color: var(--white); font-size: 22px; font-weight: 700; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 24px; margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hs-item .hs-num {
  font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--white);
}
.hs-item .hs-num em { color: var(--accent); font-style: normal; }
.hs-item .hs-lbl { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* =============================================
   LIVE TICKER CARD (Right side of hero)
   ============================================= */
.hero-right { position: relative; }

.ticker-card {
  background: linear-gradient(145deg, #0d1a33, #0f2040);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow), 0 0 40px rgba(26,122,255,0.1);
}
.tc-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.tc-title { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--white); }
.tc-live {
  display: flex; align-items: center; gap: 6px;
  background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.3);
  color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 50px;
}
.tc-live .ldot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: blink 1s infinite; }

/* Coin rows */
.coin-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.coin-row {
  display: grid; grid-template-columns: 32px 1fr auto auto;
  align-items: center; gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 11px 14px;
  transition: border-color 0.2s;
}
.coin-row:hover { border-color: var(--border-blue); }
.coin-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.coin-name-wrap .c-name { font-size: 14px; font-weight: 700; color: var(--white); }
.coin-name-wrap .c-full { font-size: 11px; color: var(--text-muted); }
.c-price { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--white); text-align: right; }
.c-change { font-size: 12px; font-weight: 700; text-align: right; min-width: 58px; }
.c-change.up   { color: var(--green); }
.c-change.down { color: var(--red);   }

/* Sparklines inside coin rows */
.coin-spark { width: 60px; height: 28px; }

/* ── LIVE CHART SECTION ── */
.chart-card {
  background: linear-gradient(145deg, #0d1a33, #0f2040);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 22px 22px 16px;
  box-shadow: var(--shadow);
  margin-top: 16px;
}
.chart-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
  flex-wrap: wrap; gap: 8px;
}
.chart-tabs { display: flex; gap: 6px; }
.ctab {
  padding: 5px 12px; border-radius: 6px; font-size: 12px; font-weight: 700; cursor: pointer;
  border: 1px solid var(--border); color: var(--text-muted); background: transparent;
  transition: all 0.2s; letter-spacing: 0.3px;
}
.ctab.active { background: var(--accent); color: #000; border-color: var(--accent); box-shadow: var(--glow-accent); }
#main-chart-canvas { width: 100% !important; display: block; }

/* Floating badges */
.float-badge {
  position: absolute; background: #0d1a33; border: 1px solid var(--border-blue);
  border-radius: 10px; padding: 10px 14px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--white); z-index: 3;
}
.fb-top { top: -16px; left: -16px; }
.fb-bot { bottom: -16px; right: -10px; font-size: 12px; }
.fb-icon { font-size: 20px; }

/* =============================================
   FEATURE BAR
   ============================================= */
.feat-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.feat-bar-inner { display: flex; flex-wrap: wrap; }
.fb-item {
  flex: 1; min-width: 160px;
  display: flex; align-items: center; gap: 12px;
  padding: 22px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.fb-item:last-child { border-right: none; }
.fb-item:hover { background: rgba(200,240,0,0.03); }
.fb-ico { width: 38px; height: 38px; border-radius: 10px; background: rgba(200,240,0,0.08); border: 1px solid var(--border-accent); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.fb-name { font-size: 13px; font-weight: 700; color: var(--white); }
.fb-sub  { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

/* =============================================
   MARKETS GRID
   ============================================= */
.markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mkt-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  cursor: pointer; transition: all 0.28s;
  position: relative; overflow: hidden;
}
.mkt-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.mkt-card:hover { border-color: rgba(200,240,0,0.25); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.5), var(--glow-accent); }
.mkt-card:hover::after { transform: scaleX(1); }
.mkt-icon { font-size: 30px; margin-bottom: 12px; }
.mkt-name { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; }
.mkt-arrow { color: var(--accent); }
.mkt-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mkt-tag { font-size: 12px; color: var(--text-muted); background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 5px; padding: 3px 9px; }

/* =============================================
   WHY CARDS
   ============================================= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 22px;
  transition: all 0.25s;
}
.why-card:hover { border-color: rgba(200,240,0,0.2); transform: translateY(-3px); }
.why-ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(200,240,0,0.08); border: 1px solid var(--border-accent); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.why-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.why-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   STEPS
   ============================================= */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  position: relative; transition: all 0.25s;
}
.step-card:hover { border-color: rgba(200,240,0,0.2); transform: translateY(-4px); }
.step-num { font-family: var(--font-head); font-size: 54px; font-weight: 900; color: rgba(200,240,0,0.08); line-height: 1; margin-bottom: 14px; }
.step-icon { font-size: 34px; margin-bottom: 14px; }
.step-title { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.step-arrow { position: absolute; top: 50%; right: -14px; transform: translateY(-50%); color: var(--accent); font-size: 22px; z-index: 2; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.testi-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px;
  transition: border-color 0.2s;
}
.testi-card:hover { border-color: rgba(200,240,0,0.18); }
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text  { font-size: 14px; color: var(--text-muted); font-style: italic; line-height: 1.7; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--accent)); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: #000; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--white); }
.testi-role { font-size: 11px; color: var(--text-muted); }

/* =============================================
   FAQ
   ============================================= */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden; transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border-accent); }
.faq-q {
  padding: 18px 22px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 600; color: var(--white); background: var(--bg3);
}
.faq-ico { width: 26px; height: 26px; border-radius: 50%; background: rgba(200,240,0,0.08); border: 1px solid var(--border-accent); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 15px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--accent); color: #000; border-color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; padding: 0 22px; font-size: 14px; color: var(--text-muted); line-height: 1.7; background: var(--bg3); }
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, #09162e 0%, #0d1a33 50%, #08122a 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,240,0,0.05) 0%, transparent 65%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.cta-title .hl { color: var(--accent); }
.cta-sub  { font-size: 17px; color: var(--text-muted); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 16px; font-size: 12px; color: var(--text-dim); }

/* =============================================
   ABOUT
   ============================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.about-badge { position: absolute; bottom: -18px; right: -16px; background: var(--bg4); border: 1px solid var(--border-blue); border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow); }
.about-badge .ab-val { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--accent); }
.about-badge .ab-lbl { font-size: 11px; color: var(--text-muted); }
.check-list { display: flex; flex-direction: column; gap: 13px; margin: 22px 0 30px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.chk { width: 20px; height: 20px; border-radius: 50%; background: rgba(200,240,0,0.1); border: 1px solid var(--border-accent); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--accent); flex-shrink: 0; }

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; margin-bottom: 44px; }
.footer-logo img { height: 42px; width: auto; margin-bottom: 14px; }
.footer-about { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.soc-btn { width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; transition: all 0.2s; }
.soc-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(200,240,0,0.07); }
.f-head { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 18px; letter-spacing: 0.5px; }
.f-links { display: flex; flex-direction: column; gap: 9px; }
.f-links a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.f-links a:hover { color: var(--accent); }
.f-contact { display: flex; flex-direction: column; gap: 13px; }
.f-ci { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-muted); }
.f-ci .fi { color: var(--accent); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.f-ci a { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--text-dim); }
.footer-disc { font-size: 11px; color: var(--text-dim); max-width: 520px; line-height: 1.5; }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
  position: fixed; bottom: 26px; right: 22px; z-index: 998;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.12); }

/* =============================================
   SCROLL ANIMATION
   ============================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-right  { display: none; }
  .about-grid  { grid-template-columns: 1fr; gap: 40px; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  /* Mobile bottom bar visible */
  .mob-bar { display: grid; }
  body { padding-bottom: 56px; }
  /* Shift WA button up */
  .wa-float { bottom: 70px; right: 14px; width: 46px; height: 46px; font-size: 21px; }
  /* Grids → single col */
  .markets-grid, .why-grid, .steps-grid, .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .feat-bar-inner { flex-wrap: wrap; }
  .fb-item { min-width: 50%; border-bottom: 1px solid var(--border); }
  .fb-item:nth-child(2n) { border-right: none; }
  .hero-stats { gap: 14px; }
  .hero-title { font-size: 32px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
  .nav-logo img { height: 38px; }
  /* Margin cards slightly tighter */
  .mc-value { font-size: 26px; }
}
