﻿/* =============================================
   Prospera Global Network
   BLUE THEME — Logo Navy + Sky Blue
   Crypto · Forex · Gold Trading Platform
   ============================================= */

@import url('../fonts/fonts.css');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  /* Backgrounds */
  --bg-main: #eef4fb;
  --bg-card: #ffffff;
  --bg-alt: #dceaf7;
  --bg-dark: #0d1e3a;

  /* Primary — Deep Navy (logo color) */
  --navy: #173861;
  --navy-mid: #1f4d80;
  --navy-light: #2c6399;
  --navy-pale: #dbeaf8;
  --navy-glow: rgba(23, 56, 97, 0.28);

  /* Accent — Sky Blue (background image color) */
  --sky: #4a9fd4;
  --sky-light: #72bae8;
  --sky-pale: #cce4f7;
  --sky-deep: #1a6fa8;
  --sky-glow: rgba(74, 159, 212, 0.30);

  /* Keep gold vars aliased to navy/sky so nothing breaks */
  --gold: #1f4d80;
  --gold-light: #4a9fd4;
  --gold-pale: #dbeaf8;
  --gold-deep: #173861;
  --gold-glow: rgba(23, 56, 97, 0.25);

  /* Text */
  --text-dark: #0d1e3a;
  --text-mid: #2a4a70;
  --text-soft: #5a7fa8;
  --text-white: #ffffff;
  --text-gold: #1f4d80;

  /* Borders */
  --border-gold: rgba(23, 56, 97, 0.22);
  --border-navy: rgba(23, 56, 97, 0.15);
  --border-card: rgba(74, 159, 212, 0.25);

  /* Shadows */
  --shadow-card: 0 4px 32px rgba(23, 56, 97, 0.10), 0 1px 4px rgba(23, 56, 97, 0.07);
  --shadow-gold: 0 0 28px rgba(74, 159, 212, 0.35);
  --shadow-lift: 0 8px 40px rgba(23, 56, 97, 0.14);

  /* Transition */
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET
   ============================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
}

body {
  font-family: 'DM Sans', 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--navy), var(--sky));
  border-radius: 4px;
}

section[id] {
  scroll-margin-top: 75px;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.reveal {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-44px);
}

.reveal-right {
  transform: translateX(44px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =============================================
   NAVBAR — Blue Theme
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  background: rgba(238, 244, 251, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--sky-pale);
  box-shadow: 0 2px 20px rgba(23, 56, 97, 0.10);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 7px 0;
  background: rgba(245, 250, 255, 0.99);
  border-bottom-color: var(--sky-light);
  box-shadow: 0 4px 30px rgba(23, 56, 97, 0.15);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(23, 56, 97, 0.30));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 7px;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta-desktop {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 26px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--sky-deep) 100%);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(23, 56, 97, 0.35);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta-desktop:hover {
  box-shadow: 0 6px 28px rgba(74, 159, 212, 0.55);
  transform: translateY(-2px);
}

.nav-cta-mobile,
.nav-cta-mobile-row {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   GLOBAL HELPERS
   ============================================= */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.tag-icon {
  width: 13px;
  height: 13px;
  object-fit: contain;
  filter: invert(18%) sepia(60%) saturate(600%) hue-rotate(195deg) brightness(0.8);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
    font-size: clamp(1.9rem, 3.8vw, 2.1rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.title-gold-grad {
  background: linear-gradient(125deg, var(--navy) 0%, var(--sky-deep) 50%, var(--sky) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--sky), var(--navy));
  border-radius: 3px;
  margin: 0 auto 40px;
  box-shadow: 0 0 12px var(--sky-glow);
}

/* =============================================
   PAGE 01 — HERO
   ============================================= */
.hero {
  min-height: 100vh;
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
  background:
    url(../images/backgroundimages/background1.jpg) center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Dark gradient overlay so white text is always readable */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(125deg, rgb(14 88 109) 0%, rgba(20, 50, 100, 0.80) 38%, rgba(10, 30, 70, 0.55) 65%, rgb(8 20 50 / 64%) 100%), radial-gradient(ellipse 55% 65% at 22% 50%, rgb(2 13 26 / 68%) 0%, #0000008a 65%), radial-gradient(ellipse 40% 45% at 5% 90%, rgb(74 159 212 / 44%) 0%, #00000038 60%);
}

/* Subtle grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(74, 159, 212, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 159, 212, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(70px);
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  left: -120px;
  background: radial-gradient(circle, rgba(23, 56, 97, 0.40) 0%, transparent 70%);
  animation: orbFloat1 9s ease-in-out infinite;
}

.hero-orb-2 {
  width: 700px;
  height: 700px;
  top: 10%;
  right: -180px;
  background: radial-gradient(circle, rgba(74, 159, 212, 0.22) 0%, transparent 70%);
  animation: orbFloat2 12s ease-in-out infinite;
}

.hero-orb-3 {
  width: 450px;
  height: 450px;
  bottom: 0;
  left: 30%;
  background: radial-gradient(circle, rgba(44, 99, 153, 0.22) 0%, transparent 70%);
  animation: orbFloat1 7s ease-in-out 2s infinite;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(30px, -30px)
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-25px, 20px)
  }
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0
  }

  10% {
    opacity: 1
  }

  90% {
    opacity: .5
  }

  100% {
    transform: translateY(-110vh) rotate(720deg);
    opacity: 0
  }
}

/* Hero split layout */
.hero-split {
    max-width: 1300px;
    margin: 0 auto;
    padding: 13px 48px 10px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    min-height: calc(100vh - 90px);
}

/* ── Hero Left ── */
.hs-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hs-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.67rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sky-light);
  background: rgba(23, 56, 97, 0.30);
  border: 1px solid rgba(74, 159, 212, 0.50);
  border-radius: 50px;
  padding: 6px 18px 6px 12px;
  margin-bottom: 22px;
  width: fit-content;
  text-shadow: 0 1px 8px rgba(74, 159, 212, 0.5);
  box-shadow: 0 0 18px rgba(23, 56, 97, 0.20), inset 0 1px 0 rgba(255,255,255,0.08);
}

.hs-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky-light);
  box-shadow: 0 0 10px rgba(114, 186, 232, 0.9);
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 6px rgba(114, 186, 232, .7) }
  50%       { box-shadow: 0 0 14px rgba(114, 186, 232, 1) }
}

.hs-heading {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  line-height: 1;
}

.hs-heading-welcome {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.25em;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hs-heading-sub {
  font-size: clamp(3.2rem, 6.5vw, 5.6rem);
  background: linear-gradient(125deg, #a8d4f5 0%, var(--sky-light) 35%, #ffffff 60%, var(--sky-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(74, 159, 212, 0.8));
  font-style: italic;
  line-height: 0.95;
}

.hs-heading-network {
  font-size: clamp(0.95rem, 1.8vw, 1.45rem);
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.28em;
  font-weight: 700;
  margin-top: 6px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hs-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 18px;
}

.hs-div-line {
  flex: 1;
  height: 1px;
  max-width: 70px;
  background: linear-gradient(90deg, transparent, var(--sky-light), transparent);
}

.hs-div-diamond {
  width: 7px;
  height: 7px;
  background: var(--sky-light);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(114, 186, 232, 0.9);
}

.hs-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.8;
  margin-bottom: 22px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hs-desc strong {
  color: #a8d4f5;
  font-weight: 700;
  text-shadow: 0 0 18px rgba(74, 159, 212, 0.6);
}

.hs-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 22px;
}

.hs-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid rgba(114, 186, 232, 0.85);
  border-radius: 9px;
  padding: 10px 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hs-feat:hover {
  border-left-color: var(--sky-light);
  background: rgba(255, 255, 255, 0.13);
  transform: translateX(4px);
}

.hs-feat:hover {
  border-left-color: var(--sky-light);
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(4px);
}

.hs-feat-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 56, 97, 0.30);
  border: 1px solid rgba(74, 159, 212, 0.40);
  padding: 8px;
}

.hs-feat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) brightness(1.4);
}

.hs-feat-icon--gold {
  background: rgba(44, 99, 153, 0.35);
  border-color: rgba(114, 186, 232, 0.50);
}

.hs-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(168, 212, 245, 0.95);
  margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(74, 159, 212, 0.5);
}

.hs-tagline-star {
  opacity: 0.9;
  color: var(--sky-light);
}

.hs-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 45%, var(--sky-deep) 100%);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 22px rgba(23, 56, 97, 0.50);
  transition: var(--transition);
  cursor: pointer;
}

.hero-btn-primary:hover {
  box-shadow: 0 6px 36px rgba(74, 159, 212, 0.65);
  transform: translateY(-3px);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 24px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  cursor: pointer;
}

.hero-btn-ghost:hover {
  border-color: rgba(114, 186, 232, 0.65);
  color: var(--sky-light);
  background: rgba(23, 56, 97, 0.20);
  transform: translateY(-3px);
}

.hbtn-icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.85;
}

.hero-btn-primary .hbtn-icon {
  filter: brightness(10);
  opacity: 0.9;
}

/* ── Hero Right ── */
.hs-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hs-badge-corner {
  position: absolute;
  top: -10px;
  right: -10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(10, 25, 60, 0.80);
  border: 1px solid rgba(74, 159, 212, 0.45);
  border-radius: 10px;
  padding: 10px 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 18px rgba(74, 159, 212, 0.25);
  z-index: 3;
}

.hs-badge-corner-line1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sky-light);
}

.hs-badge-corner-line2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hs-badge-corner-line3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(114, 186, 232, 0.8);
}

.hs-coin-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Orbit rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px dashed rgba(74, 159, 212, 0.25);
  animation: orbitSpin linear infinite;
}

.orbit-ring-1 {
  width: 320px;
  height: 320px;
  animation-duration: 28s;
}

.orbit-ring-2 {
  width: 420px;
  height: 420px;
  border-color: rgba(74, 159, 212, 0.15);
  animation-duration: 42s;
  animation-direction: reverse;
}

.orbit-ring-3 {
  width: 500px;
  height: 500px;
  animation-duration: 58s;
  border-style: solid;
  border-color: rgba(74, 159, 212, 0.08);
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sky-light);
  box-shadow: 0 0 12px rgba(114, 186, 232, 0.9);
  pointer-events: none;
}

.orbit-dot-1 {
  animation: dotOrbit1 8s linear infinite;
}

.orbit-dot-2 {
  animation: dotOrbit2 14s linear infinite;
  background: var(--sky);
  box-shadow: 0 0 10px rgba(74, 159, 212, 0.9);
}

.orbit-dot-3 {
  animation: dotOrbit3 22s linear infinite;
  width: 7px;
  height: 7px;
}

@keyframes dotOrbit1 {
  from {
    transform: rotate(0deg) translateX(160px) rotate(0deg)
  }

  to {
    transform: rotate(360deg) translateX(160px) rotate(-360deg)
  }
}

@keyframes dotOrbit2 {
  from {
    transform: rotate(90deg) translateX(210px) rotate(-90deg)
  }

  to {
    transform: rotate(450deg) translateX(210px) rotate(-450deg)
  }
}

@keyframes dotOrbit3 {
  from {
    transform: rotate(200deg) translateX(250px) rotate(-200deg)
  }

  to {
    transform: rotate(560deg) translateX(250px) rotate(-560deg)
  }
}

.coin-platform {
  position: relative;
  z-index: 2;
}

.coin-platform-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(74, 159, 212, 0.45) 0%, transparent 70%);
  filter: blur(12px);
  animation: shadowPulse 4s ease-in-out infinite;
}

@keyframes shadowPulse {

  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
    opacity: .5
  }

  50% {
    transform: translateX(-50%) scaleX(1.2);
    opacity: .9
  }
}

.coin-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.coin-img {
  width: clamp(280px, 38vw, 480px);
  height: auto;
  object-fit: contain;
  animation: floatCoin 4.5s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(23, 56, 97, 0.50)) drop-shadow(0 0 100px rgba(74, 159, 212, 0.30));
}

@keyframes floatCoin {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-18px) scale(1.02)
  }
}

.coin-glow-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(74, 159, 212, 0.40);
  box-shadow: 0 0 40px rgba(74, 159, 212, 0.25), inset 0 0 30px rgba(74, 159, 212, 0.06);
  animation: pulsRing 3.5s ease-in-out infinite;
  width: 280px;
  height: 280px;
}

.coin-glow-ring--2 {
  width: 320px;
  height: 320px;
  border-color: rgba(114, 186, 232, 0.22);
  box-shadow: 0 0 30px rgba(114, 186, 232, 0.14);
  animation-delay: 1s;
  animation-duration: 4.5s;
}

@keyframes pulsRing {

  0%,
  100% {
    transform: scale(1);
    opacity: .5
  }

  50% {
    transform: scale(1.06);
    opacity: 1
  }
}

/* Floating cards on coin */
.hs-float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(238, 244, 251, 0.97);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 9px 14px;
  box-shadow: 0 4px 20px rgba(23, 56, 97, 0.18), 0 0 14px rgba(74, 159, 212, 0.15);
  backdrop-filter: blur(14px);
  white-space: nowrap;
  animation: cardFloat 5s ease-in-out infinite;
}

.hs-float-card img {
  width: 14px;
  height: 14px;
  filter: invert(18%) sepia(60%) saturate(600%) hue-rotate(195deg) brightness(0.85);
}

.hs-float-card div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hs-float-card span {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.hs-float-card small {
  font-size: 0.6rem;
  color: var(--text-soft);
}

.hs-float-card--tl {
  top: 8%;
  left: -30px;
  animation-delay: 0s;
}

.hs-float-card--br {
  bottom: 10%;
  right: -30px;
  animation-delay: 1.5s;
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* =============================================
   PAGE 02 — ABOUT
   ============================================= */
.about {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(238, 244, 251, 0.97) 0%, rgba(219, 234, 248, 0.95) 100%);
  border-bottom: 1px solid var(--sky-pale);
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 90% 50%, rgba(74, 159, 212, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(23, 56, 97, 0.05) 0%, transparent 60%);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-lift), 0 0 0 3px var(--sky-pale);
}

.about-text {
  display: flex;
  flex-direction: column;
}

.about-text .section-subtitle {
  margin-bottom: 20px;
  max-width: 100%;
}

.about-subtitle--first strong {
  color: var(--navy);
}

.about-subtitle--second strong {
  color: var(--navy);
}

.approach-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--navy-mid);
  margin-bottom: 14px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-left: 3px solid var(--navy);
  border-radius: 9px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  color: var(--text-dark);
  line-height: 1.5;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.approach-item:hover {
  border-left-color: var(--sky);
  transform: translateX(5px);
  box-shadow: var(--shadow-gold);
}

/* =============================================
   TRADING SECTION
   ============================================= */
.trading-section {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0d2247 0%, #132d5a 50%, #0d2247 100%), url(../images/backgroundimages/background11.jpg) center / cover no-repeat;
}

.trading-section .wb-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(74, 159, 212, 0.12) 0%, transparent 70%);
}

.wb-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.wb-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.wb-orb--tl {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(74, 159, 212, 0.15) 0%, transparent 70%);
}

.wb-orb--br {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(23, 56, 97, 0.15) 0%, transparent 70%);
}

.wb-header {
  text-align: center;
  margin-bottom: 50px;
}

.wb-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.wb-title-accent {
  background: linear-gradient(125deg, var(--navy) 0%, var(--sky-deep) 50%, var(--sky-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wb-title-line {
  width: 80px;
  height: 3px;
  margin: 0 auto 16px;
  background: linear-gradient(90deg, transparent, var(--sky-light), transparent);
  border-radius: 3px;
}

.wb-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Trading Cards */
.trading-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.trade-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(74, 159, 212, 0.25);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(12px);
}

.trade-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 159, 212, 0.60);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 28px rgba(74, 159, 212, 0.30);
}

.trade-card--featured {
  background: linear-gradient(145deg, rgba(23, 56, 97, 0.30) 0%, rgba(74, 159, 212, 0.12) 100%);
  border-color: rgba(74, 159, 212, 0.55);
  border-width: 2px;
}

.trade-card-badge-featured {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--navy), var(--sky-deep));
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
}

.trade-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(74, 159, 212, 0.18);
  border: 1px solid rgba(74, 159, 212, 0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.trade-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) brightness(1.4);
}

.trade-card-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.trade-card-badges img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3px;
}

.forex-pair,
.gold-badge {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(74, 159, 212, 0.15);
  border: 1px solid rgba(74, 159, 212, 0.35);
  color: var(--sky-light);
}

.gold-badge {
  background: rgba(44, 99, 153, 0.20);
  border-color: rgba(114, 186, 232, 0.40);
}

.trade-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
}

.trade-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.trade-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trade-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.75);
}

.trade-features li img {
  width: 14px;
  height: 14px;
  filter: invert(1) brightness(1.4);
  flex-shrink: 0;
}

.trade-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 8px;
  background: rgba(74, 159, 212, 0.18);
  border: 1px solid rgba(74, 159, 212, 0.40);
  color: var(--sky-light);
  transition: var(--transition);
  margin-top: auto;
}

.trade-card-btn:hover {
  background: linear-gradient(135deg, var(--navy), var(--sky-deep));
  color: #fff;
  box-shadow: 0 0 28px rgba(74, 159, 212, 0.40);
  transform: translateY(-2px);
}

.trade-card-btn--dark {
  background: linear-gradient(135deg, var(--navy), var(--sky-deep));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(23, 56, 97, 0.45);
}

.trade-card-btn--dark:hover {
  box-shadow: 0 6px 28px rgba(74, 159, 212, 0.55);
}

/* Ticker */
.ticker-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(74, 159, 212, 0.25);
  border-radius: 14px;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.ticker-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky-light);
  z-index: 2;
  background: linear-gradient(135deg, rgba(10, 25, 60, 0.95), rgba(19, 45, 90, 0.92));
  padding: 6px 10px;
  border-right: 1px solid rgba(74, 159, 212, 0.35);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  padding-left: 110px;
  animation: tickerScroll 24s linear infinite;
  white-space: nowrap;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 24px;
  border-right: 1px solid rgba(74, 159, 212, 0.18);
}

.ticker-item img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: contain;
}

.ticker-fiat {
  filter: invert(1) brightness(1.3);
}

.gold-icon {
  filter: invert(1) brightness(1.2);
}

.t-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  color: rgba(255, 255, 255, .75);
}

.t-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: #fff;
}

.t-change {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .72rem;
}

.t-up {
  color: #22d47a;
}

.t-down {
  color: #ff5e5e;
}

/* =============================================
   WHY SECTION (BENEFITS)
   ============================================= */
.why-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(238, 244, 251, 0.98) 0%, rgba(219, 234, 248, 0.97) 100%);
  border-top: 1px solid var(--sky-pale);
  border-bottom: 1px solid var(--sky-pale);
}

.why-section .wb-title {
  color: var(--navy);
}

.why-section .wb-subtitle {
  color: var(--text-mid);
}

.why-section .wb-bg-overlay {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(74, 159, 212, 0.08) 0%, transparent 70%);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wb-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wb-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-navy);
  transition: var(--transition);
}

.wb-feature:last-child {
  border-bottom: none;
}

.wb-feature:hover {
  transform: translateX(5px);
}

.wb-feat-icon-wrap {
  flex-shrink: 0;
}

.wb-feat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy-pale), rgba(74, 159, 212, 0.15));
  border: 1px solid rgba(23, 56, 97, 0.22);
  border-radius: 12px;
  padding: 11px;
  box-shadow: 0 0 16px var(--navy-glow);
}

.wb-feat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(18%) sepia(60%) saturate(600%) hue-rotate(195deg) brightness(0.8);
}

.wb-feat-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wb-feat-divider {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), transparent);
  border-radius: 2px;
  margin-bottom: 6px;
}

.wb-feat-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.wb-feat-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.wb-visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lift), 0 0 0 3px var(--sky-pale);
}

.wb-visual-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.wb-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(23, 56, 97, 0.15) 0%, rgba(10, 30, 70, 0.30) 100%);
}

.wb-arrow-deco {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 120px;
  height: 90px;
  opacity: 0.85;
}

.wb-stat {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 10px 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(23, 56, 97, 0.15);
}

.wb-stat--top {
  top: 20px;
  right: 20px;
}

.wb-stat--bot {
  bottom: 20px;
  right: 20px;
}

.wb-stat-val {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
}

.wb-stat-lab {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* =============================================
   PAGE 05 — FUTURE SECTION
   ============================================= */
.fut-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(13, 31, 60, 0.95) 0%, rgba(26, 49, 90, 0.92) 50%, rgba(8, 20, 42, 0.97) 100%),
    url(../images/backgroundimages/background104.jpg) center / cover no-repeat;
}

.fut-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fut-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(74, 159, 212, 0.15) 0%, transparent 70%);
}

.fut-top-bar,
.fut-bottom-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--sky-light), transparent);
}

.fut-top-bar {
  top: 0;
}

.fut-bottom-bar {
  bottom: 0;
}

.fut-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 3;
}

.fut-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fut-img-frame {
  position: relative;
}

.fut-img-glow {
  position: absolute;
  inset: -20px;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, rgba(74, 159, 212, 0.28) 0%, transparent 70%);
  filter: blur(20px);
}

.fut-hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(74, 159, 212, 0.35);
  position: relative;
  z-index: 1;
}

.fut-stat-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 4px 20px rgba(23, 56, 97, 0.20);
  backdrop-filter: blur(12px);
}

.fut-stat-card img {
  width: 18px;
  height: 18px;
  filter: invert(18%) sepia(60%) saturate(600%) hue-rotate(195deg) brightness(0.8);
}

.fut-stat-card strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
}

.fut-stat-card span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.fut-stat-card--tl {
  top: 20px;
  left: -20px;
}

.fut-stat-card--br {
  bottom: 20px;
  right: -20px;
}

.fut-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.fut-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-light);
  background: rgba(74, 159, 212, 0.14);
  border: 1px solid rgba(74, 159, 212, 0.30);
  border-radius: 4px;
  padding: 4px 10px;
}

.fut-tag img {
  width: 13px;
  height: 13px;
  filter: invert(1) brightness(1.3);
  border-radius: 50%;
}

.fut-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.fut-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.fut-title-accent {
  background: linear-gradient(125deg, var(--navy) 0%, var(--sky-deep) 50%, var(--sky-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fut-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.fut-divider-line {
  flex: 1;
  height: 1px;
  max-width: 80px;
  background: linear-gradient(90deg, var(--sky-light), transparent);
}

.fut-divider-line--fade {
  background: linear-gradient(90deg, transparent, transparent);
}

.fut-divider-diamond {
  width: 7px;
  height: 7px;
  background: var(--sky-light);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(114, 186, 232, 0.8);
}

.fut-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin-bottom: 16px;
}

.fut-desc--highlight {
  color: rgba(255, 255, 255, 0.82);
}

.fut-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(74, 159, 212, 0.25);
  border-radius: 14px;
  padding: 16px 22px;
  margin-top: 8px;
}

.fut-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fut-trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(74, 159, 212, 0.18);
  border: 1px solid rgba(74, 159, 212, 0.35);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fut-trust-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) brightness(1.3);
}

.fut-trust-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.fut-trust-text strong {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--sky-light);
}

.fut-trust-text span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
}

.fut-trust-sep {
  width: 1px;
  height: 36px;
  background: rgba(74, 159, 212, 0.25);
  flex-shrink: 0;
}

/* =============================================
   BENEFITS SECTIONS (transparency + growth)
   ============================================= */
.benefits-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.vs12 {
  background:
    linear-gradient(145deg, rgba(238, 244, 251, 0.97) 0%, rgba(219, 234, 248, 0.96) 100%),
    url(../images/backgroundimages/background102.jpg) center / cover no-repeat;
}

.vs13 {
  background:
    linear-gradient(145deg, rgba(13, 31, 60, 0.92) 0%, rgba(26, 49, 90, 0.90) 50%, rgba(8, 20, 42, 0.95) 100%),
    url(../images/backgroundimages/background104.jpg) center / cover no-repeat;
}

.ben-glow-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sky-light), transparent);
}

.ben-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(74, 159, 212, 0.06) 0%, transparent 70%);
}

.ben-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.ben-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ben-row--reverse { /* reverse order handled via order property */ }

.ben-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.ben-img-wrap img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-lift);
}

.ben-img-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(74, 159, 212, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ben-img-glow--amber {
  background: radial-gradient(ellipse at center, rgba(23, 56, 97, 0.18) 0%, transparent 70%);
}

/* vs12 (light bg) text */
.vs12 .ben-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.vs12 .ben-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: .98rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 22px;
}

.vs12 .ben-point-title {
  color: var(--navy);
}

.vs12 .ben-point-sub {
  color: var(--text-mid);
}

/* vs13 (dark bg) text */
.vs13 .ben-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.vs13 .ben-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: .98rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  margin-bottom: 22px;
}

.vs13 .ben-point-title {
  color: #fff;
}

.vs13 .ben-point-sub {
  color: rgba(255, 255, 255, .6);
}

.ben-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ben-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ben-point-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.ben-point-icon--amber {
  background: rgba(74, 159, 212, 0.15);
  border: 1px solid rgba(74, 159, 212, 0.30);
}

.ben-point-icon--teal {
  background: rgba(23, 56, 97, 0.08);
  border: 1px solid rgba(23, 56, 97, 0.20);
}

.vs13 .ben-point-icon--teal {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ben-point-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(18%) sepia(60%) saturate(600%) hue-rotate(195deg) brightness(0.85);
}

.ben-point-icon--teal img {
  filter: invert(30%) sepia(80%) saturate(400%) hue-rotate(190deg) brightness(0.9);
}

.vs13 .ben-point-icon--amber img {
  filter: invert(1) brightness(1.3);
}

.vs13 .ben-point-icon--teal img {
  filter: invert(1) brightness(1.3);
}

.ben-point div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ben-point-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.ben-point-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(238, 244, 251, 0.98) 0%, rgba(219, 234, 248, 0.97) 100%);
  border-top: 1px solid var(--sky-pale);
}

.faq-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(74, 159, 212, 0.07) 0%, transparent 70%);
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.faq-section .section-title {
  color: var(--navy);
}

.faq-accent {
  background: linear-gradient(125deg, var(--navy), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-section .section-subtitle {
  color: var(--text-mid);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow-gold);
}

.faq-item.open {
  border-color: var(--navy);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
}

.faq-q-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-q-icon img {
  width: 100%;
  height: 100%;
  filter: invert(18%) sepia(60%) saturate(600%) hue-rotate(195deg) brightness(0.85);
}

.faq-question>span:nth-child(2) {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  text-align: left;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-chevron img {
  width: 100%;
  height: 100%;
  filter: invert(18%) sepia(60%) saturate(600%) hue-rotate(195deg);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 18px 16px 52px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 60px 0 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.footer-glow-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--sky-light), transparent);
}

.footer-main {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo-wrap img {
  height: 65px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.2) drop-shadow(0 2px 8px rgba(74, 159, 212, 0.35));
  margin-bottom: 14px;
}

.footer-brand p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.966);
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.fsocial-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 159, 212, 0.14);
  border: 1px solid rgba(74, 159, 212, 0.30);
  transition: var(--transition);
  padding: 9px;
}

.fsocial-btn:hover {
  background: rgba(74, 159, 212, 0.28);
  border-color: var(--sky-light);
  transform: translateY(-3px);
}

.fsocial-btn img {
  width: 100%;
  height: 100%;
  filter: invert(1) brightness(1.2);
  object-fit: contain;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sky-light);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(74, 159, 212, 0.25);
}

.footer-links a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.918);
  padding: 5px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--sky-light);
  padding-left: 6px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 18px 40px;
    border-top: 1px solid rgba(74, 159, 212, 0.18);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgb(255 255 255);
    letter-spacing: 0.05em;
}

.footer-sep {
  opacity: 0.3;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    padding: 60px 36px 70px;
    gap: 48px;
    text-align: center;
    align-items: center;
  }

  .hs-left {
    align-items: center;
  }

  .hs-label {
    margin-left: auto;
    margin-right: auto;
  }

  .hs-heading {
    align-items: center;
  }

  .hs-divider {
    justify-content: center;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .hs-features {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .hs-tagline {
    justify-content: center;
  }

  .hs-cta-row {
    justify-content: center;
  }

  .hs-right {
    display: flex;
    justify-content: center;
  }

  .orbit-ring-2,
  .orbit-ring-3 {
    display: none;
  }

  .about-container,
  .wb-layout,
  .fut-layout,
  .ben-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ben-row--reverse .ben-img-col {
    order: -1;
  }

  .trading-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   NAVBAR — Medium screens (769px–1060px): keep 7 links compact
   ============================================= */
@media (min-width: 769px) and (max-width: 1060px) {
  .nav-container {
    padding: 0 18px;
    gap: 8px;
  }

  .nav-logo img {
    height: 50px;
  }

  .nav-links a {
    font-size: 0.72rem;
    padding: 6px 7px;
    letter-spacing: 0.02em;
  }

  .nav-cta-desktop {
    font-size: 0.74rem;
    padding: 9px 16px;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: rgba(238, 244, 251, 0.99);
    border-bottom: 2px solid var(--navy-pale);
    padding: 16px 20px 20px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(13, 31, 60, 0.15);
    align-items: stretch;
    gap: 2px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 11px 16px;
    font-size: 0.88rem;
    border-radius: 8px;
    border-bottom: 1px solid rgba(23, 56, 97, 0.07);
  }

  .nav-links a:last-of-type {
    border-bottom: none;
  }
  a.nav-cta.nav-cta-mobile {
    color: #fff;
}

  .nav-cta-desktop {
    display: none;
  }

  .nav-cta-mobile-row {
    display: block;
    padding: 14px 0 2px;
    border-top: 1px solid rgba(23, 56, 97, 0.12);
    margin-top: 6px;
  }

  .nav-cta-mobile {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 13px 24px;
    background: linear-gradient(135deg, var(--navy), var(--sky-deep));
    color: #fff;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 18px rgba(23, 56, 97, 0.35);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-container {
    padding: 0 20px;
  }

  .hero-split {
    padding: 30px 20px 50px;
    min-height: unset;
    text-align: center;
  }
.hs-left {
        align-items: center;
        order: 2;
    }

  .hs-features {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }



  .about-container,
  .wb-layout,
  .fut-layout,
  .ben-row {
    padding: 0 20px;
  }

  .wb-container,
  .faq-container,
  .ben-container,
  .fut-container {
    padding: 0 20px;
  }

  .trading-cards {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px 40px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .fut-stat-card--tl {
    left: 0;
  }

  .fut-stat-card--br {
    right: 0;
  }

  .hs-badge-corner {
    display: none;
  }

  .ticker-label {
    display: none;
  }

  .ticker-track {
    padding-left: 10px;
  }
}

@media (max-width: 480px) {
  .hs-heading-sub {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .hs-heading-network {
    font-size: clamp(0.8rem, 4vw, 1.2rem);
  }

  .fut-trust {
    flex-direction: column;
    align-items: flex-start;
  }

  .fut-trust-sep {
    width: 100%;
    height: 1px;
  }
}

/* =============================================
   ALTERNATING SECTIONS — SHARED BASE
   ============================================= */
.alt-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.alt-section.alt-light {
background: linear-gradient(160deg, rgba(238, 244, 251, 0.98) 0%, rgba(219, 234, 248, 0.97) 100%);
  border-top: 1px solid var(--navy-pale);
  border-bottom: 1px solid var(--navy-pale);
}

.alt-section.alt-dark {
  background:
    linear-gradient(145deg, rgba(13, 31, 60, 0.95) 0%, rgba(26, 49, 90, 0.92) 50%, rgba(8, 20, 42, 0.97) 100%),
    url(../images/backgroundimages/background104.jpg) center / cover no-repeat;
}

.alt-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.alt-light .alt-bg-deco {
  background:
    radial-gradient(ellipse 70% 60% at 90% 50%, rgba(74, 159, 212, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(23, 56, 97, 0.05) 0%, transparent 60%);
}

.alt-dark .alt-bg-deco {
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(74, 159, 212, 0.14) 0%, transparent 70%);
}

.alt-bg-deco--crypto {
  background:
    radial-gradient(ellipse 50% 50% at 85% 40%, rgba(114, 186, 232, 0.12) 0%, transparent 70%) !important;
}

.alt-bg-deco--forex {
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(74, 159, 212, 0.15) 0%, transparent 70%) !important;
}

.alt-bg-deco--gold {
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(74, 159, 212, 0.13) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 5% 30%, rgba(23, 56, 97, 0.10) 0%, transparent 60%) !important;
}

.alt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Image Column ── */
.alt-img-col {
  position: relative;
}

.alt-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.alt-img-wrap img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;

}




/* Floating badges on images */
.alt-img-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(238, 244, 251, 0.97);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 4px 22px rgba(23, 56, 97, 0.16);
  backdrop-filter: blur(14px);
  white-space: nowrap;
  animation: cardFloat 5s ease-in-out infinite;
}

.alt-img-badge--tl {
  top: -16px;
  left: -16px;
}

.alt-img-badge--br {
  bottom: -16px;
  right: -16px;
  animation-delay: 1.5s;
}

.alt-img-badge--dark {
  background: rgba(13, 28, 60, 0.92);
  border-color: rgba(74, 159, 212, 0.40);
}

.alt-img-badge img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.alt-img-badge div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.alt-img-badge strong {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--navy);
  display: block;
}

.alt-img-badge span {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.alt-img-badge--dark strong {
  color: var(--sky-light);
}

.alt-img-badge--dark span {
  color: rgba(255, 255, 255, 0.6);
}

/* Crypto coin badges on image */
.alt-crypto-badges {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(238, 244, 251, 0.97);
  border: 1px solid var(--border-card);
  border-radius: 40px;
  padding: 8px 16px;
  box-shadow: 0 4px 20px rgba(23, 56, 97, 0.15);
  backdrop-filter: blur(14px);
  white-space: nowrap;
  z-index: 3;
}

.alt-crypto-badges img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(74, 159, 212, 0.25);
  border: none !important;
  max-height: unset !important;
  min-height: unset !important;
  object-fit: contain;
}

/* Forex pair badges */
.alt-forex-badges {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  background: rgba(13, 28, 60, 0.92);
  border: 1px solid rgba(74, 159, 212, 0.35);
  border-radius: 40px;
  padding: 8px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  white-space: nowrap;
  z-index: 3;
}

.alt-forex-badges span {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-light);
  background: rgba(74, 159, 212, 0.18);
  border: 1px solid rgba(74, 159, 212, 0.35);
  border-radius: 4px;
  padding: 3px 7px;
}

/* Gold/asset badges */
.alt-gold-badges {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(238, 244, 251, 0.97);
  border: 1px solid rgba(74, 159, 212, 0.40);
  border-radius: 40px;
  padding: 8px 16px;
  box-shadow: 0 4px 20px rgba(23, 56, 97, 0.18);
  backdrop-filter: blur(14px);
  white-space: nowrap;
  z-index: 3;
}

.alt-gold-badges span {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-mid);
  background: rgba(74, 159, 212, 0.18);
  border: 1px solid rgba(74, 159, 212, 0.35);
  border-radius: 4px;
  padding: 3px 7px;
}

/* ── Text Column ── */
.alt-text-col {
  display: flex;
  flex-direction: column;
}

.alt-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.alt-desc strong {
  color: var(--navy);
}

.alt-desc--light {
  color: rgba(255, 255, 255, 0.72);
}

.alt-desc--light strong {
  color: var(--sky-light);
}

.section-title--light {
  color: #fff;
}

.section-tag--dark {
 
  color: var(--sky-light);
}

.tag-icon--plain {
  border-radius: 50%;
}

.tag-icon--gold {
  filter: invert(1) brightness(1.4) !important;
}

/* ── About section tags grid ── */
.alt-tags-grid {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 6px;
}

.alt-tag-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-left: 3px solid var(--navy);
  border-radius: 9px;
  padding: 11px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.alt-tag-item:hover {
  border-left-color: var(--sky-light);
  transform: translateX(5px);
  box-shadow: var(--shadow-gold);
}

.alt-tag-item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  filter: invert(18%) sepia(60%) saturate(600%) hue-rotate(195deg) brightness(0.85);
}

/* ── Benefits grid (2-col) ── */
.alt-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

.alt-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 14px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.alt-benefit-card:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.alt-benefit-card--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(74, 159, 212, 0.28);
}

.alt-benefit-card--dark:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(74, 159, 212, 0.55);
}

.alt-benefit-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--navy-pale);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alt-benefit-icon--dark {
  background: rgba(74, 159, 212, 0.18);
  border-color: rgba(74, 159, 212, 0.35);
}

.alt-benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(18%) sepia(60%) saturate(600%) hue-rotate(195deg) brightness(0.85);
}

.alt-benefit-icon--dark img {
  filter: invert(1) brightness(1.3);
}

.alt-benefit-card>div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.alt-benefit-card strong {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  display: block;
}

.alt-benefit-card--dark strong {
  color: #fff;
}

.alt-benefit-card span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.alt-benefit-card--dark span {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Why Choose Us features list ── */
.alt-features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.alt-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(74, 159, 212, 0.18);
  transition: var(--transition);
}

.alt-feat-item:last-child {
  border-bottom: none;
}

.alt-feat-item:hover {
  transform: translateX(4px);
}

.alt-feat-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(74, 159, 212, 0.18);
  border: 1px solid rgba(74, 159, 212, 0.35);
  border-radius: 12px;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alt-feat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) brightness(1.3);
}

.alt-feat-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.alt-feat-body h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
}

.alt-feat-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

/* ── How It Works — Steps ── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-navy);
  transition: var(--transition);
}

.step-item:last-child {
  border-bottom: none;
}

.step-item:hover {
  transform: translateX(6px);
}

.step-number {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 52px;
  text-align: center;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-body h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.step-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Steps visual overlay */
.alt-img-wrap--steps {
  position: relative;
}

.steps-visual-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.steps-stat-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 252, 244, 0.97);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 22px rgba(13, 31, 60, 0.15);
  backdrop-filter: blur(14px);
  animation: cardFloat 5s ease-in-out infinite;
  top: 20px;
  left: -20px;
}

.steps-stat-card--bot {
  top: auto;
  bottom: 20px;
  left: auto;
  right: -20px;
  animation-delay: 1.5s;
}

.steps-stat-card img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: invert(18%) sepia(60%) saturate(600%) hue-rotate(195deg) brightness(0.85);
}

.steps-stat-card>div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.steps-stat-card strong {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--navy);
  display: block;
}

.steps-stat-card span {
  font-size: 0.6rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Advanced Tools grid ── */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

.tool-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(74, 159, 212, 0.22);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition);
}

.tool-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(74, 159, 212, 0.55);
  transform: translateY(-3px);
}

.tool-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(74, 159, 212, 0.18);
  border: 1px solid rgba(74, 159, 212, 0.35);
  border-radius: 9px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) brightness(1.3);
}

.tool-card h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
}

.tool-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

/* ── What Moves Markets ── */
.movers-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mover-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-navy);
  transition: var(--transition);
}

.mover-item:last-child {
  border-bottom: none;
}

.mover-item:hover {
  transform: translateX(5px);
}

.mover-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 11px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mover-icon--1 {
  background: rgba(74, 159, 212, 0.12);
  border: 1px solid rgba(74, 159, 212, 0.30);
}

.mover-icon--2 {
  background: rgba(34, 212, 122, 0.1);
  border: 1px solid rgba(34, 212, 122, 0.3);
}

.mover-icon--3 {
  background: rgba(13, 31, 60, 0.08);
  border: 1px solid rgba(13, 31, 60, 0.2);
}

.mover-icon--4 {
  background: rgba(114, 186, 232, 0.12);
  border: 1px solid rgba(114, 186, 232, 0.3);
}

.mover-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(18%) sepia(60%) saturate(600%) hue-rotate(195deg) brightness(0.85);
}

.mover-item>div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mover-item h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--navy);
}

.mover-item p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Risk Management ── */
.risk-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.risk-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(74, 159, 212, 0.22);
  border-radius: 12px;
  padding: 16px 18px;
  transition: var(--transition);
}

.risk-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(74, 159, 212, 0.45);
  transform: translateX(4px);
}

.risk-card-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 36px;
}

.risk-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.risk-card-body h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.risk-card-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

/* ── Market Statistics ── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--sky);
}

.stat-box-val {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.stat-box-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--navy);
  margin-bottom: 3px;
}

.stat-box-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--text-soft);
}

/* Stats image overlay card */
.alt-img-wrap--stats {
  position: relative;
}

.stats-overlay-card {
  position: absolute;
  bottom: 20px;
  left: -20px;
  z-index: 3;
  background: rgba(255, 252, 244, 0.97);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(13, 31, 60, 0.15);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
  animation: cardFloat 5s ease-in-out 1s infinite;
}

.stats-overlay-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stats-overlay-row img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: contain;
  border: none !important;
  max-height: unset !important;
  min-height: unset !important;
}

.stats-fiat-icon {
  filter: invert(18%) sepia(60%) saturate(600%) hue-rotate(195deg) brightness(0.85);
}

.stats-overlay-row>div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.stats-overlay-row strong {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--navy);
}

.s-up {
  font-size: 0.7rem;
  color: #22d47a;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.s-down {
  font-size: 0.7rem;
  color: #ff5e5e;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

/* =============================================
   RESPONSIVE — ALTERNATING SECTIONS
   ============================================= */
@media (max-width: 1024px) {
  .alt-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 32px;
  }

  /* On tablet, always show image first then text */
  .alt-section:nth-child(even) .alt-img-col {
    order: -1;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .alt-benefits-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .alt-section {
    padding: 60px 0;
  }

  .alt-container {
    padding: 0 20px;
    gap: 30px;
  }

  .alt-img-col {
    order: -1 !important;
  }

  .alt-img-wrap img {
    max-height: 280px;
  }

  .alt-img-badge--tl {
    top: -10px;
    left: -8px;
  }

  .alt-img-badge--br {
    bottom: -10px;
    right: -8px;
  }

  .alt-crypto-badges,
  .alt-forex-badges,
  .alt-gold-badges {
    bottom: -14px;
    font-size: 0.55rem;
    padding: 6px 12px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-stat-card {
    display: none;
  }

  .stats-overlay-card {
    left: 10px;
    bottom: 10px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .alt-benefits-grid {
    grid-template-columns: 1fr;
  }
}

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

  .stat-box-val {
    font-size: 1.4rem;
  }

  .alt-benefits-grid {
    grid-template-columns: 1fr;
  }
}
