/* ==========================================================================
   BLUE SAPPHIRE DESIGN SYSTEM & WEB LAYOUT
   ========================================================================== */

/* --- Design Tokens --- */
:root {
  /* Colors */
  --bg-dark: #030712;
  --bg-card: rgba(15, 23, 42, 0.45);
  --border-card: rgba(255, 255, 255, 0.07);
  --border-card-hover: rgba(6, 182, 212, 0.4);
  
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #8A99AD;
  
  --sapphire-blue: #2563EB;
  --sapphire-hover: #1D4ED8;
  --cyber-cyan: #06B6D4;
  --glow-cyan: rgba(6, 182, 212, 0.15);
  --glow-blue: rgba(37, 99, 235, 0.2);
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--cyber-cyan) 0%, var(--sapphire-blue) 100%);
  --grad-text: linear-gradient(90deg, #FFFFFF 30%, #E2E8F0 70%, var(--cyber-cyan) 100%);
  --grad-hero: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.15) 0%, rgba(6, 182, 212, 0.05) 50%, transparent 100%);
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Transition timings */
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease-in-out;
}

/* --- Base & Reset Rules --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-primary);
  background-color: var(--bg-dark);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  background-color: var(--bg-dark);
  background-image: radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.08) 0, transparent 40%),
                    radial-gradient(at 100% 100%, rgba(6, 182, 212, 0.08) 0, transparent 40%);
  background-attachment: fixed;
}

.page-wrapper {
  position: relative;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
}

ul {
  list-style: none;
}

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

/* --- Layout Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 300;
}

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

/* --- Scroll Progress Bar --- */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: scroll())) {
    @keyframes grow-progress {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }

    #progress {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 4px;
      background: var(--cyber-cyan);
      transform-origin: 0 50%;
      z-index: 1000;
      box-shadow: 0 0 12px var(--cyber-cyan);
      animation: grow-progress auto linear;
      animation-timeline: scroll();
      color: #030712;
    }
  }
}

/* --- Interactive Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--grad-primary);
  color: #030712;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* --- Premium Glass Panel & Cards --- */
.glass-panel {
  background-color: #0b111e;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
}

.glass-card {
  background-color: #0d1527;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 2.25rem;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-card-hover);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.12);
}

/* ==========================================================================
   COMPONENTS: NAVBAR / NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(3, 7, 18, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
}

.logo-text {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #FFFFFF 30%, #06B6D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Hamburger Menu Toggle */
.mobile-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  cursor: pointer;
  z-index: 200;
}

.hamburger {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition-smooth);
}

.hamburger::before, .hamburger::after {
  content: '';
  width: 1.5rem;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  transition: var(--transition-smooth);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Active Hamburger menu toggle state */
.mobile-toggle.active .hamburger {
  background: transparent;
}

.mobile-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ==========================================================================
   SECTION: HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 10rem 0 6rem 0;
}

.hero-bg-glowing {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 80%;
  height: 80%;
  background: var(--grad-hero);
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--cyber-cyan);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--cyber-cyan);
  box-shadow: 0 0 8px var(--cyber-cyan);
  display: inline-block;
  color: #030712;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

/* Hero Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2.5rem;
}

.stat-card {
  text-align: left;
}

.stat-num {
  font-family: var(--font-headings);
  font-size: 2.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.stat-lbl {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Simulated Operator Dashboard Preview */
.hero-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Platform Image — floats freely, no frame */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  /* No border, no background, no box-shadow — image floats clean */
}

.hero-platform-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  /* Floating drop-shadow effect */
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 40px rgba(6, 182, 212, 0.15));
}

/* Glow overlay removed — image background is already transparent/dark */

.lobby-content {
  background-color: #0a0f1e;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-height: 16rem;
  display: flex;
  flex-direction: column;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.lobby-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: rgba(3, 7, 18, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lobby-logo {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--cyber-cyan);
  letter-spacing: 0.05em;
}

.lobby-wallet {
  font-size: 0.75rem;
  display: flex;
  gap: 0.35rem;
}

.wallet-lbl {
  color: var(--text-muted);
}

.wallet-val {
  color: #10B981;
  font-weight: 700;
}

.lobby-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lobby-promo {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(37, 99, 235, 0.15) 100%);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 10px;
  padding: 1rem;
  text-align: left;
}

.promo-badge {
  font-size: 0.75rem;
  background: #EF4444;
  color: #FFFFFF;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.lobby-promo-title {
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-family: var(--font-headings);
}

.promo-btn {
  font-size: 0.75rem;
  background: var(--cyber-cyan);
  color: #030712;
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-weight: 700;
}

.lobby-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.75rem;
}

.lobby-card {
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.card-sports {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
}

.card-roulette {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.25);
}

.card-lbl {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.card-odds {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.odd {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--cyber-cyan);
  font-weight: 600;
}

.card-status.live {
  font-size: 0.75rem;
  color: #EF4444;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Background tag for custom affiliate card */
.bg-orange {
  background: rgba(249, 115, 22, 0.1);
  color: #F97316;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

/* ==========================================================================
   SECTION: OFFERINGS SECTION
   ========================================================================== */
.offerings {
  padding: 6rem 0;
  position: relative;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.offering-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.offering-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.bg-cyan { background: rgba(6, 182, 212, 0.1); color: var(--cyber-cyan); border: 1px solid rgba(6, 182, 212, 0.2); }
.bg-blue { background: rgba(37, 99, 235, 0.1); color: var(--sapphire-blue); border: 1px solid rgba(37, 99, 235, 0.2); }
.bg-indigo { background: rgba(99, 102, 241, 0.1); color: #6366F1; border: 1px solid rgba(99, 102, 241, 0.2); }
.bg-purple { background: rgba(168, 85, 247, 0.1); color: #A855F7; border: 1px solid rgba(168, 85, 247, 0.2); }
.bg-rose { background: rgba(244, 63, 94, 0.1); color: #F43F5E; border: 1px solid rgba(244, 63, 94, 0.2); }

.offering-icon {
  width: 1.75rem;
  height: 1.75rem;
}

.offering-title {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.offering-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ==========================================================================
   SECTION: SOLUTIONS SECTION
   ========================================================================== */
.solutions {
  padding: 6rem 0;
  position: relative;
}

.solutions-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 4rem;
}

.solutions-layout > * {
  min-width: 0;
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.solutions-list li {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.solutions-list li:hover {
  background: rgba(6, 182, 212, 0.04);
  border-color: rgba(6, 182, 212, 0.2);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.05);
}

.solution-marker {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--cyber-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon {
  width: 1rem;
  height: 1rem;
}

.solutions-list h4 {
  font-size: 1.125rem;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.solutions-list p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.5;
}

/* Solutions Graphic Wrapper & Swapping Panels */
.solutions-graphic-container {
  position: relative;
  width: 100%;
  min-height: 24rem;
  display: flex;
}

.solutions-graphic {
  background-color: #0d1527;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(6, 182, 212, 0.05);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.solutions-graphic.active {
  position: relative; /* Make active panel drive container height */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.solutions-graphic::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.graphic-title, .graphic-desc, .payment-marquee-wrapper, .secure-badge, .providers-grid, .design-illustration, .infra-illustration {
  position: relative;
  z-index: 1;
  text-align: left;
}

.graphic-title {
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.graphic-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Provider grid styling */
/* Provider grid - see .providers-grid below */


/* Design wireframe styling */
.design-illustration {
  margin-top: 1rem;
  padding: 0.5rem;
  background: rgba(3, 7, 18, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.wireframe-container {
  border: 1px dashed rgba(6, 182, 212, 0.3);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(6, 182, 212, 0.02);
}

.wireframe-nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(6, 182, 212, 0.2);
  padding-bottom: 0.5rem;
}

.w-logo {
  width: 3rem;
  height: 8px;
  background: rgba(6, 182, 212, 0.25);
  border-radius: 2px;
}

.w-user {
  width: 1rem;
  height: 8px;
  background: rgba(6, 182, 212, 0.25);
  border-radius: 2px;
}

.wireframe-hero {
  height: 4.5rem;
  border: 1px dashed rgba(6, 182, 212, 0.2);
  border-radius: 6px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
}

.w-pulse-ring {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 2px solid rgba(6, 182, 212, 0.4);
  animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.w-line-sm {
  width: 40%;
  height: 6px;
  background: rgba(6, 182, 212, 0.2);
  border-radius: 2px;
}

.w-line-lg {
  width: 60%;
  height: 6px;
  background: rgba(6, 182, 212, 0.2);
  border-radius: 2px;
}

.wireframe-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.w-box {
  height: 1.75rem;
  border: 1px dashed rgba(6, 182, 212, 0.2);
  border-radius: 4px;
  background: rgba(6, 182, 212, 0.05);
}

/* Infrastructure indicators styling */
.infra-illustration {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cluster-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.node-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 8px;
}

.node-indicator.active {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.15);
}

.node-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.node-lbl {
  font-family: monospace;
  font-size: 0.8rem;
  color: #E2E8F0;
}

.security-status-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 0.50rem;
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 6px;
}

.secure-icon-glow {
  width: 1rem;
  height: 1rem;
  filter: drop-shadow(0 0 2px var(--cyber-cyan));
}

/* Payment Grid (2×2 static layout) */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  background-color: #0d1527;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  transition: border-color 0.25s ease, background 0.25s ease;
  cursor: default;
}

.payment-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  background: rgba(6, 182, 212, 0.04);
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.provider-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.provider-logo-badge:hover {
  border-color: rgba(6, 182, 212, 0.3);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.provider-logo-img-wrap {
  width: 100%;
  height: 2.75rem;
  background: #FFFFFF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.5rem;
}

.provider-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.provider-logo-img--contain {
  object-fit: contain;
  max-height: 2rem;
}

.payment-card-logo {
  width: 80px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
}

.payment-card-logo svg {
  width: 100%;
  height: 100%;
}

.payment-card-logo--text {
  border-radius: 6px;
  padding: 0.25rem 0.75rem;
}

.payment-card-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.payment-card-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* Badge card elements inside marquee */
.payment-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  background-color: #161e2f;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  flex-shrink: 0;
}

.badge-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.icon-visa { background-color: #1A1F71; color: #FFFFFF; }
.icon-mastercard { background-color: #EB001B; color: #F79E1B; }
.icon-skrill { background-color: #8A1538; color: #FFFFFF; }
.icon-neteller { background-color: #82BC24; color: #FFFFFF; }

.badge-name {
  font-size: 0.875rem;
  font-weight: 600;
}

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.lock-icon {
  width: 1rem;
  height: 1rem;
  color: var(--cyber-cyan);
}

/* ==========================================================================
   SECTION: PROCESS TIMELINE
   ========================================================================== */
.process {
  padding: 6rem 0;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-bar {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyber-cyan) 0%, var(--sapphire-blue) 100%);
  transform: translateX(-50%);
  opacity: 0.3;
  color: #030712;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1.5rem 3rem;
  margin-bottom: 2rem;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-dot {
  position: absolute;
  top: 2rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--cyber-cyan);
  box-shadow: 0 0 10px var(--cyber-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  z-index: 5;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: 0;
  transform: translateX(-50%);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: 0;
  transform: translateX(50%);
}

.timeline-title {
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ==========================================================================
   SECTION: CONTACT & INQUIRY FORM
   ========================================================================== */
.contact {
  padding: 6rem 0;
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-graphic {
  margin-top: 2rem;
}

.network-svg {
  width: 100%;
  height: auto;
}

.contact-form-panel {
  padding: 3rem;
  position: relative;
}

.form-title {
  font-size: 1.75rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.form-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Form Styles */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  text-align: left;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(3, 7, 18, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #FFFFFF;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--cyber-cyan);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
  background: rgba(3, 7, 18, 0.6);
}

/* Validation Style */
.form-group.invalid input, .form-group.invalid textarea {
  border-color: #EF4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.15);
}

.error-msg {
  font-size: 0.75rem;
  color: #EF4444;
  display: none;
  margin-top: 0.25rem;
}

.form-group.invalid .error-msg {
  display: block;
}

/* Button & Spinner Styles */
#btn-submit {
  position: relative;
}

.spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(3, 7, 18, 0.3);
  border-top-color: #030712;
  border-radius: 50%;
  position: absolute;
  display: none;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#btn-submit.loading .btn-text {
  visibility: hidden;
}

#btn-submit.loading .spinner {
  display: block;
}

/* Form feedback cards (success + error) */
.form-feedback {
  margin-top: 1.5rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.form-feedback.success {
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.05);
}

.form-feedback.error {
  border-color: rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.05);
}

.success-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #10B981;
  flex-shrink: 0;
}

.error-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #EF4444;
  flex-shrink: 0;
}

.feedback-title {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.form-feedback p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 300;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 4rem 0;
  background: #020617;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-logo-text {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-legal {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-rights {
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 480px;
}

.footer-disclaimer {
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ==========================================================================
   ANIMATIONS & SCROLL-DRIVEN STYLING
   ========================================================================== */

/* 1. Scroll Entrance Reveal (progressive enhancement using view-timeline) */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes fade-slide-up {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reveal-on-scroll {
      animation: fade-slide-up auto linear forwards;
      animation-timeline: view();
      animation-range: entry 10% entry 40%;
      /* Avoid layout shifting when timeline hasn't calculated */
      animation-fill-mode: both;
    }
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (RWD)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .badge {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .stats-grid {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .solutions-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info-panel {
    text-align: center;
  }
  
  .contact-info-panel .section-subtitle {
    text-align: center;
  }
  
  .contact-graphic {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .timeline-bar {
    left: 2rem;
  }
  
  .timeline-item {
    width: 100%;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    text-align: left !important;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-dot {
    left: 2rem !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 8rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Navigation Mobile Layout */
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 2rem 2rem 2rem;
    transition: var(--transition-smooth);
    z-index: 150;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 2rem;
  }
  
  .nav-link {
    font-size: 1.15rem;
  }
  
  .nav-cta {
    display: none; /* Hide in header actions on mobile */
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-rights {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-card {
    text-align: center;
  }
  
  .offering-card {
    padding: 1.5rem;
  }
  
  .contact-form-panel {
    padding: 1.5rem;
  }

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

/* Hero image responsive */
@media (max-width: 1024px) {
  .hero-image-wrapper {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-platform-image {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 24px rgba(6, 182, 212, 0.12));
  }
}

