*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg-white: #FFFFFF;
  --bg-light: #F4F5FA;
  --bg-dark: #041B2E;
  --bg-dark-soft: #082744;
  --text-primary: #1B2A3E;
  --text-secondary: #435366;
  --text-muted: #6B7A90;
  --text-white: #FFFFFF;
  --accent-blue: #1863DC;
  --accent-blue-hover: #0E4FB8;
  --accent-blue-light: #E8F0FE;
  --border-color: #E4E8F0;
  --border-dark: rgba(255,255,255,0.12);
  --success: #10B981;
  --danger: #EF4444;
  --radius-pill: 35px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 2px 8px rgba(27,42,62,0.06);
  --shadow-md: 0 8px 24px rgba(27,42,62,0.08);
  --shadow-lg: 0 20px 60px rgba(27,42,62,0.12);
  --shadow-blue: 0 10px 30px rgba(24,99,220,0.22);
  --font: 'Poppins', system-ui, -apple-system, sans-serif;
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text-secondary);
  background: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 15px;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-blue-hover); }
h1, h2, h3, h4, h5, h6 { color: var(--text-primary); font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }
h1 { font-size: clamp(28px, 4.2vw, 52px); font-weight: 500; }
h2 { font-size: clamp(24px, 3.2vw, 38px); font-weight: 600; margin-bottom: 14px; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; margin-bottom: 10px; }
h4 { font-size: 18px; font-weight: 600; }
h5 { font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
p { margin-bottom: 14px; color: var(--text-secondary); }
.section { padding: 88px 0; position: relative; }
.section.section-light { background: var(--bg-light); }
.section.section-dark { background: var(--bg-dark); color: var(--text-white); }
.section.section-dark h2, .section.section-dark h3, .section.section-dark h4 { color: var(--text-white); }
.section.section-dark p { color: rgba(255,255,255,0.72); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-heading h2 { margin-bottom: 14px; }
.section-heading h2 .accent { color: var(--accent-blue); }
.section-heading .lead { font-size: 17px; color: var(--text-secondary); }
.section-light .section-heading .lead { color: var(--text-secondary); }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--accent-blue-light);
}
.section-dark .eyebrow { background: rgba(24,99,220,0.18); color: #60A5FA; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .22s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--accent-blue);
  color: var(--text-white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--accent-blue-hover); color: var(--text-white); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover { background: var(--text-white); color: var(--text-primary); border-color: var(--text-white); }
.btn-solid-white {
  background: var(--text-white);
  color: var(--text-primary);
}
.btn-solid-white:hover { background: #f0f4fa; color: var(--accent-blue); transform: translateY(-1px); }
.btn-outline-blue {
  background: transparent;
  color: var(--accent-blue);
  border-color: var(--accent-blue);
}
.btn-outline-blue:hover { background: var(--accent-blue); color: var(--text-white); }
.btn-lg { padding: 15px 34px; font-size: 15px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all .3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(27,42,62,0.08);
  padding: 10px 0;
}
.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.navbar.scrolled .nav-brand { color: var(--text-primary); }
.nav-brand svg { width: 34px; height: 34px; flex-shrink: 0; }
.nav-brand .tagline { font-size: 10px; font-weight: 500; opacity: 0.7; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  border-radius: var(--radius-pill);
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
}
.navbar.scrolled .nav-link { color: var(--text-secondary); }
.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.12);
  color: var(--text-white);
}
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
  background: var(--accent-blue-light);
  color: var(--accent-blue);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-lang {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  opacity: 0.9;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}
.navbar.scrolled .nav-lang { color: var(--text-primary); background: var(--bg-light); border-color: var(--border-color); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  padding: 0;
}
.navbar.scrolled .nav-toggle { color: var(--text-primary); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  margin: 4px 0;
  transition: all .3s ease;
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  background:
    linear-gradient(120deg, rgba(4,27,46,0.85) 0%, rgba(8,39,68,0.75) 55%, rgba(4,27,46,0.7) 100%),
    url('https://coresg-normal.trae.ai/api/ide/v1/text_to_image?prompt=premium%20luxury%20dark%20trading%20floor%20blue%20ambient%20lights%20modern%20financial%20tower%20night%20blurry%20lights%20cinematic%20wide&image_size=landscape_16_9') center/cover no-repeat;
  color: var(--text-white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(24,99,220,0.25) 0%, transparent 45%),
              radial-gradient(circle at 10% 85%, rgba(24,99,220,0.18) 0%, transparent 40%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.2);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 4px rgba(16,185,129,0.2);} 50% { box-shadow: 0 0 0 8px rgba(16,185,129,0.05);} }
.hero h1 {
  color: var(--text-white);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: #60A5FA; background: linear-gradient(90deg, #60A5FA, #A78BFA); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lead {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 620px;
}
.hero-stat {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .num {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 5px;
}
.hero-stat .lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--text-white);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.hero-card-head .title { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.hero-card-head .live { display: inline-flex; align-items:center; gap:6px; font-size: 11px; color: var(--success); font-weight: 600; }
.hero-card-head .live .dot { width:6px; height:6px; background: var(--success); border-radius: 50%; animation: pulseDot 1.6s infinite; }
.market-row { display: grid; grid-template-columns: 1.4fr 1fr 0.9fr auto; gap: 10px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; }
.market-row:last-child { border-bottom: none; }
.market-pair { font-weight: 600; color: var(--text-white); font-size: 14px; }
.market-price { font-variant-numeric: tabular-nums; font-weight: 500; color: var(--text-white); }
.market-change { font-variant-numeric: tabular-nums; font-weight: 500; font-size: 13px; }
.market-change.up { color: #34D399; }
.market-change.down { color: #F87171; }
.market-btn {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  background: transparent;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.market-btn:hover { background: var(--accent-blue); border-color: var(--accent-blue); color: var(--text-white); }
.features-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all .3s ease;
  position: relative;
}
.section-light .feature-card { background: var(--bg-white); box-shadow: var(--shadow-sm); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(24,99,220,0.25); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; margin: 0; color: var(--text-secondary); line-height: 1.7; }
.platform-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.platform-visual {
  position: relative;
  background: linear-gradient(135deg, #1863DC 0%, #6366F1 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 30px 80px rgba(24,99,220,0.3);
  min-height: 420px;
  overflow: hidden;
}
.platform-visual::before {
  content:''; position:absolute; top:-50%; right:-20%; width:100%; height:100%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}
.platform-features { display: flex; flex-direction: column; gap: 22px; }
.platform-feat { display: flex; gap: 18px; }
.platform-feat .pf-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-feat .pf-icon svg { width: 22px; height: 22px; }
.platform-feat h4 { margin-bottom: 6px; }
.platform-feat p { font-size: 14.5px; margin: 0; }
.tools-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tool-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.tool-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0; height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), #6366F1);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.tool-card:hover::before { transform: scaleX(1); }
.tool-card .tool-num {
  font-size: 44px;
  font-weight: 700;
  color: var(--accent-blue-light);
  line-height: 1;
  margin-bottom: 14px;
}
.tool-card h3 { margin-bottom: 12px; }
.tool-card p { font-size: 14.5px; margin: 0; line-height: 1.75; }
.instruments-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.instrument-tab {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease;
  font-family: var(--font);
}
.instrument-tab:hover { border-color: var(--accent-blue); color: var(--accent-blue); }
.instrument-tab.active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: var(--text-white);
  box-shadow: 0 6px 20px rgba(24,99,220,0.25);
}
.instruments-panel { display: none; }
.instruments-panel.active { display: block; animation: fadeInUp .4s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px);} to { opacity:1; transform: translateY(0);} }
.instruments-table {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.instruments-table .thead, .instruments-table .trow {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 24px;
  font-size: 14px;
}
.instruments-table .thead {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-color);
}
.instruments-table .trow {
  border-bottom: 1px solid var(--border-color);
  transition: background .2s;
}
.instruments-table .trow:last-child { border-bottom: none; }
.instruments-table .trow:hover { background: #FAFBFE; }
.instruments-table .pair { font-weight: 600; color: var(--text-primary); }
.instruments-table .price, .instruments-table .spread { font-variant-numeric: tabular-nums; font-weight: 500; color: var(--text-secondary); }
.instruments-table .change.up { color: var(--success); font-weight: 600; }
.instruments-table .change.down { color: var(--danger); font-weight: 600; }
.instruments-table .trade-btn {
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 12px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
}
.instruments-table .trade-btn:hover { background: var(--accent-blue); color: var(--text-white); }
.instruments-footnote {
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.protection-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.protection-tabs::-webkit-scrollbar { display: none; }
.protection-tab {
  padding: 16px 28px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color .2s;
  background: none;
  border: none;
  font-family: var(--font);
}
.protection-tab::after {
  content:'';
  position:absolute; left:0; right:0; bottom: -2px; height: 2px;
  background: var(--accent-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease;
}
.protection-tab:hover { color: var(--accent-blue); }
.protection-tab.active { color: var(--accent-blue); font-weight: 600; }
.protection-tab.active::after { transform: scaleX(1); }
.protection-panel { display: none; }
.protection-panel.active { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; animation: fadeInUp .4s ease; }
.protection-visual {
  background: linear-gradient(135deg, var(--accent-blue-light) 0%, #F0F4FF 100%);
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.protection-visual::before {
  content:''; position:absolute; inset: 30px;
  border: 2px dashed rgba(24,99,220,0.25);
  border-radius: calc(var(--radius-lg) - 10px);
}
.protection-visual svg { width: 110px; height: 110px; color: var(--accent-blue); opacity: 0.9; }
.protection-content h3 { font-size: 22px; margin-bottom: 14px; }
.protection-content p { font-size: 15px; line-height: 1.8; margin-bottom: 18px; }
.protection-checks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.protection-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-primary);
  font-weight: 500;
}
.protection-checks li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}
.accounts-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.account-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  transition: all .3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.account-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.account-card.featured {
  border: 2px solid var(--accent-blue);
  transform: scale(1.03);
  box-shadow: var(--shadow-blue);
}
.account-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.account-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent-blue), #6366F1);
  color: var(--text-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
}
.account-head { margin-bottom: 24px; }
.account-name { font-size: 20px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.account-desc { font-size: 14px; color: var(--text-muted); margin: 0; }
.account-price {
  padding: 22px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}
.account-price-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.account-card.featured .account-price-value {
  background: linear-gradient(90deg, var(--accent-blue), #6366F1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.account-price-currency { font-size: 18px; color: var(--text-muted); font-weight: 500; }
.account-price-label { font-size: 12.5px; color: var(--text-muted); margin-top: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
.account-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex-grow: 1; }
.account-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.account-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}
.account-card .btn { width: 100%; }
.faq-wrapper { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .25s ease;
}
.faq-item:hover { border-color: rgba(24,99,220,0.3); }
.faq-q {
  width: 100%;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}
.faq-q .faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
  font-size: 14px;
}
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); background: var(--accent-blue); color: var(--text-white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 26px;
}
.faq-item.open .faq-a {
  max-height: 3000px;
  padding: 0 26px 22px;
}
.faq-a p { font-size: 14.5px; color: #4B5563 !important; line-height: 1.8; margin: 0; }
.cta-section {
  background: linear-gradient(120deg, var(--bg-dark) 0%, #082744 100%);
  color: var(--text-white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content:'';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(24,99,220,0.28) 0%, transparent 45%),
              radial-gradient(circle at 85% 70%, rgba(99,102,241,0.2) 0%, transparent 45%);
  pointer-events: none;
}
.cta-section .container { position: relative; max-width: 720px; }
.cta-section h2 { color: var(--text-white); font-size: clamp(26px, 3.5vw, 42px); margin-bottom: 14px; }
.cta-section h2 .accent { background: linear-gradient(90deg, #60A5FA, #A78BFA); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cta-section .lead { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.72);
  padding: 72px 0 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-white);
  letter-spacing: -0.02em;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.62); margin-bottom: 20px; line-height: 1.8; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}
.footer-socials a:hover { background: var(--accent-blue); border-color: var(--accent-blue); color: var(--text-white); transform: translateY(-2px); }
.footer-col h5 { color: var(--text-white); margin-bottom: 20px; font-size: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  transition: all .2s;
  display: inline-block;
}
.footer-col ul a:hover { color: #60A5FA; transform: translateX(3px); }
.footer-regs {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-dark);
}
.footer-regs-head { text-align: center; margin-bottom: 26px; }
.footer-regs-head .label { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.footer-regs-head a { color: #60A5FA; font-weight: 600; font-size: 13px; letter-spacing: 0.04em; }
.footer-regs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.reg-badge {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  text-align: center;
  transition: all .2s;
  cursor: default;
}
.reg-badge:hover { border-color: rgba(96,165,250,0.35); background: rgba(24,99,220,0.08); }
.reg-badge .flag { font-size: 18px; margin-bottom: 6px; }
.reg-badge .name { color: var(--text-white); font-weight: 600; font-size: 13px; margin-bottom: 3px; }
.reg-badge .lic { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.03em; }
.footer-legal { padding: 32px 0 88px; }
.footer-legal p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.52);
  line-height: 1.85;
  margin-bottom: 12px;
}
.footer-bottom {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: #02101F;
  padding: 12px 20px;
  border-top: 1px solid var(--border-dark);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
}
.footer-bottom .copy { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-bottom .risk {
  font-size: 11.5px;
  color: rgba(255,255,255,0.62);
  text-align: right;
  max-width: 72%;
  line-height: 1.5;
}
.footer-bottom .risk strong { color: #F59E0B; font-weight: 700; }
.page-header {
  padding: 150px 0 70px;
  background:
    linear-gradient(120deg, rgba(4,27,46,0.88) 0%, rgba(8,39,68,0.8) 100%),
    url('https://coresg-normal.trae.ai/api/ide/v1/text_to_image?prompt=modern%20corporate%20finance%20building%20blue%20glass%20sunset%20premium&image_size=landscape_16_9') center/cover no-repeat;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content:'';
  position:absolute; inset: 0;
  background: radial-gradient(circle at 80% 40%, rgba(24,99,220,0.2) 0%, transparent 45%);
  pointer-events: none;
}
.page-header .container { position: relative; }
.page-header-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(24,99,220,0.25);
  color: #93C5FD;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(96,165,250,0.25);
}
.page-header h1 {
  color: var(--text-white);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 16px;
}
.page-header h1 .accent { color: #60A5FA; background: linear-gradient(90deg, #60A5FA, #A78BFA); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.page-header .lead { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 640px; line-height: 1.7; margin: 0; }
.content-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.content-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all .3s ease;
}
.content-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(24,99,220,0.25); }
.content-card .cc-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.content-card h3 { margin-bottom: 10px; font-size: 19px; }
.content-card p { font-size: 14.5px; margin: 0; line-height: 1.75; }
.highlight-box {
  background: linear-gradient(135deg, var(--accent-blue-light) 0%, #F0F4FF 100%);
  border-radius: var(--radius-lg);
  padding: 42px;
  border-left: 4px solid var(--accent-blue);
}
.highlight-box h3 { color: var(--text-primary); font-size: 24px; margin-bottom: 14px; }
.highlight-box p { font-size: 15.5px; color: var(--text-secondary); line-height: 1.8; max-width: 780px; }
.stats-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-box {
  text-align: center;
  padding: 36px 22px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  transition: all .3s;
}
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-box .num {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--accent-blue), #6366F1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-box .lbl {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all .25s;
}
.contact-info-item:hover { border-color: rgba(24,99,220,0.3); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-info-item .cii-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.contact-info-item h4 { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; font-weight: 600; }
.contact-info-item .cii-val { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.contact-info-item p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.7; }
.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.form-group label .req { color: var(--danger); margin-left: 2px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14.5px;
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all .2s ease;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); opacity: 0.8; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(24,99,220,0.1);
  background: #FAFCFF;
}
.form-group textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.form-success {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: #065F46;
  font-weight: 500;
  margin-bottom: 18px;
  font-size: 14px;
}
.form-success.visible { display: block; animation: fadeInUp .35s ease; }
.form-submit { margin-top: 8px; width: 100%; }
.offices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.office-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .3s ease;
  position: relative;
}
.office-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(24,99,220,0.25); }
.office-card .of-flag { font-size: 28px; margin-bottom: 12px; }
.office-card .of-city { font-size: 19px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.office-card .of-country { font-size: 13px; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
.office-card .of-type {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.office-card .of-phone {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
}
.office-card .of-phone a { color: var(--text-secondary); font-weight: 500; }
.office-card .of-phone a:hover { color: var(--accent-blue); }
.payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.payment-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all .25s;
}
.payment-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: rgba(24,99,220,0.25); }
.payment-card .pc-icon { font-size: 28px; margin-bottom: 8px; }
.payment-card .pc-name { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 3px; }
.payment-card .pc-desc { font-size: 12px; color: var(--text-muted); }
.testimonials-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 60px;
  font-family: Georgia, serif;
  color: var(--accent-blue-light);
  line-height: 1;
  font-weight: 700;
}
.testimonial-card .stars { color: #F59E0B; margin-bottom: 14px; font-size: 14px; letter-spacing: 2px; }
.testimonial-card .quote { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), #6366F1);
  color: var(--text-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 17px;
}
.testimonial-author .ta-name { font-weight: 600; color: var(--text-primary); font-size: 15px; }
.testimonial-author .ta-role { font-size: 12.5px; color: var(--text-muted); font-weight: 500; }
.about-2 { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 440px;
  background: url('https://coresg-normal.trae.ai/api/ide/v1/text_to_image?prompt=team%20of%20professional%20financial%20advisors%20european%20modern%20office%20blue%20light&image_size=portrait_4_3') center/cover no-repeat;
}
.about-visual::after {
  content:'';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4,27,46,0.65) 100%);
}
.about-badge {
  position: absolute;
  left: 28px; bottom: 28px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: var(--text-white);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.about-badge .ab-num {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, var(--accent-blue), #6366F1);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.about-badge .ab-text { font-size: 13px; color: var(--text-muted); font-weight: 600; line-height: 1.4; text-transform: uppercase; letter-spacing: 0.04em; }
.about-content h2 { margin-bottom: 18px; }
.about-content p { font-size: 15.5px; line-height: 1.85; margin-bottom: 16px; }
.about-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 26px 0 30px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}
.about-list li::before {
  content:'✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
}
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 80px;
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transform: translateY(130%);
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text { flex-grow: 1; }
.cookie-text p { font-size: 13.5px; color: var(--text-secondary); margin: 0; line-height: 1.6; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 1100px) {
  .features-4, .stats-4, .offices-grid, .payments-grid, .footer-regs-grid { grid-template-columns: repeat(2, 1fr);}
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid .footer-col:nth-child(4), .footer-grid .footer-col:nth-child(5) { grid-column: span 1; }
  .accounts-3 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .account-card.featured { transform: none; }
  .account-card.featured:hover { transform: translateY(-4px); }
  .about-2, .contact-grid, .protection-panel.active, .platform-grid, .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { min-height: 360px; }
  .protection-visual { min-height: 260px; }
  .tools-3, .testimonials-2 { grid-template-columns: 1fr; }
  .content-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .instruments-table .thead, .instruments-table .trow {
    grid-template-columns: 1.3fr 1fr 1fr 0.8fr auto;
    padding: 14px 16px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .section-heading { margin-bottom: 40px; }
  .nav-toggle { display: inline-flex; flex-direction: column; }
  .nav-menu, .nav-cta { display: none; }
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--bg-white);
    padding: 30px 24px;
    gap: 4px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  }
  .nav-menu.active .nav-link {
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 16px;
    border-radius: var(--radius-md);
    width: 100%;
  }
  .nav-menu.active .nav-link:hover, .nav-menu.active .nav-link.active {
    background: var(--accent-blue-light);
    color: var(--accent-blue);
  }
  .navbar { padding: 12px 0; }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero h1 { font-size: 34px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-card { padding: 20px; }
  .market-row { grid-template-columns: 1.3fr 0.8fr 0.8fr auto; font-size: 13px; gap: 6px; padding: 10px 0; }
  .features-4, .stats-4, .offices-grid, .payments-grid, .footer-regs-grid, .content-grid-3 { grid-template-columns: 1fr; }
  .tools-3 { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-2 { grid-template-columns: 1fr; gap: 16px; }
  .about-list { grid-template-columns: 1fr; }
  .highlight-box { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; padding-bottom: 30px; }
  .footer-legal { padding-bottom: 110px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-bottom .risk { max-width: 100%; text-align: center; font-size: 10.5px; }
  .instruments-tabs { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; flex-wrap: nowrap; }
  .instruments-tabs::-webkit-scrollbar { display: none; }
  .instruments-table .thead { display: none; }
  .instruments-table .trow {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    padding: 18px 20px;
    gap: 8px;
    position: relative;
  }
  .instruments-table .trow > * { grid-column: span 1; }
  .instruments-table .trow .pair { grid-column: 1 / -1; font-size: 15px; padding-bottom: 4px; border-bottom: 1px solid var(--border-color); margin-bottom: 4px; }
  .instruments-table .trow .price::before { content:'Price: '; font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; display: block; }
  .instruments-table .trow .spread::before { content:'Spread: '; font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; display: block; }
  .instruments-table .trow .change { grid-column: 1 / 2; }
  .instruments-table .trow .change::before { content:'Change: '; font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; display: block; }
  .instruments-table .trow .trade-btn { position: absolute; right: 20px; top: 18px; }
  .protection-tabs { padding: 0 4px; }
  .protection-tab { padding: 14px 18px; font-size: 13.5px; }
  .cta-section { padding: 60px 0; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .cookie-banner { flex-direction: column; align-items: stretch; bottom: 70px; padding: 18px; left: 12px; right: 12px; }
  .cookie-buttons { justify-content: flex-end; }
  .platform-visual { min-height: 320px; padding: 24px; }
  .page-header { padding: 120px 0 54px; }
  .about-badge { left: 18px; bottom: 18px; padding: 14px 18px; gap: 10px; }
  .about-badge .ab-num { font-size: 26px; }
  .about-visual { min-height: 300px; }
  .feature-card, .content-card, .tool-card, .stat-box, .office-card, .testimonial-card { padding: 24px 20px; }
}
@media (max-width: 520px) {
  body { font-size: 14px; }
  .container { padding: 0 16px; }
  .hero h1 { font-size: 28px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat .num { font-size: 18px; }
  .section-heading h2 { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .h2 { font-size: 23px; }
  .footer-bottom { padding: 10px 14px; }
  .hero-actions .btn-lg { padding: 13px 24px; font-size: 14px; }
  .btn-lg { padding: 13px 28px; }
  .instruments-table .trow { padding: 16px; grid-template-columns: 1fr; }
  .instruments-table .trow .price, .instruments-table .trow .spread, .instruments-table .trow .change { grid-column: 1 / -1; }
  .instruments-table .trow .trade-btn { position: static; margin-top: 8px; }
  .protection-tabs { margin: 0 -4px 28px; padding: 0 4px; }
  .protection-tab { font-size: 12.5px; padding: 12px 14px; }
  .account-card { padding: 28px 22px; }
  .account-price-value { font-size: 32px; }
  .faq-q { padding: 16px 18px; font-size: 14px; }
  .faq-item.open .faq-a { padding: 0 18px 18px; }
  .nav-brand .tagline { display: none; }
}

.regulatory-section { padding: 88px 0; background: var(--bg-light); position: relative; }
.regulatory-section .section-heading { text-align: center; max-width: 780px; margin: 0 auto 52px; }
.regulatory-section .eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: var(--radius-pill); background: var(--accent-blue-light); color: var(--accent-blue); font-size: 12.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.regulatory-section h2 { margin-bottom: 14px; }
.regulatory-section h2 .accent { color: var(--accent-blue); }
.regulatory-section .lead { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }

.regulatory-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.reg-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 22px;
  background: #FFFFFF;
  border: 1.5px solid #E4E8F0;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(27,42,62,0.05);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  outline: none;
  min-height: 360px;
}

.reg-card:hover,
.reg-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(24,99,220,0.15);
  border-color: #C9A24A;
}

.reg-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(24,99,220,0.35), 0 14px 36px rgba(24,99,220,0.15);
}

.reg-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.reg-flag {
  font-size: 38px;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}

.reg-ext-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  transition: background .2s ease, color .2s ease;
}

.reg-card:hover .reg-ext-icon,
.reg-card:focus-visible .reg-ext-icon {
  background: var(--accent-blue-light);
  color: var(--accent-blue);
}

.reg-country {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 2px 0 -2px;
}

.reg-authority {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.02em;
}

.reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  width: fit-content;
}

.reg-badge.home {
  background: rgba(16,185,129,0.12);
  color: #047857;
  border: 1px solid rgba(16,185,129,0.25);
}

.reg-badge.passport {
  background: rgba(24,99,220,0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(24,99,220,0.2);
}

.reg-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

.reg-data {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-top: 2px;
  border-top: 1px solid var(--border-color);
}

.reg-data strong { color: var(--text-primary); font-weight: 600; }

.reg-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-blue);
  padding-top: 4px;
  transition: gap .2s ease, color .2s ease;
}

.reg-card:hover .reg-link,
.reg-card:focus-visible .reg-link {
  gap: 10px;
  color: var(--accent-blue-hover);
}

.reg-disclaimer {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 22px 26px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

.reg-disclaimer strong { color: var(--text-secondary); }

@media (max-width: 1100px) {
  .regulatory-grid { grid-template-columns: repeat(3, 1fr); }
  .regulatory-grid > *:nth-child(4),
  .regulatory-grid > *:nth-child(5) { grid-column: span 1; }
  .regulatory-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .regulatory-grid .reg-card:nth-child(4) { grid-column: 1 / 2; justify-self: stretch; }
  .regulatory-grid .reg-card:nth-child(5) { grid-column: 2 / 3; justify-self: stretch; }
  .reg-card { min-height: 340px; }
}

@media (max-width: 900px) {
  .regulatory-grid { grid-template-columns: repeat(2, 1fr); }
  .regulatory-grid .reg-card:nth-child(n) { grid-column: auto; }
  .reg-card { min-height: 320px; padding: 22px 20px; }
  .regulatory-section { padding: 72px 0; }
}

@media (max-width: 768px) {
  .regulatory-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reg-card { min-height: 330px; padding: 22px 18px; }
  .reg-flag { font-size: 34px; }
  .reg-disclaimer { padding: 18px 20px; font-size: 12px; }
}

@media (max-width: 520px) {
  .regulatory-grid { grid-template-columns: 1fr; gap: 14px; }
  .reg-card { min-height: auto; padding: 22px 20px; }
  .regulatory-section { padding: 60px 0; }
  .regulatory-section .lead { font-size: 14.5px; }
  .reg-disclaimer { padding: 16px 18px; font-size: 11.5px; }
}
