/* ===== CSS RESET & NORMALIZE ===== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.4;
  background: #0A0B1A;
  color: #F3F6FB;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #A05CFF;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
a:hover, a:focus {
  color: #FFF;
  text-decoration: underline;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}

/* ===== INDUSTRIAL MODERN STYLE VARIABLES ===== */
:root {
  --primary-bg: #0A0B1A;
  --secondary-bg: #1F2476;
  --accent: #A05CFF;
  --surface-dark: #171A29;
  --surface-light: #222444;
  --surface-contrast: #F3F6FB;
  --text-light: #F3F6FB;
  --text-dark: #171A29;
  --text-muted: #A3A7B6;
  --divider: #3B405C;
  --shadow: 0 4px 24px 0 rgba(25,35,65,0.22);
  --focus-ring: 0 0 0 3px rgba(160,92,255,0.4);
}

/* ===== BRAND FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, .cta-primary, .cta-secondary {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--accent);
  text-transform: none;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.16;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent);
}

p, li, blockquote, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}
p {
  margin-bottom: 16px;
}

strong {
  color: var(--accent);
  font-weight: 700;
}

/* ===== SPACING & LAYOUT CONTAINERS (FLEXBOX ONLY) ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0; /* managed by inner content sections */
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .option-grid, .value-grid, .team-grid, .plan-cards, .howto-step-cards, .security-feature-grid, .sparkline-chart-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item, .option-item, .value-item, .team-role-card, .step-card, .security-feature-item, .sparkline-chart {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--surface-dark);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px 24px 24px 24px;
  min-width: 240px;
  margin-bottom: 20px;
  border: 1px solid #282C40;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-item:hover, .option-item:hover, .value-item:hover, .team-role-card:hover, .plan-card:hover, .step-card:hover, .security-feature-item:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 24px 0 rgba(160,92,255,0.16), var(--shadow);
}

.card { margin-bottom: 20px; position: relative; }
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3F6FB;
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 rgba(20,20,40,0.06), var(--shadow);
  margin-bottom: 24px;
  color: #171A29;
  border-left: 5px solid var(--accent);
}
.testimonial-card blockquote {
  color: #171A29;
  font-size: 1.1rem;
  font-style: italic;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card strong {
  color: var(--secondary-bg);
}
.rating-badges span {
  color: #171A29;
  background: #F3F6FB;
  padding: 4px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .text-image-section, .content-grid, .card-container, .feature-grid, .option-grid, .value-grid, .team-grid, .plan-cards, .howto-step-cards, .security-feature-grid, .sparkline-chart-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* ===== HERO SECTIONS ===== */
.hero, .hero-trade, .markets-hero, .security-hero, .signup, .thank-you {
  min-height: 380px;
  background: linear-gradient(120deg, #12142C 60%, #1F2476 100%);
  box-shadow: 0 4px 20px 0 rgba(20,20,36,0.08);
  padding-top: 70px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .container, .hero-trade .container, .markets-hero .container, .security-hero .container, .signup .container, .thank-you .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1, .hero-trade h1, .markets-hero h1, .security-hero h1, .signup h1, .thank-you h1 {
  color: #F3F6FB;
  margin-bottom: 16px;
}
.hero p, .hero-trade p, .markets-hero p, .security-hero p, .signup p, .thank-you p {
  color: #C7CAE2;
}

/* ===== BUTTONS / CALL TO ACTIONS ===== */
.cta-primary, .cta-secondary {
  border-radius: 11px;
  padding: 14px 32px;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  outline: none;
  border: none;
  margin-top: 20px;
  margin-bottom: 12px;
  display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.14s;
  box-shadow: 0 2px 16px 0 rgba(160,92,255,0.13);
  cursor: pointer;
}
.cta-primary {
  background: var(--accent);
  color: #F3F6FB;
  letter-spacing: 0.03em;
  border: 2px solid var(--accent);
}
.cta-primary:hover, .cta-primary:focus {
  background: #8136ea;
  color: #fff;
  border-color: #8136ea;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 4px 20px 0 rgba(160,92,255,0.24);
}
.cta-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  margin-left: 10px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--accent);
  color: #fff;
  transform: scale(1.03);
}

button, .cta-primary, .cta-secondary {
  transition: all .18s cubic-bezier(.4,0,.2,1);
}

/* ====== HEADER, NAVIGATION & MOBILE NAV ====== */
header {
  width: 100%;
  background: var(--primary-bg);
  border-bottom: 1px solid var(--divider);
  box-shadow: 0 4px 20px 0 rgba(30,30,36,0.09);
  z-index: 99;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 32px;
  padding: 0 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
header nav a {
  color: #E7EAFF;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  padding: 7px 13px;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: var(--accent);
  color: #fff;
}
header nav .cta-primary {
  margin-left: 10px;
  padding: 10px 22px;
  font-size: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: var(--surface-dark);
  color: #fff;
  font-size: 2.1rem;
  padding: 8px 16px;
  border-radius: 11px;
  border: 2px solid var(--divider);
  margin-left: 16px;
}
.mobile-menu-toggle:focus {
  box-shadow: var(--focus-ring);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,17,35,0.98);
  z-index: 900;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.68,-0.6,.32,1.6);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 0 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  font-size: 2.4rem;
  color: #fff;
  margin: 18px 28px 0 0;
  border-radius: 8px;
  padding: 2px 12px;
  border: 1.5px solid var(--divider);
  transition: background 0.18s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: #fff;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  padding: 38px 44px 24px 44px;
  width: 100vw;
  margin-top: 12px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 20px 0;
  border-radius: 7px;
  text-align: left;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 1100px) {
  header .container {
    max-width: 100%;
    gap: 22px;
    padding: 0 6px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 520px) {
  .mobile-nav {
    padding: 32px 16px 20px 16px;
  }
}

/* ===== SECTION-SPECIFIC FLEXBOX / SPACING ===== */
.market-ticker-grid,
.certificate-logos,
.partner-list,
.address-map-glow {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.market-ticker {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: var(--surface-dark);
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(160,92,255, 0.05);
  padding: 18px 26px;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.status-up { color: #1FC37F; font-weight: 700; }
.status-down { color: #F24444; font-weight: 700; }
.status-neutral { color: #D3A800; font-weight: 700; }

.security-list, .glow-usps ul, .partner-list, .glowing-icon-list, .security-hints ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 24px;
  padding-left: 0;
}
.security-list li, .glow-usps ul li, .partner-list li, .glowing-icon-list li, .security-hints ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  font-size: 1.02rem;
  color: #E2E7FB;
}

.history-timeline-glow-line ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-left: 0;
  position: relative;
}
.history-timeline-glow-line ul li {
  color: #C7CAE2;
  position: relative;
  padding-left: 25px;
}
.history-timeline-glow-line ul li:before {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.glowing-border-avatar {
  border-radius: 50%;
  border: 3px solid var(--accent);
  box-shadow: 0 0 12px 2px var(--accent);
  width: 76px;
  height: 76px;
  margin-bottom: 8px;
}

/* Card and FAQ Accordions */
.plan-cards {
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 24px;
}
.plan-card {
  background: var(--surface-dark);
  border-radius: 18px;
  border: 1.5px solid #282C40;
  box-shadow: var(--shadow);
  padding: 28px 32px 32px 32px;
  flex: 1 1 272px;
  min-width: 220px;
  min-height: 220px;
  transition: border-color 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.plan-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--accent);
}
.plan-card p {
  font-size: 1.05rem;
  color: #C7CAE2;
  font-weight: 700;
  margin-bottom: 14px;
}
.plan-card ul {
  margin-top: 8px;
  color: #E2E7FB;
  font-size: 1rem;
  line-height: 1.5;
  list-style: disc inside;
  padding-left: 0;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 20px;
}
.faq-item {
  background: var(--surface-light);
  border-radius: 13px;
  box-shadow: 0 2px 16px 0 rgba(38,38,55,0.07);
  padding: 20px 22px;
  margin-bottom: 0;
  border-left: 4px solid var(--accent);
}
.faq-item h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
  color: var(--accent);
}
.faq-item p {
  font-size: 1rem;
  color: #C7CAE2;
}

.price-comparison-table, table {
  width: 100%;
  background: var(--surface-light);
  border-radius: 16px;
  border-collapse: collapse;
  margin-bottom: 22px;
  box-shadow: 0 1px 6px 0 rgba(80,80,150,0.07);
  overflow: hidden;
}
.price-comparison-table th, .price-comparison-table td, table th, table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #282C40;
}
.price-comparison-table tr:last-child td {
  border-bottom: none;
}
.price-comparison-table th, table th {
  background: var(--secondary-bg);
  color: #fff;
  font-weight: 700;
}
.price-comparison-table td, table td {
  color: #E2E7FB;
}

.badge-positive {
  color: #1FC37F;
  background: rgba(31,195,127,0.13);
  border-radius: 11px;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 12px;
}
.badge-negative {
  color: #F24444;
  background: rgba(242,68,68,0.13);
  border-radius: 11px;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 12px;
}
.badge-neutral {
  color: #d3a800;
  background: rgba(211,168,0,0.10);
  border-radius: 11px;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 12px;
}

.confirmation-message {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #F3F6FB;
  background: var(--secondary-bg);
  padding: 27px 30px;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(80,80,200,0.08);
}
.cta-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 620px) {
  .cta-links { flex-direction: column; gap: 9px; align-items: stretch; }
}

.opening-hours-section,
.contact-details-box,
.contact-info-hint {
  background: var(--surface-dark);
  padding: 19px 22px;
  border-radius: 13px;
  margin-bottom: 22px;
}
.contact-details-box p,
.opening-hours-section p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 7px;
}
.contact-info-hint p {
  color: #C7CAE2;
}

.address-map-glow img {
  max-width: 220px;
  border-radius: 14px;
  box-shadow: 0 0 16px 2px var(--accent);
}

/* Legal Section */
.legal {
  background: var(--surface-dark);
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 24px 0 rgba(38,38,55,0.09);
}
.legal-text h2 {
  margin-top: 32px;
  font-size: 1.25rem;
  color: var(--accent);
}
.legal-text ul {
  margin: 15px 0 21px 22px;
  color: #F3F6FB;
}
.legal-text li {
  margin-bottom: 8px;
  list-style: disc inside;
}

/* ===== FOOTER ===== */
footer {
  background: #12142C;
  border-top: 1px solid var(--divider);
  box-shadow: 0 -2px 18px 0 rgba(30,30,36,0.09);
  margin-top: 60px;
  width: 100%;
  position: relative;
  padding-top: 18px;
  padding-bottom: 32px;
}
.footer-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 10px 0 0 0;
}
.footer-bar nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-bar nav a {
  color: #C7CAE2;
  font-size: 1rem;
  padding: 6px 9px;
  border-radius: 7px;
  font-weight: 500;
}
.footer-bar nav a:hover, .footer-bar nav a:focus {
  background: var(--accent);
  color: #fff;
}
.footer-contact-short p {
  color: #C7CAE2;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: grayscale(0%) brightness(1.12) contrast(1.08) drop-shadow(0 0 5px var(--accent));
  transition: filter 0.17s;
}
.footer-social a:hover img {
  filter: grayscale(0%) brightness(1.44) contrast(2.8) drop-shadow(0 0 9px var(--accent));
}
.footer-neon-glow {
  width: 94%;
  height: 4px;
  background: linear-gradient(90deg, #A05CFF 0%, #1F2476 92%, #A05CFF 100%);
  box-shadow: 0 0 34px 3px var(--accent);
  border-radius: 4px;
  margin: 24px auto 12px;
}
.copyright {
  color: #C7CAE2;
  font-size: 0.92rem;
  text-align: center;
}
@media (max-width: 900px) {
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-left: 8px;
  }
  .footer-social { margin-bottom: 12px; }
}

/* ===== COOKIE CONSENT BANNER & MODAL ===== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: var(--surface-light);
  color: #fff;
  box-shadow: 0 -2px 20px 0 rgba(20,20,40,0.13);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 15px 22px 15px;
  min-height: 80px;
  gap: 38px;
  transition: transform 0.36s cubic-bezier(.68,-0.6,.32,1.6), opacity 0.22s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-text {
  font-size: 1.09rem;
  flex: 1 1 60vw;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
}
.cookie-consent-banner button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  background: var(--accent);
  border-radius: 9px;
  border: none;
  padding: 12px 22px;
  transition: background 0.23s;
  font-weight: 700;
}
.cookie-consent-banner .cookie-settings-btn {
  background: none;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-consent-banner .cookie-settings-btn:hover, .cookie-consent-banner .cookie-settings-btn:focus {
  background: var(--accent);
  color: #fff;
}
.cookie-consent-banner .reject-btn {
  background: #282C40;
  color: #fff;
  border: 2px solid var(--divider);
}
.cookie-consent-banner .reject-btn:hover {
  background: #1F2476;
  color: #fff;
}
.cookie-consent-banner .accept-btn:hover {
  background: #8136ea;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1300;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,31,55,0.88);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.16s;
  opacity: 1;
}
.cookie-modal {
  background: var(--secondary-bg);
  color: #fff;
  max-width: 400px;
  width: 94vw;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(160,92,255,0.16);
  padding: 38px 26px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadeInModal 0.36s cubic-bezier(.7,0,.22,1) 1;
}
@keyframes fadeInModal {
  0% { opacity: 0; transform: scale(0.94) translateY(38px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 19px; right: 22px;
  font-size: 1.6rem;
  background: none;
  color: #fff;
  border-radius: 6px;
  padding: 3px 10px;
  border: 1.5px solid var(--divider);
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.cookie-modal-close:hover {
  background: var(--accent);
  color: #fff;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 5px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.06rem;
  padding: 0 2px;
}
.cookie-modal .toggle-switch {
  width: 36px;
  height: 21px;
  background: #282C40;
  border-radius: 12px;
  position: relative;
  display: inline-block;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 2px; left: 2px;
  right: 2px; bottom: 2px;
  background: #A3A7B6;
  border-radius: 12px;
  transition: background .18s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: var(--accent);
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 17px;width: 17px;
  left: 2px; bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(15px);
}
.cookie-modal .cookie-essential {
  opacity: 0.6;
  color: #C7CAE2;
  font-size: 1rem;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  border-radius: 9px;
  padding: 10px 19px;
  font-weight: 700;
  font-size: 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  transition: background 0.12s;
}
.cookie-modal-actions .reject-btn {
  background: #282C40;
  color: #fff;
}

@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 3vw;
  }
  .footer-bar {
    flex-direction: column;
    gap: 20px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
    padding: 18px 10px;
  }
  .cookie-banner-actions {
    gap: 9px;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
  .feature-item, .option-item, .value-item, .team-role-card, .plan-card, .step-card, .security-feature-item, .sparkline-chart {
    padding: 18px 8px;
    min-width: unset;
  }
  .hero, .hero-trade, .markets-hero, .security-hero, .signup, .thank-you, .section, .legal {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* ===== UTILITIES & MICRO-INTERACTION ANIMATIONS ===== */
@media (hover: hover) {
  .feature-item, .option-item, .step-card, .plan-card, .value-item, .team-role-card, .security-feature-item, .sparkline-chart, .card {
    transition: box-shadow 0.18s, border-color 0.18s, transform 0.20s;
  }
  .feature-item:hover, .option-item:hover, .step-card:hover, .plan-card:hover, .value-item:hover, .team-role-card:hover, .sparkline-chart:hover, .security-feature-item:hover, .card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 7px 30px 0 rgba(160,92,255,0.17), var(--shadow);
    border-color: var(--accent);
  }
}
::-webkit-scrollbar {
  width: 10px; background: #212346;
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 6px;
}

/* ===== RESPONSIVE TABLES ===== */
@media (max-width: 800px) {
  .price-comparison-table, .price-comparison-table th, .price-comparison-table td, table, table th, table td {
    font-size: 0.99rem;
    padding: 7px 6px;
  }
  .price-comparison-table {
    border-radius: 7px;
    font-size: 0.95rem;
  }
}

/* ===== A11Y & SELECTION ===== */
:focus, .cta-primary:focus, .cta-secondary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-consent-banner button:focus {
  outline: none;
  box-shadow: var(--focus-ring);
}
::selection { background: #A05CFF; color: #fff; }
