/* ============================================================
   dehamenkul.com — Premium Finans Platformu
   Global Stylesheet v2
   ============================================================ */

/* ─── Preloader ─────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #060D1A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.pre-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pre-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.pre-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: prePulse 1.6s ease-in-out infinite;
}
.pre-logo svg {
  border-radius: 12px;
  filter: drop-shadow(0 0 18px rgba(37,99,235,.6));
}
.pre-brand {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #F1F5F9;
  letter-spacing: -0.5px;
}
.pre-brand span { color: #2563EB; }
.pre-bar {
  width: 220px;
  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
}
.pre-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2563EB, #10B981);
  border-radius: 99px;
  animation: preLoad 1.8s ease forwards;
}
.pre-text {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: #4B5563;
  letter-spacing: .5px;
}
@keyframes prePulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
@keyframes preLoad {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --bg-primary:      #060D1A;
  --bg-surface:      #0B1526;
  --bg-card:         #0F1E30;
  --bg-card-hover:   #152438;
  --bg-elevated:     #192B3C;
  --border:          #1B2F45;
  --border-hover:    #2563EB;
  --text-primary:    #EFF6FF;
  --text-secondary:  #8BA8C4;
  --text-muted:      #4B6480;
  --accent:          #2563EB;
  --accent-hover:    #1D4ED8;
  --accent-glow:     rgba(37,99,235,0.12);
  --green:           #10B981;
  --green-bg:        rgba(16,185,129,0.08);
  --red:             #EF4444;
  --red-bg:          rgba(239,68,68,0.08);
  --gold:            #F59E0B;
  --radius-sm:       6px;
  --radius-md:       10px;
  --radius-lg:       16px;
  --radius-xl:       20px;
  --shadow-sm:       0 2px 8px rgba(0,0,0,0.3);
  --shadow-card:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-elevated: 0 12px 48px rgba(0,0,0,0.55);
  --transition:      all 0.2s ease;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ─── Market Ticker Bar ──────────────────────────────────── */
.ticker-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  height: 34px;
  overflow: hidden;
  position: relative;
}
.ticker-bar::before,
.ticker-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}
.ticker-bar::before { left: 0;  background: linear-gradient(to right, var(--bg-surface), transparent); }
.ticker-bar::after  { right: 0; background: linear-gradient(to left,  var(--bg-surface), transparent); }

.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: ticker-scroll 55s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.ticker-item .t-name { color: var(--text-primary); }
.ticker-item .t-val  { font-variant-numeric: tabular-nums; }
.ticker-item .t-up   { color: var(--green); }
.ticker-item .t-down { color: var(--red); }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Header ─────────────────────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 13, 26, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
#header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(6, 13, 26, 0.97);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 72px; width: auto; display: block; }
.logo-mark {
  width: 30px; height: 30px;
  background: var(--accent);
  border-radius: 8px;
  display: grid;
  place-items: center;
}
.logo-mark svg { width: 16px; height: 16px; color: #fff; stroke-width: 2.5; }
.logo-text { font-size: 16px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.025em; }
.logo-text span { color: var(--accent); }

/* Nav */
.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-link:hover  { color: var(--text-primary); background: var(--bg-card); }
.nav-link.active { color: var(--text-primary); background: var(--bg-card); }

/* Header Actions */
.nav-actions { display: flex; align-items: center; gap: 8px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border: none; border-radius: var(--radius-sm);
  font-family: inherit; font-weight: 600; font-size: 14px;
  padding: 8px 18px; cursor: pointer; white-space: nowrap;
  transition: var(--transition);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text-primary); border-color: var(--border-hover); background: var(--bg-card); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}
.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--bg-elevated); border-color: var(--border-hover); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover { background: var(--accent-glow); }
.btn-lg { padding: 12px 28px; font-size: 15px; border-radius: var(--radius-md); }
.btn-xl { padding: 14px 36px; font-size: 16px; border-radius: var(--radius-md); }
.btn-full { width: 100%; }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px;
  color: var(--text-primary);
  align-items: center;
  justify-content: center;
}
.mobile-toggle svg { width: 20px; height: 20px; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 66px; left: 0; right: 0; bottom: 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  z-index: 99;
  padding: 16px 24px 40px;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--text-primary);
  background: var(--bg-card);
}
.mobile-divider { border: none; border-top: 1px solid var(--border); margin: 10px 0; }
.mobile-actions { display: flex; flex-direction: column; gap: 10px; }

/* ─── Hero Section ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 20% 60%, rgba(37,99,235,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 600px 500px at 85% 25%, rgba(16,185,129,0.03) 0%, transparent 65%),
    var(--bg-primary);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 1100px 700px at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 72px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.22);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #60A5FA;
  margin-bottom: 22px;
}
.hero-badge-pulse {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.4);
  animation: badge-pulse 2s ease-out infinite;
}
@keyframes badge-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.hero-title {
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.hero-title .gradient-text {
  background: linear-gradient(130deg, #93C5FD 0%, #60A5FA 40%, #3B82F6 70%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat { padding: 0 28px 0 0; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat + .hero-stat { padding-left: 28px; border-left: 1px solid var(--border); }
.hero-stat-val { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; color: var(--text-primary); }
.hero-stat-val span { color: var(--accent); }
.hero-stat-lbl { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ─── Dashboard Mockup ───────────────────────────────────── */
.mockup-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.mockup-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── Hero Person Photo ─────────────────────────────────── */
.hero-person-wrap {
  position: relative;
  z-index: 1;
  width: 340px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.07) inset;
}
.hero-person-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 24px;
  filter: brightness(1.05) contrast(1.02);
}
.hero-person-shine {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 50%, rgba(37,99,235,.08) 100%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-person-wrap { width: 260px; }
  .hero-person-img  { height: 320px; }
}
@media (max-width: 768px) {
  .hero-person-wrap { width: 220px; }
  .hero-person-img  { height: 260px; }
}

/* ── Hero Chart Mockup ─────────────────────────────────── */
.hero-chart-mockup {
  position: relative;
  z-index: 1;
  width: 340px;
  background: rgba(11,21,38,.85);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 32px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04) inset;
}
.hcm-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1rem;
}
.hcm-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hcm-dot.red    { background: #EF4444; }
.hcm-dot.yellow { background: #F59E0B; }
.hcm-dot.green  { background: #10B981; }
.hcm-title {
  margin-left: 6px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.hcm-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.hcm-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hcm-stat-lbl { font-size: .68rem; color: var(--text-muted); }
.hcm-stat-val { font-size: 1.3rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; }
.hcm-stat-chg { font-size: .68rem; font-weight: 600; }
.hcm-stat-chg.up   { color: var(--green); }
.hcm-stat-chg.down { color: var(--red); }
.hcm-chart {
  width: 100%;
  height: 90px;
  display: block;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}
.hcm-assets {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.hcm-asset {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hcm-asset-name {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-secondary);
  width: 36px;
  flex-shrink: 0;
}
.hcm-asset-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,.06);
  border-radius: 99px;
  overflow: hidden;
}
.hcm-asset-bar span {
  display: block;
  height: 100%;
  background: #2563EB;
  border-radius: 99px;
}
.hcm-asset-pct {
  font-size: .68rem;
  font-weight: 700;
  width: 44px;
  text-align: right;
  flex-shrink: 0;
}
.hcm-asset-pct.up   { color: var(--green); }
.hcm-asset-pct.down { color: var(--red); }
@media (max-width: 768px) {
  .hero-chart-mockup { width: 100%; max-width: 320px; }
}
.dash-window {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    var(--shadow-elevated),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}
.dash-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 9px; height: 9px; border-radius: 50%; }
.dd-red    { background: #FF5F57; }
.dd-amber  { background: #FFBD2E; }
.dd-green  { background: #28CA41; }
.dash-win-title { font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; }
.dash-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; color: var(--green);
  letter-spacing: 0.04em;
}
.dash-live-dot {
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: badge-pulse 1.8s infinite;
}

/* Dashboard body: chart + watchlist */
.dash-body { display: grid; grid-template-columns: 1fr 148px; }

.dash-chart-area {
  padding: 16px;
  border-right: 1px solid var(--border);
}
.dash-chart-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}
.dash-index-name { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; color: var(--text-muted); text-transform: uppercase; }
.dash-index-price { font-size: 20px; font-weight: 700; color: var(--text-primary); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; margin-top: 2px; }
.dash-index-chg {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
  margin-top: 3px;
}
.dash-index-chg.up   { color: var(--green); background: var(--green-bg); }
.dash-index-chg.down { color: var(--red);   background: var(--red-bg);   }
.dash-tf {
  display: flex; gap: 2px;
}
.dash-tf-btn {
  padding: 3px 7px;
  font-size: 10px; font-weight: 600;
  border-radius: 3px; border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer; transition: var(--transition);
}
.dash-tf-btn.active, .dash-tf-btn:hover { background: var(--accent); color: #fff; }
.chart-svg { width: 100%; height: 100px; display: block; }
.dash-chart-footer {
  display: flex; gap: 16px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.dcf-item { display: flex; flex-direction: column; }
.dcf-label { font-size: 9px; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.dcf-value { font-size: 11px; font-weight: 600; color: var(--text-secondary); font-variant-numeric: tabular-nums; margin-top: 1px; }

/* Watchlist */
.dash-watchlist {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
}
.dwl-title {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); padding-bottom: 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.dwl-item {
  display: flex; flex-direction: column; gap: 1px;
  padding: 6px 4px; border-radius: 4px;
  transition: var(--transition);
}
.dwl-item:hover { background: var(--bg-elevated); }
.dwl-sym { font-size: 11px; font-weight: 700; color: var(--text-primary); }
.dwl-price { font-size: 10px; font-variant-numeric: tabular-nums; color: var(--text-secondary); }
.dwl-chg {
  display: inline-block;
  font-size: 9px; font-weight: 700;
  padding: 1px 4px; border-radius: 2px; margin-top: 1px;
  width: fit-content;
}
.dwl-chg.up   { color: var(--green); background: var(--green-bg); }
.dwl-chg.down { color: var(--red);   background: var(--red-bg);   }

/* Portfolio bar */
.dash-pf-bar {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border);
}
.dash-pf-item {
  padding: 12px 16px;
  border-right: 1px solid var(--border);
}
.dash-pf-item:last-child { border-right: none; }
.dash-pf-lbl { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.dash-pf-val { font-size: 12px; font-weight: 700; color: var(--text-primary); font-variant-numeric: tabular-nums; margin-top: 3px; }
.dash-pf-val.up { color: var(--green); }

/* ─── Layout Commons ─────────────────────────────────────── */
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.container  { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

.section-header { text-align: center; margin-bottom: 52px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 18px; height: 1px;
  background: var(--accent); opacity: 0.4;
}
.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800; letter-spacing: -0.025em;
  color: var(--text-primary); margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; color: var(--text-secondary);
  max-width: 540px; margin: 0 auto; line-height: 1.75;
}

/* ─── Market Cards Strip ─────────────────────────────────── */
.market-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.market-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.mkt-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: default;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}
.mkt-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; transition: var(--transition);
}
.mkt-card.up::after   { background: var(--green); }
.mkt-card.down::after { background: var(--red); }
.mkt-card:hover { background: var(--bg-card-hover); border-color: var(--border-hover); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.mkt-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.mkt-name { font-size: 11px; font-weight: 700; color: var(--text-secondary); letter-spacing: 0.04em; text-transform: uppercase; }
.mkt-badge {
  font-size: 10px; font-weight: 700;
  padding: 2px 6px; border-radius: 3px;
}
.mkt-badge.up   { color: var(--green); background: var(--green-bg); }
.mkt-badge.down { color: var(--red);   background: var(--red-bg);   }
.mkt-price {
  font-size: 19px; font-weight: 700;
  color: var(--text-primary); font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.mkt-sparkline { width: 100%; height: 36px; display: block; }
.mkt-footer { display: flex; justify-content: space-between; margin-top: 8px; }
.mkt-label { font-size: 10px; color: var(--text-muted); }
.mkt-vol   { font-size: 10px; color: var(--text-muted); font-variant-numeric: tabular-nums; }

/* ─── Stocks Data Table ──────────────────────────────────── */
.stocks-section { background: var(--bg-surface); }

/* ── Investment Products ─────────────────────────────────── */
.invest-section { background: var(--bg-primary); }
.invest-section .section-sub strong { color: var(--accent); }
.invest-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,99,235,.12);
  color: var(--accent);
  border: 1px solid rgba(37,99,235,.25);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.invest-section .eyebrow svg { width: 14px; height: 14px; }
.invest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 1024px) { .invest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .invest-grid { grid-template-columns: 1fr; } }

.invest-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.invest-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(37,99,235,.18);
}
.invest-card--popular {
  border-color: var(--accent);
  background: linear-gradient(145deg, #0F1E30 60%, rgba(37,99,235,.08));
}
.invest-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 99px;
}
.invest-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(37,99,235,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: .25rem;
}
.invest-icon svg { width: 24px; height: 24px; stroke-width: 1.75; }
.invest-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.invest-card > p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.invest-stats {
  display: flex;
  gap: 1.5rem;
  margin: .5rem 0;
}
.invest-stats > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.invest-stats span {
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .3px;
}
.invest-stats strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
}
.invest-btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: .65rem 1rem;
  border-radius: 10px;
  font-size: .875rem;
}

/* ── Why Us Grid ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.why-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37,99,235,.18);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37,99,235,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.why-icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: .6rem;
}
.why-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.table-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.table-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}
.table-card-title { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.tab-group { display: flex; gap: 4px; }
.tab-btn {
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600;
  border: none; background: transparent;
  color: var(--text-muted); transition: var(--transition);
}
.tab-btn:hover  { background: var(--bg-elevated); color: var(--text-secondary); }
.tab-btn.active { background: var(--accent); color: #fff; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table thead th {
  padding: 11px 16px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-muted);
  text-align: left; white-space: nowrap;
  background: rgba(11,21,38,0.6);
  border-bottom: 1px solid var(--border);
}
.data-table thead th:not(:first-child) { text-align: right; }
.data-table tbody tr { border-bottom: 1px solid rgba(27,47,69,0.4); transition: var(--transition); }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: var(--bg-elevated); }
.data-table tbody td { padding: 13px 16px; font-size: 13.5px; white-space: nowrap; }
.data-table tbody td:not(:first-child) { text-align: right; }
.td-sym   { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.td-full  { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.td-price-num { font-weight: 600; font-variant-numeric: tabular-nums; color: var(--text-primary); }
.td-chg-abs { font-weight: 600; font-variant-numeric: tabular-nums; }
.td-chg-abs.up   { color: var(--green); }
.td-chg-abs.down { color: var(--red);   }
.pct-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 3px 9px; border-radius: 4px;
  font-size: 11.5px; font-weight: 700;
  font-variant-numeric: tabular-nums; min-width: 72px;
}
.pct-pill.up   { background: var(--green-bg); color: var(--green); }
.pct-pill.down { background: var(--red-bg);   color: var(--red);   }
.td-vol { color: var(--text-secondary); font-variant-numeric: tabular-nums; font-size: 13px; }

/* Row sparkline */
.row-spark { width: 72px; height: 26px; vertical-align: middle; }

/* ─── Features ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feat-card {
  background: var(--bg-card);
  padding: 36px 30px;
  transition: var(--transition);
}
.feat-card:hover { background: var(--bg-card-hover); }
.feat-icon {
  width: 46px; height: 46px;
  background: var(--accent-glow);
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feat-icon svg { width: 22px; height: 22px; color: var(--accent); stroke-width: 1.75; }
.feat-title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.feat-text  { font-size: 13.5px; color: var(--text-secondary); line-height: 1.7; }

/* ─── Stats ──────────────────────────────────────────────── */
.stats-band {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-block {
  padding: 52px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800; letter-spacing: -0.035em;
  color: var(--text-primary); margin-bottom: 6px;
}
.stat-num em { font-style: normal; color: var(--text-primary); }
.stat-lbl { font-size: 13px; color: var(--text-muted); }

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-wrap { padding: 80px 28px; max-width: 1280px; margin: 0 auto; }
.cta-card {
  background: linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(37,99,235,0.03) 100%);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800; letter-spacing: -0.025em;
  color: var(--text-primary); margin-bottom: 14px;
}
.cta-sub {
  font-size: 16px; color: var(--text-secondary);
  max-width: 480px; margin: 0 auto 32px; line-height: 1.7;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--bg-surface); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 52px; }
.footer-brand-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.7; margin-top: 12px; max-width: 270px; }
.footer-brand .logo-img { height: 90px; }
.pre-logo-img { height: 90px; width: auto; display: block; filter: drop-shadow(0 0 20px rgba(37,99,235,.5)); animation: prePulse 1.6s ease-in-out infinite; }
.footer-col-title { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.footer-link-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-link-list a { font-size: 13.5px; color: var(--text-secondary); transition: var(--transition); }
.footer-link-list a:hover { color: var(--text-primary); }
.footer-contact-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-contact-row svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.footer-contact-row span { font-size: 13.5px; color: var(--text-secondary); }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 28px; text-align: center; display: flex; flex-direction: column; gap: 10px; }
.footer-legal { font-size: 11px; color: var(--text-muted); line-height: 1.75; max-width: 820px; margin: 0 auto; }
.footer-copy  { font-size: 12px; color: var(--text-muted); }
.footer-copy a { color: var(--text-muted); text-decoration: none; }
.footer-copy a:hover { color: var(--accent); }

/* ─── Legal Pages ────────────────────────────────────────── */
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.legal-toc { position: sticky; top: 90px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; }
.legal-toc-title { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.legal-toc nav { display: flex; flex-direction: column; gap: 2px; }
.legal-toc-link { font-size: 13px; color: var(--text-secondary); padding: 6px 10px; border-radius: var(--radius-sm); text-decoration: none; transition: var(--transition); display: block; }
.legal-toc-link:hover { color: var(--text-primary); background: var(--bg-surface); }
.legal-content { min-width: 0; }
.legal-section { padding-bottom: 48px; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section h2 { font-size: 22px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; padding-top: 4px; }
.legal-section h3 { font-size: 15px; font-weight: 600; color: var(--text-primary); margin: 20px 0 10px; }
.legal-section p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 14px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section p a, .legal-section li a { color: var(--accent); text-decoration: none; }
.legal-section p a:hover, .legal-section li a:hover { text-decoration: underline; }
.legal-list { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.legal-list li { font-size: 14px; color: var(--text-secondary); line-height: 1.75; padding-left: 20px; position: relative; }
.legal-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-weight: 600; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin: 16px 0; }
.legal-table th { text-align: left; padding: 10px 14px; background: var(--bg-surface); color: var(--text-muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 1px solid var(--border); }
.legal-table td { padding: 12px 14px; color: var(--text-secondary); border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.6; }
.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:hover td { background: var(--bg-surface); }
.legal-table code { font-family: 'Courier New', monospace; font-size: 12px; background: var(--bg-surface); padding: 2px 6px; border-radius: 4px; color: var(--accent); border: 1px solid var(--border); }
.legal-info-box { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; margin: 18px 0; }
.lib-row { display: flex; align-items: flex-start; gap: 16px; padding: 12px 18px; border-bottom: 1px solid var(--border); }
.lib-row:last-child { border-bottom: none; }
.lib-label { font-size: 12px; font-weight: 600; color: var(--text-muted); width: 140px; flex-shrink: 0; padding-top: 1px; }
.lib-val { font-size: 13.5px; color: var(--text-primary); line-height: 1.6; }
.lib-val a { color: var(--accent); text-decoration: none; }
.lib-val a:hover { text-decoration: underline; }
.legal-notice { background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.25); border-left: 3px solid var(--accent); border-radius: var(--radius-sm); padding: 16px 18px; font-size: 13.5px; color: var(--text-secondary); line-height: 1.75; margin: 18px 0; }
.legal-notice--warning { background: rgba(245,158,11,0.07); border-color: rgba(245,158,11,0.3); border-left-color: var(--gold); }
.legal-rights-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 18px; }
.legal-right-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; transition: border-color .2s; }
.legal-right-card:hover { border-color: var(--border-hover); }
.lrc-icon { width: 36px; height: 36px; background: var(--accent-glow); border: 1px solid rgba(37,99,235,0.18); border-radius: var(--radius-sm); display: grid; place-items: center; margin-bottom: 12px; }
.lrc-icon svg { width: 16px; height: 16px; color: var(--accent); }
.legal-right-card h4 { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.legal-right-card p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* ─── Cookie Banner ──────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 860px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: none;
  align-items: center; gap: 18px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.7);
  z-index: 200;
}
#cookie-banner.visible { display: flex; }
.cookie-text { font-size: 13px; color: var(--text-secondary); flex: 1; line-height: 1.55; }
.cookie-text a { color: var(--accent); }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }

/* ─── Modals ─────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(3,7,14,0.88);
  backdrop-filter: blur(10px);
  z-index: 300;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%; max-width: 440px;
  position: relative;
  box-shadow: var(--shadow-elevated);
  animation: modal-in 0.25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.modal-x {
  position: absolute; top: 14px; right: 14px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 6px; display: flex;
  color: var(--text-secondary); transition: var(--transition);
}
.modal-x:hover { color: var(--text-primary); border-color: var(--border-hover); }
.modal-x svg { width: 15px; height: 15px; }
.modal-logo-row { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.modal-logo-img { height: 44px; width: auto; display: block; }
.modal-logo-icon {
  width: 28px; height: 28px;
  background: var(--accent); border-radius: 7px;
  display: grid; place-items: center;
}
.modal-logo-icon svg { width: 14px; height: 14px; color: #fff; stroke-width: 2.5; }
.modal-logo-name { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.modal-title { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 5px; }
.modal-subtitle { font-size: 14px; color: var(--text-secondary); margin-bottom: 26px; }
.modal-footer-text { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 18px; }
.modal-footer-text a { color: var(--accent); }
.divider { display: flex; align-items: center; gap: 10px; margin: 18px 0; font-size: 12px; color: var(--text-muted); }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ─── Forms ──────────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-secondary); margin-bottom: 5px; }
.form-control {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px; color: var(--text-primary);
  outline: none; transition: var(--transition);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus { border-color: var(--accent); background: var(--bg-card); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Alert */
.form-alert {
  display: none;
  align-items: center; gap: 10px;
  padding: 13px 16px; border-radius: var(--radius-md);
  font-size: 13.5px; margin-top: 14px;
}
.form-alert.success { display: flex; background: var(--green-bg); border: 1px solid rgba(16,185,129,0.2); color: var(--green); }
.form-alert.error   { display: flex; background: var(--red-bg);   border: 1px solid rgba(239,68,68,0.2);   color: var(--red);   }
.form-alert svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── Page Hero (inner pages) ────────────────────────────── */
.page-hero-section {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 72px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 72px 0 60px;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 400px at 50% 50%, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .page-hero-inner { position: relative; max-width: 600px; margin: 0 auto; }
.page-hero-title { font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; color: var(--text-primary); margin: 12px 0; }
.page-hero-sub   { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; }

/* ─── FAQ Page ───────────────────────────────────────────── */
.faq-page-section { background: var(--bg-primary); }
.faq-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) { .faq-page-grid { grid-template-columns: 1fr; } }

.faq-category {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}
.faq-cat-header {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.faq-cat-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(37,99,235,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.faq-cat-icon svg { width: 20px; height: 20px; }
.faq-cat-header h2 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin: 0; }

.faq-cta-band {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #0F1E30, rgba(37,99,235,.08));
  border: 1px solid rgba(37,99,235,.25);
  border-radius: 16px;
  padding: 1.75rem 2rem;
}
.faq-cta-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(37,99,235,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.faq-cta-icon svg { width: 22px; height: 22px; }
.faq-cta-band h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin: 0 0 4px; }
.faq-cta-band p  { font-size: .82rem; color: var(--text-muted); margin: 0; }
.faq-cta-band .btn { margin-left: auto; flex-shrink: 0; }
@media (max-width: 600px) {
  .faq-cta-band { flex-direction: column; align-items: flex-start; }
  .faq-cta-band .btn { margin-left: 0; width: 100%; text-align: center; }
}
.page-hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 400px at 75% 50%, rgba(37,99,235,0.05) 0%, transparent 70%);
}
.page-hero-inner { position: relative; }
.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 13px; height: 13px; opacity: 0.5; }
.page-title { font-size: clamp(28px, 4vw, 50px); font-weight: 800; letter-spacing: -0.03em; color: var(--text-primary); margin-bottom: 14px; }
.page-sub { font-size: 16px; color: var(--text-secondary); max-width: 540px; line-height: 1.75; }

/* ─── About Content ──────────────────────────────────────── */
.vision-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 52px;
}
.vision-card blockquote {
  font-size: clamp(17px, 2.2vw, 22px); font-weight: 600;
  color: var(--text-primary); line-height: 1.55;
  letter-spacing: -0.01em;
  border-left: 3px solid var(--accent); padding-left: 24px;
  margin-bottom: 20px;
}
.vision-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; }
.vision-card p + p { margin-top: 14px; }

.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.val-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.val-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s ease;
}
.val-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.val-card:hover::after { transform: scaleX(1); }
.val-icon { width: 44px; height: 44px; background: var(--accent-glow); border: 1px solid rgba(37,99,235,0.18); border-radius: var(--radius-md); display: grid; place-items: center; margin-bottom: 16px; }
.val-icon svg { width: 20px; height: 20px; color: var(--accent); stroke-width: 1.75; }
.val-title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.val-text  { font-size: 13.5px; color: var(--text-secondary); line-height: 1.7; }

/* About differentiator list */
.diff-list { display: flex; flex-direction: column; gap: 16px; }
.diff-item { display: flex; gap: 16px; align-items: flex-start; }
.diff-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--accent-glow); border: 1px solid rgba(37,99,235,0.2);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 12px; font-weight: 800; color: var(--accent);
}
.diff-body h4 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.diff-body p  { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }

/* ─── Contact Page ───────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.contact-form-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.contact-panel-title { font-size: 22px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.contact-panel-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; }
.contact-form-panel h2 { font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 24px; }
.contact-info-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.cip-header { padding: 28px; background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%); }
.cip-icon-ring { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.15); display: grid; place-items: center; margin-bottom: 14px; }
.cip-icon-ring svg { width: 22px; height: 22px; color: #fff; }
.cip-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.cip-subtitle { font-size: 13px; color: rgba(255,255,255,0.80); line-height: 1.6; }
.cip-header h3 { font-size: 17px; font-weight: 700; }
.cip-header p  { font-size: 13px; opacity: 0.82; margin-top: 4px; }
.cip-body { padding: 8px 24px 24px; }
.cip-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.cip-item:last-child { border-bottom: none; }
.cip-item-icon { width: 38px; height: 38px; background: var(--accent-glow); border: 1px solid rgba(37,99,235,0.20); border-radius: var(--radius-sm); display: grid; place-items: center; flex-shrink: 0; }
.cip-item-icon svg { width: 15px; height: 15px; color: var(--accent); }
.cip-item-body { flex: 1; }
.cip-item-label { font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.cip-item-value { font-size: 13.5px; color: var(--text-primary); font-weight: 500; line-height: 1.55; }
.cip-item-value a { color: var(--text-primary); text-decoration: none; }
.cip-item-value a:hover { color: var(--accent); }
.cip-icon { width: 36px; height: 36px; background: var(--accent-glow); border: 1px solid rgba(37,99,235,0.18); border-radius: var(--radius-sm); display: grid; place-items: center; flex-shrink: 0; }
.cip-icon svg { width: 15px; height: 15px; color: var(--accent); }
.cip-label { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.cip-value { font-size: 13.5px; color: var(--text-primary); font-weight: 500; }
/* Form extras */
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238BA8C4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; cursor: pointer; }
.form-select option { background: var(--bg-card); color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 8px; }
.faq-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; transition: border-color .2s; }
.faq-card:hover { border-color: var(--border-hover); }
.faq-q { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; line-height: 1.5; }
.faq-a { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }
.map-ph {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); height: 220px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--text-muted); margin-top: 24px;
}
.map-ph svg { width: 28px; height: 28px; opacity: 0.35; }
.map-ph span { font-size: 12px; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .market-grid { grid-template-columns: repeat(3,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stats-inner .stat-block:nth-child(2) { border-right: none; }
  .stats-inner .stat-block:nth-child(3) { border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .legal-layout { grid-template-columns: 180px 1fr; gap: 28px; }
  .contact-layout { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .faq-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr !important; }
}
@media (max-width: 768px) {
  .nav-desktop, .nav-actions { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding: 40px 0; min-height: auto; }
  .market-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .cta-card { padding: 40px 24px; }
  .cta-wrap { padding: 40px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-rights-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .data-table .hide-sm { display: none; }
  .form-row-2 { grid-template-columns: 1fr; }
  .vision-card { padding: 28px; }
  #cookie-banner { flex-direction: column; text-align: center; bottom: 0; width: 100%; border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .cookie-btns { width: 100%; }
  .cookie-btns .btn { flex: 1; justify-content: center; }
}
@media (max-width: 520px) {
  .market-grid { grid-template-columns: 1fr 1fr; }
  .modal { padding: 28px 20px; }
  .contact-form-panel { padding: 24px; }
  .dash-pf-bar { display: none; }
}

/* ─── Hero Stock Photo ───────────────────────────────────── */
.hero-photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(37,99,235,.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(16,185,129,.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(99,102,241,.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Live Badge ─────────────────────────────────────────── */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--green);
  background: var(--green-bg);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 20px;
  padding: 2px 8px;
}
.live-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-green 1.5s ease-in-out infinite;
}
@keyframes pulse-green {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(1.5); }
}

/* ─── Market Card dynamic ids ────────────────────────────── */
.mkt-card .mkt-price { font-size: 1.55rem; font-weight: 700; color: var(--text-primary); line-height: 1.2; margin: 8px 0 2px; }
.mkt-change.up   { color: var(--green); font-size: 12px; font-weight: 600; }
.mkt-change.down { color: var(--red);   font-size: 12px; font-weight: 600; }

/* ─── Trust Section ─────────────────────────────────────── */
.trust-section { background: linear-gradient(180deg, transparent 0%, rgba(37,99,235,.04) 50%, transparent 100%); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.trust-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.trust-card:hover::before { opacity: 1; }

.trust-icon-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-glow);
  border: 1px solid rgba(37,99,235,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.trust-icon[style*='--ti-color'] {
  background: color-mix(in srgb, var(--ti-color) 12%, transparent);
  border-color: color-mix(in srgb, var(--ti-color) 25%, transparent);
  color: var(--ti-color, var(--accent));
}
.trust-icon i, .trust-icon svg { width: 22px; height: 22px; }
.trust-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(37,99,235,.2);
  padding: 3px 8px;
  border-radius: 20px;
}
.trust-badge[style*='--tb-color'] {
  color: var(--tb-color);
  background: color-mix(in srgb, var(--tb-color) 12%, transparent);
  border-color: color-mix(in srgb, var(--tb-color) 25%, transparent);
}
.trust-title { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.trust-text  { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; flex: 1; }
.trust-link  {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  transition: gap .2s;
  margin-top: auto;
}
.trust-link:hover { gap: 8px; }

/* Trust logos bar */
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
}
.trust-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 28px;
}
.tl-abbr  { font-size: 18px; font-weight: 800; color: var(--text-primary); letter-spacing: .04em; }
.tl-name  { font-size: 11px; color: var(--text-muted); text-align: center; max-width: 120px; }
.trust-logo-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section { background: var(--bg-surface); }
.faq-link { color: var(--accent); text-decoration: underline; }

.faq-list {
  max-width: 780px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: var(--accent);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: inherit;
  font-size: .975rem;
  font-weight: 600;
}
.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
  transition: transform .3s ease;
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.5rem;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}
.faq-a p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ─── Newsletter Banner ──────────────────────────────────── */
.nl-section {
  padding: 60px 0;
  background: var(--bg-primary);
}
.nl-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  background: linear-gradient(135deg, #0F1E30 0%, #0B1526 60%, rgba(37,99,235,.08) 100%);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.nl-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(37,99,235,.15) 0%, transparent 70%);
  pointer-events: none;
}
.nl-banner-left {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex: 1;
  min-width: 0;
}
.nl-banner-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.nl-banner-icon svg { width: 24px; height: 24px; }
.nl-banner-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 .35rem;
}
.nl-banner-sub {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 .75rem;
}
.nl-banner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.nl-banner-badges span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.2);
  padding: 3px 10px;
  border-radius: 99px;
}
.nl-banner-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  width: 340px;
}
.nl-banner-input {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.nl-banner-input:focus-within { border-color: var(--accent); }
.nl-input-icon {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  margin-left: 14px;
  flex-shrink: 0;
}
.nl-banner-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 13px 12px;
  font-size: .85rem;
  color: var(--text-primary);
  font-family: inherit;
}
.nl-banner-input input::placeholder { color: var(--text-muted); }
.nl-banner-input button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0 18px;
  height: 100%;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  font-family: inherit;
}
.nl-banner-input button:hover { background: var(--accent-hover); }
.nl-banner-input button:disabled { opacity: .6; cursor: not-allowed; }
.nl-success-msg { font-size: .78rem; color: var(--green); font-weight: 600; padding: 2px 4px; }

@media (max-width: 900px) {
  .nl-banner { flex-direction: column; align-items: stretch; padding: 1.75rem; }
  .nl-banner-form { width: 100%; }
}
@media (max-width: 540px) {
  .nl-banner-left { flex-direction: column; gap: .75rem; }
  .nl-banner-input { flex-direction: column; border-radius: 10px; }
  .nl-input-icon { display: none; }
  .nl-banner-input input { padding: 12px 14px; }
  .nl-banner-input button { padding: 12px; justify-content: center; }
}

/* ─── Social + Newsletter Section (legacy) ───────────────── */
.social-nl-section {
  padding: 80px 0;
  background: var(--bg-primary);
}
.social-nl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.social-nl-single {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin-inline: auto;
}

/* Social Block */
.social-block .eyebrow { margin-bottom: 12px; }
.social-block-title { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; line-height: 1.3; }
.social-block-sub   { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; }
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateX(4px); }
.sl-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--sl-color, var(--accent)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--sl-color, var(--accent)) 25%, transparent);
  color: var(--sl-color, var(--accent));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sl-icon i, .sl-icon svg { width: 20px; height: 20px; }
.sl-name   { font-size: 14px; font-weight: 600; color: var(--text-primary); line-height: 1.2; }
.sl-handle { font-size: 12px; color: var(--text-muted); }

/* Newsletter Block */
.newsletter-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.newsletter-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
  pointer-events: none;
}
.nl-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-glow);
  border: 1px solid rgba(37,99,235,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.nl-icon i { width: 24px; height: 24px; }
.nl-title { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin: 8px 0; line-height: 1.35; }
.nl-sub   { font-size: 13.5px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.65; }

.nl-form { display: flex; flex-direction: column; gap: 10px; }
.nl-input-wrap {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  transition: border-color .2s;
}
.nl-input-wrap:focus-within { border-color: var(--accent); }
.nl-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-primary);
}
.nl-input-wrap input::placeholder { color: var(--text-muted); }
.nl-input-wrap button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.nl-input-wrap button:hover { background: var(--accent-hover); }
.nl-input-wrap button:disabled { opacity: .6; cursor: not-allowed; }
.nl-success-msg { font-size: 13px; color: var(--green); font-weight: 500; padding: 4px 0; }
.nl-fine        { font-size: 11.5px; color: var(--text-muted); }

.nl-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.nls-item { display: flex; flex-direction: column; gap: 2px; padding: 0 20px 0 0; }
.nls-item:last-child { padding: 0 0 0 20px; }
.nls-item strong { font-size: 18px; font-weight: 800; color: var(--text-primary); }
.nls-item span   { font-size: 11.5px; color: var(--text-muted); }
.nls-sep { width: 1px; height: 32px; background: var(--border); margin: 0 0; flex-shrink: 0; }

/* ─── Responsive additions ───────────────────────────────── */
@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .social-nl-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-logos { flex-direction: column; gap: 16px; align-items: flex-start; padding: 20px 24px; }
  .trust-logo-sep { display: none; }
  .trust-logo-item { flex-direction: row; gap: 12px; padding: 0; }
  .tl-name { max-width: none; text-align: left; }
  .newsletter-block { padding: 24px; }
  .nl-input-wrap { flex-direction: column; }
  .nl-input-wrap button { padding: 12px; }
}