/*---------------------------------------------------------------
  CSS RESET & BASELINE STYLES
----------------------------------------------------------------*/
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.45;
  min-height: 100vh;
  background: #181826;
  color: #f5f5fa;
  font-family: 'Roboto', Arial, sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1eeaff;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ae46f3;
  text-decoration: underline;
  outline: none;
}
ol, ul {
  list-style: none;
}
/*---------------------------------------------------------------
  BRAND FONTS
----------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Orbitron:wght@700;900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
  color: #fff;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  color: #1eeaff;
  text-shadow: 0 2px 24px #1eeaff80;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  color: #ae46f3;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  color: #1eeaff;
  margin-bottom: 10px;
}
h4, h5, h6 {
  color: #fff;
}
strong {
  color: #1eeaff;
  font-weight: 700;
}
p, li, td, th, label, input, .legal-text, .contact-info {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #eaeaea;
}
.text-section p, .text-section li, .text-section div {
  color: #f5f5fa;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
/*---------------------------------------------------------------
  HEADER & NAVIGATION
----------------------------------------------------------------*/
header {
  width: 100%;
  background: #12121a;
  box-shadow: 0 4px 16px #18182630;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 16px 18px 16px;
  position: relative;
  z-index: 101;
}
header img[alt="Speedy Journey Exchange"] {
  max-height: 48px;
  flex-shrink: 0;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  padding: 8px 12px;
  font-size: 1rem;
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  border-radius: 8px;
  transition: background 0.18s, color 0.15s, box-shadow 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #181826;
  color: #1eeaff;
  box-shadow: 0 0 8px #1eeaff80;
}
.cta-primary {
  background: #ae46f3;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  padding: 11px 24px;
  font-size: 1.09rem;
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 2px 28px #ae46f390;
  cursor: pointer;
  text-shadow: 0 1px 2px #0008;
  transition: background 0.2s, box-shadow 0.21s, color 0.19s;
  outline: none;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: #1eeaff;
  color: #181826 !important;
  box-shadow: 0 2px 28px #1eeaffa0;
}

/* Mobile Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #1eeaff;
  z-index: 131;
  border-radius: 6px;
  line-height: 1;
  padding: 4px 10px;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #23233c;
  color: #ae46f3;
}
/*---------------------------------------------------------------
  MOBILE MENU OVERLAY
----------------------------------------------------------------*/
.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #181826ee;
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform 0.36s cubic-bezier(.78,.16,.13,.86);
  box-shadow: 0 6px 48px #ae46f390;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  border: none;
  background: none;
  color: #fff;
  font-size: 2.1rem;
  z-index: 1301;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.13s, color 0.17s;
  padding: 4px 14px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #191947;
  color: #1eeaff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 80px 26px 32px 38px;
  margin-top: 14px;
}
.mobile-nav a {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 8px;
  padding: 12px 8px 12px 0px;
  min-width: 200px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #1eeaff;
  background: #23233c;
}
/*---------------------------------------------------------------
  MAIN CONTENT, SECTIONS & LAYOUTS
----------------------------------------------------------------*/
main {
  position: relative;
  z-index: 2;
  background: #181826;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section {
  margin-bottom: 60px; 
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #23233c;
  border-radius: 18px;
  box-shadow: 0 4px 34px #1eeaff13, 0 0 0 1px #ae46f315;
  padding: 24px 16px;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  transition: box-shadow 0.2s, background 0.18s, transform 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 40px #ae46f340, 0 0 0 2px #1eeaff40;
  background: #23238a;
  transform: translateY(-4px) scale(1.031);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}
.text-section {
  margin-top: 4px;
  margin-bottom: 20px;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #24244a;
  margin-bottom: 20px;
  padding: 20px 34px;
  border-radius: 20px;
  box-shadow: 0 2px 16px #18182620;
  font-size: 1.12rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  min-height: 80px;
  transition: box-shadow 0.15s, transform 0.14s;
}
.testimonial-card strong, .testimonial-card div {
  color: #24244a !important;
}
.testimonial-card p {
  color: #24244a !important;
}
.testimonial-card:hover {
  background: #f8efff;
  box-shadow: 0 4px 32px #ae46f320;
  transform: scale(1.017);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.markets-ticker {
  font-family: 'Orbitron', Arial, sans-serif;
  color: #ae46f3;
  padding: 10px 12px;
  background: #23233c;
  border-radius: 12px;
  font-size: 1.11rem;
  margin-bottom: 14px;
  display: flex;
  gap: 18px;
}
table {
  width: 100%;
  background: #222237;
  color: #fff;
  border-radius: 16px;
  border-spacing: 0;
  box-shadow: 0 2px 16px #1eeaff13;
  overflow: hidden;
}
thead {
  background: #181826;
}
th, td {
  padding: 16px 12px;
  text-align: left;
}
th {
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  color: #1eeaff;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #23233c;
}
td {
  border-bottom: 1px solid #191948;
  font-size: 1rem;
  color: #fff;
}
tr:last-child td {
  border-bottom: none;
}
tbody tr:hover {
  background: #23238a;
  color: #1eeaff;
  transition: background 0.18s, color 0.14s;
}
input[type="text"], input[type="email"], input[type="password"] {
  border: 2px solid #ae46f390;
  border-radius: 8px;
  font-size: 1rem;
  padding: 10px 14px;
  background: #181826;
  color: #fff;
  margin-top: 6px;
  margin-bottom: 14px;
  outline: none;
  transition: border 0.17s, box-shadow 0.18s;
  width: 100%;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus {
  border: 2px solid #1eeaff;
  box-shadow: 0 1px 12px #1eeaff33;
}
label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1eeaff;
}
/*---------------------------------------------------------------
  LISTS & ICONS
----------------------------------------------------------------*/
ul, ol {
  margin-left: 18px;
  margin-bottom: 16px;
  color: #eaeaea;
}
ul li, ol li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
ul li img, .feature-item img {
  width: 28px;
  height: 28px;
}
/*---------------------------------------------------------------
  FOOTER
----------------------------------------------------------------*/
footer {
  margin-top: 44px;
  background: #12121a;
  border-top: 1px solid #1eeaff22;
  padding: 48px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 5;
}
footer img[alt="Speedy Journey Exchange"],
footer img[alt="Speedy Journey Exchange"],
footer img[alt="Speedy Journey Exchange"],
footer img[alt="Speedy Journey Exchange"] {
  max-height: 48px;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  align-items: center;
  justify-content: center;
}
footer nav a {
  color: #fff;
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.75px;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 1rem;
  transition: color 0.18s, background 0.19s;
}
footer nav a:hover {
  color: #1eeaff;
  background: #181826;
}
.legal-text {
  font-size: 0.92rem;
  color: #aaaac6;
  margin-top: 14px;
  text-align: center;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #eaeaea;
  font-size: 1rem;
  margin-bottom: 6px;
  align-items: flex-start;
}
.contact-info img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.social-media-links {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}
.social-media-links a img {
  width: 34px;
  height: 34px;
  filter: brightness(1.14) contrast(1.34);
  opacity: 0.96;
  transition: filter 0.19s, opacity 0.11s, transform 0.19s;
}
.social-media-links a:hover img {
  filter: brightness(1.35) contrast(1.1) drop-shadow(0 0 6px #ae46f3);
  opacity: 1;
  transform: scale(1.10);
}
/*---------------------------------------------------------------
  COOKIE CONSENT BANNER
----------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 12001;
  background: #23233c;
  color: #fff;
  padding: 22px 12px;
  box-shadow: 0 -2px 28px #1eeaff44;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-top: 2.5px solid #ae46f3;
  transition: transform 0.26s, opacity 0.33s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 5px;
}
.cookie-btn {
  background: #ae46f3;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 19px;
  font-size: 1rem;
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.19s, color 0.13s, box-shadow 0.18s;
  box-shadow: 0 2px 12px #ae46f340;
}
.cookie-btn.accept {
  background: #1eeaff;
  color: #181826;
}
.cookie-btn.reject {
  background: #23233c;
  color: #ae46f3;
  border: 2px solid #ae46f3;
}
.cookie-btn.settings {
  background: #23233c;
  color: #1eeaff;
  border: 2px solid #1eeaff;
  font-weight: 700;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #181826;
  color: #1eeaff;
  box-shadow: 0 2px 18px #1eeaff35;
}
.cookie-btn.accept:hover {
  background: #ae46f3;
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #ae46f3;
  color: #181826;
}
.cookie-btn.settings:hover {
  background: #ae46f3;
  color: #fff;
  border-color: #ae46f3;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 12002;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: #181826cf;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity 0.23s;
}
.cookie-modal.hidden {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #23233c;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 44px #ae46f370;
  padding: 34px 22px 38px 22px;
  min-width: 340px;
  min-height: 280px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
}
.cookie-modal-dialog h2 {
  font-size: 1.4rem;
  color: #1eeaff;
}
.cookie-modal-dialog label {
  color: #ae46f3;
  font-size: 1.05rem;
  margin-right: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.toggle-switch {
  position: relative;
  width: 46px;
  height: 24px;
  display: inline-block;
}
.toggle-switch input {
  display: none;
}
.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #888;
  border-radius: 22px;
  transition: background 0.23s;
}
.toggle-switch input:checked + .toggle-slider {
  background: #1eeaff;
}
.toggle-slider:before {
  content: "";
  position: absolute;
  left: 2px; top: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.21s, background 0.18s;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(22px);
  background: #181826;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  border-radius: 6px;
  transition: background 0.13s, color 0.14s;
  padding: 2px 8px;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #191947;
  color: #1eeaff;
}
/*---------------------------------------------------------------
  RESPONSIVE DESIGN (MOBILE-FIRST)
----------------------------------------------------------------*/
@media (max-width: 1100px) {
  .container {
    max-width: 900px;
  }
  .card-container, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100%;
  }
  section, .section {
    padding: 34px 4vw;
  }
  .testimonial-card {
    padding: 14px 12px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, section {
    padding: 22px 6px;
    margin-bottom: 42px;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 14px 9px;
    font-size: 0.99rem;
  }
  .markets-ticker {
    font-size: 0.95rem;
    padding: 8px 6px;
  }
  .social-media-links a img {
    width: 26px;
    height: 26px;
  }
  table, th, td {
    font-size: 0.98rem;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cookie-modal-dialog {
    min-width: 0;
    max-width: 95vw;
    padding: 18px 8px 18px 14px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .card, .testimonial-card {
    padding: 8px 4px;
  }
}
/*---------------------------------------------------------------
  MICRO-INTERACTIONS & VISUAL EFFECTS
----------------------------------------------------------------*/
button, .cta-primary, .cookie-btn, .mobile-menu-close, .mobile-menu-toggle, .cookie-modal-close {
  transition: background 0.18s, color 0.17s, box-shadow 0.17s, transform 0.17s;
}
button:focus, .cta-primary:focus, .cookie-btn:focus {
  outline: 2px solid #ae46f3;
  outline-offset: 2px;
}
input:focus {
  outline: 2px solid #1eeaff;
}
/* Keyboard focus highlight for accessibility */
a:focus {
  box-shadow: 0 0 0 3px #1eeaff88;
  border-radius: 6px;
}
.cookie-category label[aria-disabled="true"] {
  opacity: 0.7;
  cursor: not-allowed;
}
.notice {
  background: #fffbe0;
  color: #6e2faf;
  border-radius: 7px;
  padding: 8px 18px;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
/*----- END OF CSS -----*/
