/* ============================================
   ZARVISTA CAPITAL MARKETS — MAIN STYLESHEET
   Dark Theme | Logo VISTA: #00acd8 | Red: #F20050
   ============================================ */

:root {
  --blue: #1796FF;
  --teal: #00acd8;
  --red: #F20050;
  --black: #000000;
  --dark: #080808;
  --dark2: #111111;
  --dark3: #0a0a14;
  --white: #ffffff;
  --grey: #f4f4f4;
  --text-muted: #888888;
  --text-light: #cccccc;
  --gradient: linear-gradient(90deg, #1796FF 0%, #9b34c8 50%, #F20050 100%);
  --gradient-2: linear-gradient(90deg, #1796FF 0%, #F20050 100%);
  --nav-height: 80px;
  --container: 1200px;
  --radius: 8px;
  --transition: 0.3s ease;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── GRADIENT UTILITIES ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gradient-2);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-gradient:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline-grd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-grd::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: var(--gradient-2);
  z-index: -1;
}
.btn-outline-grd::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 48px;
  background: var(--black);
  z-index: -1;
  transition: opacity var(--transition);
}
.btn-outline-grd:hover::after { opacity: 0; }
.btn-outline-grd:hover { color: var(--white); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.96);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition);
  user-select: none;
}
.nav-link i.chevron { font-size: 10px; transition: transform var(--transition); }
.nav-item:hover > .nav-link { color: var(--teal); }
.nav-item:hover > .nav-link .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  z-index: 1000;
}
.nav-item:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  color: #bbb;
  transition: color var(--transition), padding var(--transition);
  white-space: nowrap;
}
.dropdown li a:hover { color: var(--teal); padding-left: 24px; }

/* Sub-dropdown */
.has-sub { position: relative; }
.has-sub > a::after { content: ' ›'; float: right; }
.sub-dd {
  position: absolute;
  left: 100%; top: -8px;
  min-width: 190px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateX(6px);
  transition: all 0.2s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.has-sub:hover .sub-dd { opacity: 1; visibility: visible; transform: translateX(0); }

.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.nav-login {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: opacity var(--transition);
}
.nav-login:hover { opacity: 0.75; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 80px) 28px 100px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(23,150,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero h1 {
  font-size: clamp(46px, 6.5vw, 86px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-height) + 64px) 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(23,150,255,0.06) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.page-hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  justify-content: center;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb i { font-size: 9px; }

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(135deg, #04040e 0%, #0c0c1a 50%, #10040f 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(242,0,80,0.1) 0%, transparent 60%);
}
.stats-bar::after {
  content: '';
  position: absolute;
  left: 5%; top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(23,150,255,0.07) 0%, transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  text-align: center;
  position: relative; z-index: 1;
}
.stat-num {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ── SECTION ── */
section { padding: 88px 0; }
.section-dark { background: var(--black); }
.section-alt { background: #080808; }
.section-light { background: var(--grey); }
.section-light * { color: var(--black) !important; }
.section-light .text-muted,
.section-light .text-dim { color: #555 !important; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── MARKET TABS ── */
.tabs-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.tab-btn {
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--gradient-2);
  border-color: transparent;
  color: var(--white);
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.market-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.market-info h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  margin-bottom: 14px;
}
.market-info p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.market-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.m-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
}
.m-stat-val {
  font-size: 30px;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.m-stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.market-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(23,150,255,0.05) 0%, rgba(0,172,216,0.04) 50%, rgba(242,0,80,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.market-visual i {
  font-size: 80px;
  opacity: 0.2;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ACCOUNT CARDS ── */
.accounts-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.account-card {
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.account-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity var(--transition);
}
.account-card:hover { border-color: rgba(23,150,255,0.2); transform: translateY(-4px); box-shadow: 0 24px 64px rgba(23,150,255,0.07); }
.account-card:hover::after { opacity: 1; }
.account-card.featured { border-color: rgba(0,172,216,0.25); background: linear-gradient(180deg, rgba(0,172,216,0.05) 0%, #0c0c0c 100%); }
.account-card.featured::after { opacity: 1; }

.account-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.account-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.5; }
.account-specs {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.spec-row { display: flex; justify-content: space-between; font-size: 14px; }
.spec-row span:first-child { color: var(--text-muted); }
.spec-row span:last-child { font-weight: 600; }

/* ── WHY BOXES ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 12px;
  padding: 28px 22px;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: rgba(0,172,216,0.2);
  background: rgba(0,172,216,0.03);
  transform: translateY(-3px);
}
.why-icon {
  width: 50px; height: 50px;
  background: var(--gradient-2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-icon i { font-size: 20px; color: var(--white); }
.why-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── MT5 SECTION (light) ── */
.mt5-section { background: var(--grey); overflow: hidden; }
.mt5-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mt5-content h2 { font-size: clamp(28px, 3vw, 46px); font-weight: 800; color: var(--black); margin-bottom: 16px; line-height: 1.1; }
.mt5-content p { color: #555; margin-bottom: 36px; line-height: 1.75; font-size: 15px; }

/* 4-box download grid matching original */
.mt5-downloads {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.dl-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--white);
  color: var(--black);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all var(--transition);
  cursor: pointer;
}
.dl-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.dl-btn i { font-size: 32px; }
.dl-btn .fa-windows { color: #0078D4; }
.dl-btn .fa-apple { color: #555; }
.dl-btn .fa-app-store-ios { color: #1C8EF9; }
.dl-btn .fa-android { color: #3DDC84; }
.dl-btn span { color: #333; font-size: 11px; font-weight: 600; }
.mt5-readmore { font-size: 13px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 6px; }
.mt5-readmore:hover { opacity: 0.75; }

/* Phone mockup cluster */
.mt5-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 440px;
  padding: 20px 0;
}
.phone-cluster {
  position: relative;
  width: 380px;
  height: 440px;
}
/* Back phone (left, tilted) */
.phone-back {
  position: absolute;
  left: 0; bottom: 0;
  width: 180px; height: 360px;
  background: linear-gradient(160deg, #1c1c1c 0%, #0a0a0a 100%);
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: -8px 20px 60px rgba(0,0,0,0.4);
  transform: rotate(-6deg) translateX(-10px);
  overflow: hidden;
  z-index: 1;
}
/* Front phone (center, upright) */
.phone-front {
  position: absolute;
  right: 20px; bottom: 0;
  width: 200px; height: 420px;
  background: linear-gradient(160deg, #1e1e2e 0%, #0a0a14 100%);
  border-radius: 32px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  overflow: hidden;
  z-index: 2;
}
/* Phone screen content */
.phone-screen {
  width: 100%; height: 100%;
  padding: 12px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.phone-topbar {
  height: 20px;
  background: rgba(23,150,255,0.15);
  border-radius: 4px;
  margin-bottom: 6px;
}
/* Simulated candlestick chart rows */
.chart-area {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding: 4px 2px;
}
.candle {
  flex: 1;
  border-radius: 2px;
  min-height: 10px;
}
.candle.up { background: linear-gradient(180deg, #00d4aa, #00a882); }
.candle.dn { background: linear-gradient(180deg, #ff4d6d, #cc0033); }
/* Price rows at bottom */
.price-rows {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 4px;
  border-radius: 3px;
  background: rgba(255,255,255,0.04);
}
.price-row .sym { font-size: 7px; color: #aaa; font-weight: 600; }
.price-row .val { font-size: 7px; font-weight: 700; }
.price-row .val.up { color: #00d4aa; }
.price-row .val.dn { color: #ff4d6d; }
/* Z logo on front phone */
.phone-z-logo {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  letter-spacing: -3px;
  pointer-events: none;
}

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--teal); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--gradient-2); border-color: transparent; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding-bottom: 20px; color: var(--text-muted); line-height: 1.75; font-size: 14px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── TABLE ── */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th {
  background: rgba(0,172,216,0.08);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid rgba(0,172,216,0.18);
}
.data-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-light);
}
.data-table tr:hover td { background: rgba(255,255,255,0.015); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #04040e 0%, #0a0220 50%, #12040f 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(23,150,255,0.08) 0%, transparent 65%);
}
.cta-banner h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  line-height: 1.15;
}
.cta-banner p { color: var(--text-muted); font-size: 16px; max-width: 520px; margin: 0 auto 40px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── TWO COLUMN ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }
.col-text h2 { font-size: clamp(26px, 3vw, 42px); font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.col-text p { color: var(--text-muted); font-size: 15px; margin-bottom: 14px; line-height: 1.75; }
.feature-list { margin: 22px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-light); }
.feature-list li i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }
.col-visual {
  background: linear-gradient(135deg, rgba(23,150,255,0.05) 0%, rgba(0,172,216,0.04) 60%, rgba(242,0,80,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.col-visual i {
  font-size: 90px;
  opacity: 0.18;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── INFO BOXES ── */
.info-boxes { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.info-box {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 26px 22px;
}
.info-box h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 9px; }
.info-box h4 i { color: var(--teal); }
.info-box p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 24px; left: 12.5%; width: 75%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,172,216,0.25), rgba(242,0,80,0.25), transparent);
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 48px; height: 48px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  margin: 0 auto 20px;
}
.step-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── MEDIA LOGOS ── */
.media-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.media-logo {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  min-width: 150px;
  text-align: center;
}
.media-logo:hover { color: var(--white); border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info h3 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); font-size: 15px; margin-bottom: 28px; line-height: 1.75; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail i { font-size: 18px; color: var(--teal); margin-top: 2px; flex-shrink: 0; }
.contact-detail div strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.contact-detail div span { font-size: 13px; color: var(--text-muted); }

.contact-form {
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 8px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); }
.form-group select option { background: #111; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.05); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr repeat(5,1fr);
  gap: 36px;
  padding-bottom: 48px;
}
.footer-brand img { height: 36px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 12px; color: #555; line-height: 1.75; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 9px; }
.footer-socials a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: #666;
  transition: all var(--transition);
}
.footer-socials a:hover { border-color: var(--teal); color: var(--teal); background: rgba(0,172,216,0.07); }
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 12px; color: #555; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--teal); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 28px 0; }
.footer-disclaimer { font-size: 11px; color: #444; line-height: 1.75; margin-bottom: 16px; }
.footer-disclaimer strong { color: #666; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.footer-legal-links a { font-size: 11px; color: #555; transition: color var(--transition); }
.footer-legal-links a:hover { color: var(--teal); }
.footer-copy { font-size: 11px; color: #444; text-align: center; margin-top: 16px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 40px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    justify-content: flex-start;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-item { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-link { padding: 14px 0; font-size: 15px; }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    background: transparent; border: none; box-shadow: none;
    padding: 0 0 8px 14px;
    display: none;
  }
  .nav-item.open .dropdown { display: block; }
  .nav-item.open > .nav-link .chevron { transform: rotate(180deg); }
  .dropdown li a { padding: 8px 0; color: #888; }
  .hamburger { display: flex; }
}

@media (max-width: 900px) {
  .accounts-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .mt5-grid { grid-template-columns: 1fr; gap: 40px; }
  .mt5-downloads { grid-template-columns: repeat(2,1fr); }
  .phone-cluster { width: 300px; height: 360px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.flip { direction: ltr; }
  .market-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  section { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .info-boxes { grid-template-columns: 1fr; }
  .mt5-downloads { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
