/* ==========================================================================
   VF ADVISORY — Mercury x Linear Benchmark Modern Fintech Design System
   Pristine White Light Canvas · High-End Editorial Typography · Cinematic Motion
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=JetBrains+Mono:wght@400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Mercury Clean White Canvas Palette */
  --bg-main: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-surface: #FFFFFF;

  /* Typography Colors */
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;

  /* Authority Accents */
  --navy-900: #0F172A;
  --emerald-600: #059669;
  --emerald-500: #10B981;
  --amber-600: #D97706;
  --amber-500: #F59E0B;

  /* Linear-style Hairline Precision Borders */
  --border-subtle: rgba(226, 232, 240, 0.9);
  --border-glow: rgba(5, 150, 105, 0.35);

  /* Mercury Diffused Airy Shadows */
  --shadow-card: 0 1px 3px 0 rgba(15, 23, 42, 0.03), 0 1px 2px -1px rgba(15, 23, 42, 0.03);
  --shadow-mercury: 0 20px 45px -12px rgba(15, 23, 42, 0.07), 0 1px 3px 0 rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 30px 60px -15px rgba(15, 23, 42, 0.12), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: #FFFFFF;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #FFFFFF;
  color: #0F172A;
}

/* Tight Headline Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  letter-spacing: -0.032em;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

.tracking-tight {
  letter-spacing: -0.032em !important;
}

/* Enforce Tabular Figures for All Monospaced & Financial Numbers */
.font-mono,
.tabular-nums,
[data-number] {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* Custom Minimalist Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #F8FAFC;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* ==========================================================================
   MERCURY PRISTINE WHITE HERO & AMBIENT GLOW HALOS
   ========================================================================== */
/* ==========================================================================
   SKYSCRAPER ARCHITECTURAL HERO (HIGH VISIBILITY ARCHITECTURE & GLOW HALOS)
   ========================================================================== */
.hero-skyscraper-mercury {
  position: relative;
  background-color: #FFFFFF;
  background-image: 
    linear-gradient(180deg, 
      rgba(255, 255, 255, 0.88) 0%, 
      rgba(248, 250, 252, 0.90) 40%, 
      rgba(241, 245, 249, 0.96) 100%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=85');
  background-position: center 20%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-mercury {
  position: relative;
  background: #FFFFFF;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(241, 245, 249, 0.8) 0%, rgba(255, 255, 255, 1) 70%),
    radial-gradient(rgba(226, 232, 240, 0.45) 1px, transparent 1px);
  background-size: 100% 100%, 32px 32px;
  background-position: 0 0, 16px 16px;
  overflow: hidden;
}

.mercury-halo-1 {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, rgba(5, 150, 105, 0.02) 50%, transparent 70%);
  filter: blur(100px);
  top: -150px;
  left: 15%;
  pointer-events: none;
  z-index: 0;
}

.mercury-halo-2 {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(217, 119, 6, 0.01) 50%, transparent 70%);
  filter: blur(100px);
  top: 100px;
  right: -50px;
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   LINEAR-STYLE CINEMATIC OPENING TEXT FLOAT-IN ANIMATION
   ========================================================================== */
@keyframes heroFloatUp {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animate-float-in {
  opacity: 0;
  animation: heroFloatUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-delay-100 { animation-delay: 100ms; }
.anim-delay-200 { animation-delay: 200ms; }
.anim-delay-300 { animation-delay: 300ms; }
.anim-delay-400 { animation-delay: 400ms; }
.anim-delay-500 { animation-delay: 500ms; }

/* Subtle Gradients */
.text-navy-gradient {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}

.text-gold-gradient {
  background: linear-gradient(135deg, #B45309 0%, #D97706 50%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}

.text-emerald-gradient {
  background: linear-gradient(135deg, #065F46 0%, #059669 60%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}

/* ==========================================================================
   BUTTONS (MERCURY MINIMALIST LUXURY & TACTILE PHYSICS)
   ========================================================================== */
.btn-navy-luxury {
  background: #0F172A;
  color: #FFFFFF;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.btn-navy-luxury:hover {
  background: #1E293B;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-navy-luxury:active {
  transform: translateY(0) scale(0.98);
}

.btn-gold-bold {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.btn-gold-bold:hover {
  background: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.25);
}

.btn-outline-navy {
  background: #FFFFFF;
  color: #0F172A;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.btn-outline-navy:hover {
  background: #F8FAFC;
  border-color: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}
.btn-outline-navy:active {
  transform: translateY(0) scale(0.98);
}

/* ==========================================================================
   CARDS & PANELS (MERCURY GLASS PANELS WITH INSET LIGHT)
   ========================================================================== */
.glass-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 1),
    0 1px 3px 0 rgba(15, 23, 42, 0.03),
    0 16px 36px -8px rgba(15, 23, 42, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  border-color: #CBD5E1;
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 1),
    0 24px 48px -10px rgba(15, 23, 42, 0.09),
    0 8px 16px -4px rgba(15, 23, 42, 0.03);
  transform: translateY(-2px);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.06);
}

/* ==========================================================================
   INTERACTIVE SAVINGS RANGE SLIDER (Mercury x Linear Style)
   ========================================================================== */
.gold-range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 9999px;
  background: #E2E8F0;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gold-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #090D16;
  border: 3px solid #10B981;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25), 0 0 0 4px rgba(16, 185, 129, 0.15);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.25s ease;
}

.gold-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.25), 0 4px 12px rgba(0, 0, 0, 0.35);
}

.gold-range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #090D16;
  border: 3px solid #10B981;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

/* ==========================================================================
   3D FLIP CARD COMPONENT (Clean White Pearl & Crisp Accents)
   ========================================================================== */
.vf-flip-card {
  background-color: transparent;
  width: 100%;
  min-height: 380px;
  height: 100%;
  perspective: 1200px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.vf-flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  transition: transform 0.7s cubic-bezier(0.34, 1.3, 0.64, 1);
  transform-style: preserve-3d;
  border-radius: 1.5rem;
}

@media (hover: hover) and (pointer: fine) {
  .vf-flip-card:hover .vf-flip-card-inner {
    transform: rotateY(180deg);
  }
}

.vf-flip-card.is-flipped .vf-flip-card-inner {
  transform: rotateY(180deg);
}

.vf-flip-card-front,
.vf-flip-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 1.5rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 1),
    0 1px 3px rgba(15, 23, 42, 0.03), 
    0 14px 28px -6px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.vf-flip-card-front {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  color: #0F172A;
}

.vf-flip-card:hover .vf-flip-card-front {
  border-color: #CBD5E1;
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 1),
    0 22px 48px -10px rgba(15, 23, 42, 0.08);
}

.vf-flip-card-back {
  background: linear-gradient(150deg, #FFFFFF 0%, #F8FAFC 60%, #F0FDF4 100%);
  border: 1.5px solid #A7F3D0;
  color: #0F172A;
  transform: rotateY(180deg);
  box-shadow: 0 20px 40px -8px rgba(5, 150, 105, 0.08);
}

/* ==========================================================================
   BEFORE VS AFTER COMPARISON MATRICES (MERCURY CLEAN LUXURY)
   ========================================================================== */
.compare-before-card {
  background: #FFFFFF;
  border: 1.5px solid #FECDD3;
  border-radius: 1.5rem;
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 1),
    0 1px 3px rgba(15, 23, 42, 0.03),
    0 16px 36px -8px rgba(225, 29, 72, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.compare-before-card:hover {
  transform: translateY(-2px);
  border-color: #FDA4AF;
  box-shadow: 0 20px 40px -10px rgba(225, 29, 72, 0.08);
}

.compare-after-card {
  background: #FFFFFF;
  border: 2px solid #86EFAC;
  border-radius: 1.5rem;
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 1),
    0 1px 3px rgba(15, 23, 42, 0.03),
    0 20px 48px -10px rgba(16, 185, 129, 0.10);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.compare-after-card:hover {
  transform: translateY(-2px);
  border-color: #4ADE80;
  box-shadow: 0 24px 56px -10px rgba(16, 185, 129, 0.16);
}

/* ==========================================================================
   LINEAR-STYLE DARK OBSIDIAN CADENCE SECTION (4-STEP BANK PATHWAY)
   ========================================================================== */
.linear-dark-section {
  background: radial-gradient(circle at 50% 0%, #1E293B 0%, #0A0F1D 60%, #060913 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #F8FAFC;
  position: relative;
  overflow: hidden;
}

.linear-dark-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.linear-dark-card:hover {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 22px 48px rgba(16, 185, 129, 0.12);
  transform: translateY(-3px);
}

/* ==========================================================================
   SCROLL REVEAL & STAGGER ANIMATIONS (React Bits & Impeccable)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-75  { transition-delay: 75ms; }
.delay-100 { transition-delay: 100ms; }
.delay-150 { transition-delay: 150ms; }
.delay-200 { transition-delay: 200ms; }
.delay-250 { transition-delay: 250ms; }
.delay-300 { transition-delay: 300ms; }
.delay-350 { transition-delay: 350ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* ==========================================================================
   SEGMENTED TRILINGUAL SWITCHER (Mercury Luxury Pill Style)
   ========================================================================== */
.lang-switcher-container {
  display: inline-flex;
  align-items: center;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 9999px;
  padding: 3px;
  gap: 2px;
}

.lang-switcher_switch {
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-switcher_switch[data-active="true"] {
  background: #0F172A;
  color: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.lang-switcher_switch:hover:not([data-active="true"]) {
  color: #0F172A;
  background: #E2E8F0;
}

/* Badges */
.badge-gold {
  background: #F8FAFC;
  color: #0F172A;
  border: 1px solid #E2E8F0;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Navigation Dropdown Menu (Mercury / Linear Mega Dropdown) */
.nav-dropdown-menu {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: 1.25rem !important;
  box-shadow: 
    0 25px 50px -12px rgba(15, 23, 42, 0.15),
    0 4px 12px -2px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 0 rgba(255, 255, 255, 1) !important;
  z-index: 9999 !important;
  width: 400px !important;
  max-width: calc(100vw - 2rem) !important;
  padding: 0.65rem !important;
}

/* ==========================================================================
   MERCURY-STYLE INTERACTIVE SHOWCASE (LEFT TABS, RIGHT DYNAMIC MOCKUP)
   ========================================================================== */
.mercury-showcase-section {
  background: radial-gradient(circle at 75% 25%, #1E293B 0%, #0B0F19 60%, #060913 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #F8FAFC;
  position: relative;
  overflow: hidden;
}

.mercury-showcase-section h2,
.mercury-showcase-section h3,
.mercury-showcase-section h4 {
  color: #FFFFFF;
}

.mercury-tab-btn {
  width: 100%;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.35rem 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.mercury-tab-btn h3 {
  color: #94A3B8 !important; /* Crisp, clearly readable text */
  transition: color 0.2s ease;
}

.mercury-tab-btn:hover h3 {
  color: #34D399 !important; /* Vibrant Emerald on hover */
}

.mercury-tab-btn.is-active {
  border-top-color: #10B981;
}

.mercury-tab-btn.is-active h3 {
  color: #FFFFFF !important; /* Bright Pure White when active */
}

.mercury-mockup-panel {
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 30px 70px -15px rgba(0, 0, 0, 0.7), 
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mercury-mockup-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background-color 0.2s ease;
}

.mercury-mockup-row:last-child {
  border-bottom: none;
}

.mercury-mockup-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* ==========================================================================
   COMPACT HIGH-TECH BENTO GRID & CATEGORY PILL FILTER
   ========================================================================== */
.service-pill-btn {
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 9999px;
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  color: #64748B;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.service-pill-btn:hover {
  color: #0F172A;
  border-color: #CBD5E1;
  background: #F8FAFC;
}

.service-pill-btn.is-active {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.service-bento-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1.25rem;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 1),
    0 1px 3px 0 rgba(15, 23, 42, 0.03),
    0 12px 24px -6px rgba(15, 23, 42, 0.04);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.service-bento-card:hover {
  border-color: #CBD5E1;
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 1),
    0 18px 36px -8px rgba(15, 23, 42, 0.09),
    0 4px 12px -2px rgba(15, 23, 42, 0.03);
  transform: translateY(-3px);
}

/* Horizontal scrollbar hidden for pills on mobile */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ==========================================================================
   INFINITE SEAMLESS FINTECH LOGO MARQUEE (STRIPE x LINEAR STYLE)
   ========================================================================== */
@keyframes marqueeLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 1.25rem;
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

.marquee-track-left {
  display: flex;
  flex-shrink: 0;
  gap: 1.25rem;
  align-items: center;
  animation: marqueeLeft 38s linear infinite;
  will-change: transform;
}

.marquee-track-right {
  display: flex;
  flex-shrink: 0;
  gap: 1.25rem;
  align-items: center;
  animation: marqueeRight 42s linear infinite;
  will-change: transform;
}

.marquee-container:hover .marquee-track-left,
.marquee-container:hover .marquee-track-right {
  animation-play-state: paused;
}

.bank-logo-capsule {
  background: #FFFFFF;
  border: 1.5px solid rgba(226, 232, 240, 0.95);
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 1),
    0 2px 8px -2px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bank-logo-capsule:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 1),
    0 12px 28px -6px rgba(16, 185, 129, 0.15);
}

/* ==========================================================================
   LUXURY FINTECH CTA BUTTONS (EMERALD, OBSIDIAN & GOLDEN SHADOWS)
   ========================================================================== */
.btn-gold-luxury,
.btn-emerald-luxury {
  background: linear-gradient(135deg, #064E3B 0%, #047857 50%, #059669 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 4px 14px -2px rgba(5, 150, 105, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-gold-luxury:hover,
.btn-emerald-luxury:hover {
  background: linear-gradient(135deg, #065F46 0%, #059669 50%, #10B981 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 22px -4px rgba(5, 150, 105, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-gold-luxury:active,
.btn-emerald-luxury:active {
  transform: translateY(0) scale(0.98);
}

/* ==========================================================================
   INTERACTIVE FAQ ACCORDION CARDS (MERCURY / LINEAR STYLE)
   ========================================================================== */
.faq-accordion-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(226, 232, 240, 0.95);
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 1),
    0 2px 8px -2px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-accordion-card:hover {
  border-color: rgba(203, 213, 225, 1);
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 1),
    0 12px 28px -6px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.faq-accordion-card.active {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 1),
    0 12px 28px -6px rgba(16, 185, 129, 0.1);
}
