/* ============================================================
   Trade8x.com — Light Sky/Meadow Theme
   Deep Navy type + Bull-Green accent, on a sky-to-meadow ground
   ============================================================ */

@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&family=Caveat:wght@600;700&display=swap');

:root {
  /* ── Core Palette ── */
  --bg:          #eef8f1;          /* meadow-white page base */
  --bg2:         #ffffff;          /* section alt bg */
  --bg3:         #ffffff;          /* card bg */
  --bg4:         #f3faf4;          /* elevated / tinted card */
  --accent:      #4caf27;          /* bull green CTA */
  --accent2:     #3c8c1e;          /* darker green hover */
  --accent-glow: rgba(76,175,39,0.16);
  --blue:        #12305c;          /* deep navy — headings / secondary */
  --blue-dim:    rgba(18,48,92,0.08);
  --primary:     var(--accent);
  --green:       #17a24a;          /* up tick */
  --red:         #e0263f;          /* down tick */
  --white:       #ffffff;
  --text:        #142438;
  --text-muted:  #5b6b7d;
  --text-dim:    #96a5b5;
  --border:      rgba(18,48,92,0.10)   ;
  --border2:     rgba(76,175,39,0.4);
  --border-blue: rgba(18,48,92,0.14);
  --border-accent: rgba(76,175,39,0.35);
  --gold:        #f5a623;

  /* ── Gradients (referenced by sub-pages too) ── */
  --gradient-hero: linear-gradient(180deg, #e7f3fb 0%, #eef9ec 55%, #ffffff 100%);
  --gradient-card: linear-gradient(160deg, #ffffff 0%, #f4faf5 100%);

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

  /* ── Misc ── */
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:      0 10px 34px rgba(18,48,92,0.10);
  --shadow-soft: 0 4px 18px rgba(18,48,92,0.07);
  --shadow-glow: 0 10px 30px rgba(76,175,39,0.22);
  --glow-accent: 0 10px 26px rgba(76,175,39,0.28);
  --glow-blue:   0 10px 26px rgba(18,48,92,0.16);
}

/* ── 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; }

/* Browser surfaces themed from the palette */
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

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

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800; line-height: 1.15; color: var(--blue);
  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: #fff;
  box-shadow: var(--glow-accent);
}
.btn-accent:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(76,175,39,0.36); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--glow-accent); }
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(76,175,39,0.36); }
.btn-outline {
  background: #fff; color: var(--blue);
  border: 1.5px solid var(--border-blue);
}
.btn-outline:hover { border-color: var(--blue); background: var(--blue-dim); }
.btn-blue {
  background: var(--blue); color: #fff;
  box-shadow: var(--glow-blue);
}
.btn-blue:hover { background: #0c2244; transform: translateY(-2px); }
.btn-whatsapp {
  background: #25d366; color: #fff;
  box-shadow: 0 10px 26px rgba(37,211,102,0.32);
}
.btn-whatsapp:hover { background: #1fb958; transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-blue); 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(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(18,48,92,0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.nav-logo img {
  height: 58px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(18,48,92,0.14));
}

.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(--accent2); }

.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(--blue); border-radius: 2px; transition: all 0.3s; }

/* =============================================
   MOBILE FULL-SCREEN NAV
   ============================================= */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 990;
  background: rgba(255,255,255,0.98);
  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(--blue); transition: color 0.2s; }
.mobile-nav a:hover, .mobile-nav a:active { color: var(--accent2); }
.mobile-close { position: absolute; top: 18px; right: 20px; background: none; border: none; color: var(--blue); 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;
  box-shadow: 0 -4px 20px rgba(18,48,92,0.10);
}
.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: #fff; color: var(--blue); border-top: 1px solid var(--border); }
.mob-bar .mob-register { background: var(--accent); color: #fff; }
.mob-bar .mob-register:active { background: var(--accent2); }

/* =============================================
   HERO — sky-to-meadow scene with layered peaks
   ============================================= */
#hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 110px 0 60px;
}

/* Sky glow */
.hero-skyglow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 45% at 78% 8%, rgba(255,255,255,0.9) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 15% 85%, rgba(76,175,39,0.10) 0%, transparent 70%);
}
/* Layered mountains (SVG, absolute bottom) */
.hero-peaks { position: absolute; left: 0; right: 0; bottom: -2px; width: 100%; pointer-events: none; }
.hero-peaks svg { width: 100%; height: auto; display: block; }

/* Drifting clouds */
.hero-cloud { position: absolute; pointer-events: none; opacity: 0.9; animation: drift 40s linear infinite; }
.hc1 { top: 12%; left: -10%; width: 140px; animation-duration: 55s; }
.hc2 { top: 22%; left: -15%; width: 90px;  animation-duration: 42s; animation-delay: -12s; opacity: 0.7; }
.hc3 { top: 8%;  left: -20%; width: 110px; animation-duration: 65s; animation-delay: -30s; opacity: 0.55; }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(135vw); } }

/* Floating leaves (small green accents) */
.hero-leaf { position: absolute; pointer-events: none; animation: leaf-float 8s ease-in-out infinite; }
.hl1 { top: 20%; right: 8%;  width: 30px; animation-delay: 0s; }
.hl2 { bottom: 30%; left: 5%; width: 22px; animation-delay: 2.4s; }
.hl3 { top: 55%; right: 16%; width: 18px; animation-delay: 4.8s; }
@keyframes leaf-float { 0%,100%{ transform: translateY(0) rotate(0deg); } 50%{ transform: translateY(-16px) rotate(8deg); } }

/* ── HERO LAYOUT ── */
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border-accent);
  color: var(--accent2); font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
}
.hero-badge .bdot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700; color: var(--accent2);
  line-height: 1; margin-bottom: 4px;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900; line-height: 1.1; color: var(--blue);
  margin-bottom: 18px;
}
.hero-title .hl { color: var(--accent2); }
.hero-desc { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.75; max-width: 520px; }

/* Leverage stat chips (replaces old bordered margin-cards) */
.lev-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.lev-chip {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 16px; padding: 12px 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lev-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.lev-chip-num {
  font-family: var(--font-head); font-weight: 900; font-size: 24px;
  color: #fff; background: var(--accent);
  border-radius: 10px; padding: 4px 10px; line-height: 1.1;
}
.lev-chip-txt { display: flex; flex-direction: column; }
.lev-chip-lbl { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.3px; }
.lev-chip-sub { font-size: 11px; color: var(--text-muted); }

.min-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; font-weight: 700; font-size: 13px;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 24px;
}
.min-badge strong { color: #a7e88f; font-family: var(--font-head); font-size: 15px; }

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

.hero-stats {
  display: flex; gap: 24px; margin-top: 36px; padding-top: 28px;
  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(--blue);
}
.hs-item .hs-num em { color: var(--accent2); 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: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
}
.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(--blue); }
.tc-live {
  display: flex; align-items: center; gap: 6px;
  background: rgba(23,162,74,0.08); border: 1px solid rgba(23,162,74,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: var(--bg4);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 11px 14px;
  transition: border-color 0.2s;
}
.coin-row:hover { border-color: var(--border-accent); }
.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(--blue); }
.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(--blue); 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: var(--bg4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 16px;
  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: #fff;
  transition: all 0.2s; letter-spacing: 0.3px;
}
.ctab.active { background: var(--accent); color: #fff; border-color: var(--accent); }
#main-chart-canvas { width: 100% !important; display: block; }

/* Floating badges */
.float-badge {
  position: absolute; background: #fff; border: 1px solid var(--border);
  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(--blue); z-index: 3;
}
.fb-top { top: -16px; left: -16px; }
.fb-bot { bottom: -16px; right: -10px; font-size: 12px; }
.fb-icon { font-size: 20px; }

/* =============================================
   RIBBON — Low Brokerage More Profit
   ============================================= */
.ribbon-strip {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  padding: 12px 0; overflow: hidden;
}
.ribbon-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: ribbon-scroll 22s linear infinite;
}
.ribbon-track span {
  font-family: var(--font-head); font-weight: 800; font-size: 15px; letter-spacing: 0.5px;
  color: #fff; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px;
}
@keyframes ribbon-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   FEATURE BAR
   ============================================= */
.feat-bar {
  background: #fff;
  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: 170px;
  display: flex; align-items: center; gap: 12px;
  padding: 24px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.fb-item:last-child { border-right: none; }
.fb-item:hover { background: var(--bg4); }
.fb-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.fb-name { font-size: 13px; font-weight: 700; color: var(--blue); }
.fb-sub  { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

/* =============================================
   BROKERAGE TABLE
   ============================================= */
.broker-table { display: flex; flex-direction: column; gap: 14px; }
.broker-row {
  display: grid; grid-template-columns: 60px 1fr auto;
  align-items: center; gap: 20px;
  background: var(--bg4);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.broker-row:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.broker-row--option { background: rgba(76,175,39,0.08); }
.broker-row--future  { background: rgba(24,105,196,0.08); }
.broker-row--mcx     { background: rgba(245,166,35,0.10); }
.broker-row--comex   { background: rgba(124,93,224,0.10); }
.broker-row--crypto  { background: rgba(224,38,63,0.08); }

.broker-icon { width: 52px; height: 52px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-soft); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.broker-row--option .broker-icon { color: var(--accent2); }
.broker-row--future  .broker-icon { color: #1869c4; }
.broker-row--mcx     .broker-icon { color: #c9820f; }
.broker-row--comex   .broker-icon { color: #6a4fce; }
.broker-row--crypto  .broker-icon { color: #c81834; }

.broker-name { font-family: var(--font-head); font-size: 19px; font-weight: 800; color: var(--blue); }
.broker-desc { font-size: 12.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.4px; margin-top: 2px; }

.broker-rate { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.rate-pill {
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  color: #fff; padding: 9px 16px; border-radius: 50px; white-space: nowrap;
}
.broker-row--option .rate-pill { background: var(--accent2); }
.broker-row--future  .rate-pill { background: #1869c4; }
.broker-row--mcx     .rate-pill { background: #c9820f; }
.broker-row--comex   .rate-pill { background: #6a4fce; }
.broker-row--crypto  .rate-pill { background: #c81834; }
.rate-note { font-size: 11.5px; color: var(--text-muted); text-align: right; }

/* =============================================
   MARKETS GRID
   ============================================= */
.markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mkt-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  cursor: pointer; transition: all 0.28s;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.mkt-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.mkt-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.mkt-card:hover::after { transform: scaleX(1); }
.mkt-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 14px; }
.mkt-name { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--blue); margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; }
.mkt-arrow { color: var(--accent2); }
.mkt-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mkt-tag { font-size: 12px; color: var(--text-muted); background: var(--bg4); 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: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 22px;
  transition: all 0.25s; box-shadow: var(--shadow-soft);
}
.why-card:hover { border-color: var(--border-accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.why-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.why-title { font-size: 15px; font-weight: 700; color: var(--blue); 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: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  position: relative; transition: all 0.25s; box-shadow: var(--shadow-soft);
}
.step-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num { font-family: var(--font-head); font-size: 54px; font-weight: 900; color: var(--bg4); -webkit-text-stroke: 1.5px var(--border-accent); line-height: 1; margin-bottom: 14px; }
.step-icon { font-size: 34px; margin-bottom: 14px; }
.step-title { font-size: 17px; font-weight: 700; color: var(--blue); 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(--accent2); font-size: 22px; z-index: 2; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.testi-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px;
  transition: border-color 0.2s; box-shadow: var(--shadow-soft);
}
.testi-card:hover { border-color: var(--border-accent); }
.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: #fff; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--blue); }
.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;
  background: #fff;
}
.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(--blue); background: #fff;
}
.faq-ico { width: 26px; height: 26px; border-radius: 50%; background: var(--bg4); border: 1px solid var(--border-accent); display: flex; align-items: center; justify-content: center; color: var(--accent2); font-size: 15px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--accent); color: #fff; 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: #fff; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, #123a2a 0%, #12305c 100%);
  padding: 84px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(76,175,39,0.14) 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: #fff; margin-bottom: 12px; }
.cta-title .hl { color: #a7e88f; }
.cta-sub  { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,0.5); }
.cta-signature { font-family: var(--font-script); font-size: 22px; color: #a7e88f; margin-top: 28px; }

/* =============================================
   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: #fff; border: 1px solid var(--border); 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(--accent2); }
.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: var(--accent); border: none; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #fff; flex-shrink: 0; }

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--blue); color: rgba(255,255,255,0.82); 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: rgba(255,255,255,0.65); 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 rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.75); font-size: 14px; transition: all 0.2s; }
.soc-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(76,175,39,0.14); }
.f-head { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 18px; letter-spacing: 0.5px; }
.f-links { display: flex; flex-direction: column; gap: 9px; }
.f-links a { font-size: 13px; color: rgba(255,255,255,0.65); 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: rgba(255,255,255,0.65); }
.f-ci .fi { color: var(--accent); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.f-ci a { color: #a7e88f; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-tagline { font-family: var(--font-script); font-size: 18px; color: #a7e88f; }
.footer-disc { font-size: 11px; color: rgba(255,255,255,0.45); 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 6px 22px rgba(37,211,102,0.45);
  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; }
  .broker-row  { grid-template-columns: 48px 1fr; }
  .broker-rate { grid-column: 1 / -1; justify-content: flex-start; margin-top: 4px; }
}

@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: 46px; }
  .lev-chips { gap: 8px; }
  .lev-chip { padding: 10px 14px; }
  .broker-row { padding: 16px 18px; }
}
