/**
 * =============================================================================
 * SCALPPANEL - MAIN STYLESHEET
 * =============================================================================
 * Primary styles for ScalpPanel landing pages and website components.
 * Includes typography, layout, navigation, cards, sections, and responsive design.
 *
 * @package    ScalpPanel
 * @subpackage Website/Assets/CSS
 * @version    1.0.0
 * @author     ScalpPanel Team
 *
 * TABLE OF CONTENTS:
 * -----------------------------------------------------------------------------
 * 1.  FONTS              - Self-hosted Inter font family
 * 2.  CSS VARIABLES      - Design tokens and theme variables
 * 3.  SMOOTH SCROLL      - Browser scroll behavior
 * 4.  RESET              - CSS normalization and base styles
 * 5.  TYPOGRAPHY         - Headings, paragraphs, text utilities
 * 6.  LAYOUT             - Container and spacing utilities
 * 7.  BACKGROUND         - Page background with noise texture
 * 8.  HEADER             - Fixed navigation header and logo
 * 9.  BUTTONS            - Button variants and states
 * 10. HERO SECTION       - Landing page hero areas
 * 11. SECTIONS           - Content section layouts
 * 12. EXCHANGE CARDS     - Cryptocurrency exchange cards
 * 13. FEATURE CARDS      - Feature showcase cards
 * 14. STEPS              - Step-by-step guides
 * 15. PRICING            - Pricing cards and tables
 * 16. CTA SECTION        - Call-to-action blocks
 * 17. FOOTER             - Site footer
 * 18. COOKIE BANNER      - GDPR compliance banner
 * 19. PAGE HERO          - Subpage hero sections
 * 20. CONTENT BOX        - Content container cards
 * 21. DOCS LAYOUT        - Documentation page layout
 * 22. CONTACT FORM       - Form elements and validation
 * 23. 404 PAGE           - Error page styles
 * 24. ALERTS             - Alert messages and notifications
 * 25. ANIMATIONS         - Keyframes and animation utilities
 * 26. UTILITIES          - Spacing, text, and helper classes
 * 27. FEATURES TABS      - Tabbed content section
 * 28. VIDEO + TEXT BLOCK - Video showcase section
 * 29. LANDING HERO       - Exchange-specific landing heroes
 * 30. BENTO GRID         - Modern bento-style card layouts
 * 31. REALTIME BLOCK     - Real-time data showcase
 * 32. SECURITY SECTION   - Security features display
 * 33. STEPS MODERN       - Modern step indicators
 * 34. CTA MODERN         - Modern call-to-action styles
 * 35. COMPACT LANDING    - Condensed landing page styles
 * 36. PREMIUM FEATURES   - Premium feature grid with floating panel
 * 37. FAQ SECTION        - Accordion FAQ component
 * 38. ABOUT SCALPING     - Educational content section
 * 39. COMPARE TABLE      - Feature comparison tables
 * 40. RESPONSIVE         - Media queries and breakpoints
 * =============================================================================
 */


/* =============================================================================
   1. FONTS
   Self-hosted Inter font family for optimal performance and instant loading.
   Uses font-display: block to prevent FOUT (Flash of Unstyled Text).
   ============================================================================= */
/* Inter font - self-hosted for instant loading and no FOUT */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
}

/* =============================================================================
   2. CSS VARIABLES
   Design tokens defining colors, spacing, shadows, and transitions.
   Provides consistent theming across all components.
   ============================================================================= */
:root {
  /* Colors - Light elegant theme */
  --bg-main: #f5f9fc;
  --bg-card: #ffffff;
  --bg-dark: #0e1c29;
  --bg-gradient: linear-gradient(180deg, #e8f4fc 0%, #f5f9fc 100%);

  /* Text */
  --text-primary: #0e1c29;
  --text-secondary: #5e788f;
  --text-muted: #8fa3b8;
  --text-light: #ffffff;

  /* Accent */
  --accent: #6c5ce7;
  --accent-light: #a29bfe;
  --accent-gradient: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);

  /* Status */
  --success: #00b894;
  --warning: #fdcb6e;
  --danger: #ff7675;

  /* Borders & Shadows */
  --border-color: rgba(14, 28, 41, 0.08);
  --border-light: rgba(14, 28, 41, 0.05);
  --shadow-sm: 0 1px 2px rgba(16, 49, 77, 0.04);
  --shadow-md: 0 4px 12px rgba(16, 49, 77, 0.08);
  --shadow-lg: 0 8px 30px rgba(16, 49, 77, 0.12);
  --shadow-card:
    0 0.7px 0.7px -0.6px rgba(16, 49, 77, 0.05),
    0 1.8px 1.8px -1.2px rgba(16, 49, 77, 0.05),
    0 3.6px 3.6px -1.8px rgba(16, 49, 77, 0.05),
    0 6.9px 6.9px -2.3px rgba(16, 49, 77, 0.04),
    0 13.6px 13.6px -2.9px rgba(16, 49, 77, 0.03);

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 60px;
  --card-radius: 20px;
  --btn-radius: 100px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================================================
   3. SMOOTH SCROLL
   Native browser smooth scrolling for anchor navigation.
   ============================================================================= */
html {
  scroll-behavior: smooth;
}

/* =============================================================================
   4. RESET
   CSS normalization and base styles for consistent rendering.
   Includes box-sizing, font smoothing, and scrollbar handling.
   ============================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-gutter: stable;
  /* Fallback for browsers without scrollbar-gutter support */
  --scrollbar-width: 0px;
}

@supports (scrollbar-gutter: stable) {
  html {
    --scrollbar-width: 0px;
  }
}

@supports not (scrollbar-gutter: stable) {
  @media (min-width: 1025px) {
    html {
      margin-right: calc(100vw - 100%);
    }
  }
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* =============================================================================
   5. TYPOGRAPHY
   Heading hierarchy, paragraph styles, and gradient text effects.
   Fluid typography using clamp() for responsive sizing.
   ============================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: clamp(32px, 4vw, 44px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 24px);
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

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

/* H1/H2 headings - solid purple without gradient */
h1 .text-gradient,
h2 .text-gradient,
.section-title .text-gradient,
.features-tabs-title .text-gradient {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #6c5ce7;
  background-clip: unset;
  color: #6c5ce7;
}

/* Animated gradient for floating panel */
.text-gradient-panel {
  background: linear-gradient(135deg, #f59e0b 0%, #ec4899 25%, #8b5cf6 50%, #06b6d4 75%, #10b981 100%);
  background-size: 200% 200%;
  animation: floatingPanelGradient 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================================================
   6. LAYOUT
   Container system and basic layout utilities.
   Max-width container with responsive padding adjustments.
   ============================================================================= */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

  .header-inner {
    height: 56px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 8px;
  }

  .header {
    padding: 8px 8px;
  }

  .header-inner {
    height: 48px;
    padding: 0 8px 0 10px;
  }

  .logo {
    gap: 6px;
    font-size: 16px;
    min-width: 0;
    flex-shrink: 1;
  }

  .logo-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .mobile-menu-btn {
    width: 32px;
    height: 32px;
    margin-right: 0;
    gap: 4px;
    flex-shrink: 0;
  }

  .mobile-menu-btn span {
    width: 16px;
  }
}

/* =============================================================================
   7. BACKGROUND
   Page background with subtle noise texture overlay.
   Creates visual depth and premium aesthetic.
   ============================================================================= */
body {
  background-color: #eef2f6;
  background-image: url("../images/noise-texture.png");
  background-repeat: repeat;
  background-size: 200px 200px;
  background-blend-mode: overlay;
}

/* Hide page-bg div since we use body background now */
.page-bg {
  display: none;
}

/* =============================================================================
   8. HEADER
   Fixed navigation header with logo, nav links, and mobile menu.
   Dark pill-shaped design with animated gradient logo.
   ============================================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 12px;
  background: transparent;
  pointer-events: none;
  box-sizing: border-box;
}

.header .container {
  padding: 0;
}

.header .container {
  pointer-events: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  background: transparent;
  border-radius: 100px;
  padding: 0 10px 0 14px;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Header-inner background layer - overlaps submenu */
.header-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}


/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  font-size: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.logo-text {
  background: linear-gradient(135deg, #f59e0b 0%, #ec4899 25%, #8b5cf6 50%, #06b6d4 75%, #10b981 100%);
  background-size: 200% 200%;
  animation: logoGradientShift 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.logo:hover .logo-icon {
  transform: rotateY(360deg);
}

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

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes logoGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #f59e0b 0%, #ec4899 25%, #8b5cf6 50%, #06b6d4 75%, #10b981 100%);
  background-size: 200% 200%;
  animation: logoGradientShift 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 10px;
  white-space: nowrap;
  position: relative;
  z-index: 3;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
}

/* Nav Button */
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  min-width: 90px;
  background: linear-gradient(135deg, #1e3a8a 0%, #4338ca 50%, #6c5ce7 100%);
  color: #ffffff;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  margin-left: 8px;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.nav-btn:hover {
  background: linear-gradient(135deg, #172e73 0%, #3730a3 50%, #5b4cdb 100%);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5);
}

/* Language Selector */
.lang-selector {
  position: relative;
  margin-left: 8px;
  flex-shrink: 0;
}

.lang-selector::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 30px;
  background: transparent;
  pointer-events: none;
}

.lang-selector:hover::after {
  pointer-events: auto;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  z-index: 3;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lang-flag {
  width: 20px;
  height: 14px;
  min-width: 20px;
  min-height: 14px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(14, 28, 41, 0.15), 0 1px 3px rgba(14, 28, 41, 0.2);
}

.lang-dropdown {
  position: absolute;
  top: 50%;
  right: 0;
  min-width: 130px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 40px 8px 8px 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: -1;
}


.lang-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
  margin-bottom: 6px;
}

.lang-option:last-child {
  margin-bottom: 0;
}

.lang-option:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
}

.lang-option.active:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
}

/* Nav Dropdown Menu */
.nav-dropdown {
  position: relative;
}

/* Invisible bridge between button and submenu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 30px;
  background: transparent;
  pointer-events: none;
}

.nav-dropdown:hover::after {
  pointer-events: auto;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 10px;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
  border: none;
  position: relative;
  z-index: 3;
}

/* When trigger is a link */
a.nav-dropdown-trigger {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}

a.nav-dropdown-trigger:hover {
  color: rgba(255, 255, 255, 0.9);
}

.nav-dropdown-trigger:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
}

.nav-dropdown-trigger svg {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding: 40px 8px 8px 8px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.15s ease;
}

.nav-dropdown-item:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
}

.nav-dropdown-item img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-dropdown-item img[alt="Bybit"] {
  transform: scale(1.1);
}

.nav-dropdown-item span {
  flex: 1;
}

.nav-dropdown-item .nav-dropdown-arrow {
  display: none;
}

/* Dotted divider between dropdown items */
.nav-dropdown-item + .nav-dropdown-item {
  margin-top: 8px;
  position: relative;
}

.nav-dropdown-item + .nav-dropdown-item::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 12px;
  right: 12px;
  height: 1px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: center;
}

/* Grid dropdown menu (3x3) */
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  min-width: 290px;
  padding: 36px 6px 6px 6px;
}

.nav-dropdown-grid .nav-dropdown-item {
  flex-direction: column;
  gap: 4px;
  padding: 8px 4px;
  text-align: center;
  justify-content: center;
}

.nav-dropdown-grid .nav-dropdown-item + .nav-dropdown-item {
  margin-top: 0;
}

.nav-dropdown-grid .nav-dropdown-item + .nav-dropdown-item::before {
  display: none;
}

.nav-dropdown-grid .nav-dropdown-item img {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
}

.nav-dropdown-grid .nav-dropdown-item span {
  flex: none;
  font-size: 13px;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition-base);
  position: relative;
  z-index: 1001;
  margin-right: 10px;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Intermediate breakpoint - compact desktop nav for tablets */
@media (max-width: 1200px) and (min-width: 1025px) {
  .nav {
    gap: 2px;
  }

  .nav-link {
    padding: 6px 10px;
    font-size: 13px;
  }

  .nav-btn {
    padding: 6px 12px;
    font-size: 13px;
    min-width: 70px;
    margin-left: 4px;
  }

  .nav-dropdown-trigger {
    padding: 6px 10px;
    font-size: 13px;
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 13px;
  }

  .lang-selector {
    margin-left: 4px;
  }
}

@media (max-width: 1024px) {
  .nav {
    display: none;
    position: fixed;
    top: 88px;
    left: 20px;
    right: 20px;
    background: #000;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav.mobile-open {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    padding: 8px;
    gap: 4px;
  }


  .nav.mobile-open > * {
    position: relative;
    z-index: 1;
  }

  .nav.mobile-open .nav-link {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 12px;
    transition: var(--transition-base);
    position: relative;
  }

  .nav.mobile-open .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav.mobile-open .nav-link:active {
    background: rgba(255, 255, 255, 0.12);
  }

  .nav.mobile-open .nav-btn {
    margin: 12px 8px 8px 8px;
    text-align: center;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6c5ce7 0%, #8b5cf6 100%);
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
  }

  .nav.mobile-open .nav-btn:hover {
    background: linear-gradient(135deg, #5b4ccc 0%, #7C3AED 100%);
    box-shadow: 0 6px 25px rgba(108, 92, 231, 0.5);
  }

  .nav.mobile-open .lang-selector {
    margin: 8px;
    width: calc(100% - 16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
  }

  .nav.mobile-open .lang-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 12px;
    background: transparent;
  }

  .nav.mobile-open .lang-btn:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav.mobile-open .lang-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
  }

  .nav.mobile-open .lang-selector.open .lang-dropdown {
    display: block;
  }

  .nav.mobile-open .nav-dropdown {
    width: 100%;
  }

  .nav.mobile-open .nav-dropdown-trigger {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 12px;
  }

  .nav.mobile-open .nav-dropdown-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav.mobile-open .nav-dropdown-trigger svg {
    transform: rotate(0deg);
  }

  .nav.mobile-open .nav-dropdown.open .nav-dropdown-trigger svg {
    transform: rotate(180deg);
  }

  .nav.mobile-open .nav-dropdown-menu {
    position: static;
    transform: none;
    width: calc(100% - 24px);
    min-width: auto;
    margin-top: 8px;
    margin-left: 24px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    z-index: 10;
  }

  .nav.mobile-open .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  /* Grid menu for mobile - override display:block with grid */
  .nav.mobile-open .nav-dropdown.open .nav-dropdown-menu.nav-dropdown-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 8px;
    min-width: unset;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }

  .nav.mobile-open .nav-dropdown-item {
    justify-content: flex-start;
    padding: 12px 16px;
    border-radius: 10px;
  }

  .nav.mobile-open .nav-dropdown-grid .nav-dropdown-item {
    padding: 10px 6px !important;
    flex-direction: column !important;
    gap: 6px !important;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 8px;
  }

  .nav.mobile-open .nav-dropdown-grid .nav-dropdown-item img {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }

  .nav.mobile-open .nav-dropdown-grid .nav-dropdown-item span {
    font-size: 12px;
    line-height: 1.2;
  }

  .nav.mobile-open .nav-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 480px) {
  .nav {
    top: 84px;
    left: 8px;
    right: 8px;
    border-radius: 16px;
  }

  .nav.mobile-open {
    padding: 6px;
    gap: 2px;
  }

  .nav.mobile-open .nav-link,
  .nav.mobile-open .nav-dropdown-trigger,
  .nav.mobile-open .lang-btn {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 10px;
  }

  .nav.mobile-open .nav-btn {
    margin: 8px 6px 6px 6px;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 10px;
  }

  .nav.mobile-open .lang-selector {
    margin: 6px;
    width: calc(100% - 12px);
    padding-top: 10px;
  }

  .nav.mobile-open .nav-dropdown-menu {
    margin-top: 4px;
    margin-left: 12px;
    padding: 4px;
    border-radius: 8px;
  }

  .nav.mobile-open .nav-dropdown-item {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 8px;
  }

  /* Grid menu for 480px */
  .nav.mobile-open .nav-dropdown.open .nav-dropdown-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 4px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .nav.mobile-open .nav-dropdown-grid .nav-dropdown-item {
    padding: 6px 2px !important;
    gap: 3px !important;
    border-radius: 6px;
  }

  .nav.mobile-open .nav-dropdown-grid .nav-dropdown-item img {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
  }

  .nav.mobile-open .nav-dropdown-grid .nav-dropdown-item span {
    font-size: 10px;
  }

  .nav.mobile-open .lang-dropdown {
    margin-top: 6px;
    padding: 6px;
    border-radius: 10px;
  }
}

/* =============================================================================
   9. BUTTONS
   Button component variants: primary, secondary, accent, outline.
   Includes size modifiers (sm, lg, xl) and hover states.
   ============================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-primary {
  background: var(--bg-dark);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: #1a2d3d;
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: rgba(14, 28, 41, 0.15);
}

.btn-accent {
  background: var(--accent-gradient);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
  transition: all 0.3s ease;
}

.btn-accent:hover {
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 14px;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 10px;
}

.btn-xl {
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.btn-dark:hover {
  background: #1a2d3d;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-color);
}

.btn-outline:hover {
  background: var(--bg-card);
  border-color: rgba(14, 28, 41, 0.2);
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  .btn-lg {
    padding: 14px 26px;
    font-size: 15px;
  }

  .btn-xl {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* =============================================================================
   10. HERO SECTION
   Main landing page hero with title, subtitle, CTA buttons, and stats.
   Includes split layout variant with side-by-side content and cards.
   ============================================================================= */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
}

/* Split Hero Layout */
.hero.hero-split {
  padding: 180px 0 100px;
  text-align: left;
}

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

.hero-content {
  max-width: 540px;
}

.hero-title-large {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-subtitle-large {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.hero-buttons-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Chrome Badge */
.hero-chrome-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--bg-card);
  border-radius: 50px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.hero-chrome-icon {
  flex-shrink: 0;
}

.hero-chrome-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* CTA Download Section (for Pump Screener pages) */
.section-cta-download {
  padding: 80px 0;
}

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

.cta-download-center .hero-chrome-badge {
  display: inline-flex;
  padding: 12px 28px 12px 12px;
  text-decoration: none;
  gap: 14px;
  align-items: center;
  border-radius: 50px;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-download-center .hero-chrome-badge:hover {
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.cta-download-center .hero-chrome-badge span {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
}

/* Hero Cards */
.hero-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card {
  background: var(--bg-card);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.hero-card-main {
  padding: 24px;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.hero-card-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-card-sort {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-card-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 8px;
  transition: background 0.15s ease;
}

.hero-card-item:last-of-type {
  margin-bottom: 0;
}

.hero-card-item-highlight {
  background: #fef9e7;
}

.hero-card-item:hover:not(.hero-card-item-highlight) {
  background: rgba(14, 28, 41, 0.03);
}

.hero-card-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-card-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.hero-card-avatar.avatar-btc {
  background: linear-gradient(135deg, #f7931a, #ffb347);
}

.hero-card-avatar.avatar-eth {
  background: linear-gradient(135deg, #627eea, #8fa8ff);
}

.hero-card-avatar.avatar-sol {
  background: linear-gradient(135deg, #9945ff, #14f195);
}

.hero-card-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-card-item-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}

.hero-card-item-sub {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-card-pnl {
  font-weight: 600;
  font-size: 15px;
}

.hero-card-pnl.positive {
  color: #00b894;
}

.hero-card-pnl.negative {
  color: #ff6b6b;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.15s ease;
}

.hero-card-footer:hover {
  color: var(--text-primary);
}

/* Stats Card */
.hero-card-stats {
  padding: 24px;
  position: absolute;
  bottom: 40px;
  right: -40px;
  width: 280px;
  z-index: 10;
}

.hero-card-stats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.hero-card-stats-label {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-card-stats-badge {
  font-size: 12px;
  font-weight: 600;
  color: #ff6b6b;
}

.hero-card-stats-value {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* Chart */
.hero-card-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 80px;
  margin-bottom: 12px;
}

.chart-bar {
  flex: 1;
  height: var(--height, 50%);
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: flex-end;
}

.chart-bar.chart-bar-h40 { --height: 40%; }
.chart-bar.chart-bar-h45 { --height: 45%; }
.chart-bar.chart-bar-h55 { --height: 55%; }
.chart-bar.chart-bar-h65 { --height: 65%; }
.chart-bar.chart-bar-h70 { --height: 70%; }
.chart-bar.chart-bar-h80 { --height: 80%; }
.chart-bar.chart-bar-h90 { --height: 90%; }

.chart-bar-inner {
  display: block;
  border-radius: 4px;
  flex: 1;
}

.chart-bar-yellow {
  background: #ffeaa7;
}

.chart-bar-coral {
  background: #fab1a0;
}

.chart-bar-blue {
  background: #81ecec;
}

.hero-card-chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons-row {
    justify-content: center;
  }

  .hero-chrome-badge {
    margin: 0 auto;
  }

  .hero-cards {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-card-stats {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero.hero-split {
    padding: 140px 0 60px;
  }

  .hero-buttons-row {
    flex-direction: column;
  }

  .hero-buttons-row .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Original Hero Styles */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(108, 92, 231, 0.08);
  border: 1px solid rgba(108, 92, 231, 0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  max-width: 800px;
  margin: 0 auto 24px;
}

.hero-subtitle {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}

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

.hero-stat-value {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hero {
    padding: 140px 0 80px;
  }

  .hero-stats {
    gap: 32px;
    flex-wrap: wrap;
  }

  .hero-stat-value {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero.hero-split {
    padding: 100px 0 60px;
  }

  .hero-title-large {
    font-size: 28px;
  }

  .hero-subtitle-large {
    font-size: 15px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 48px;
    padding-top: 32px;
  }

  .hero-stat-value {
    font-size: 24px;
  }

  .hero-stat-label {
    font-size: 12px;
  }
}

/* =============================================================================
   11. SECTIONS
   Generic section containers with headers, labels, and titles.
   Consistent vertical rhythm and spacing.
   ============================================================================= */
.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
}

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

  .section-header {
    margin-bottom: 40px;
  }

  .section-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-label {
    font-size: 11px;
  }

  .section-title,
  h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 14px;
  }
}

/* =============================================================================
   12. EXCHANGE CARDS
   Cryptocurrency exchange showcase cards with logos and status badges.
   Grid layout with hover effects and "coming soon" variants.
   ============================================================================= */
.exchanges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .exchanges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .exchanges-grid {
    grid-template-columns: 1fr;
  }
}

.exchange-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 28px 24px;
  text-align: center;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.exchange-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--border-color);
}

.exchange-card.coming-soon {
  opacity: 0.7;
}

.exchange-card.coming-soon:hover {
  opacity: 0.85;
}

.exchange-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 0 0 0 12px;
  background: #16a34a;
  color: #ffffff;
}

.exchange-badge.soon {
  background: rgba(251, 191, 36, 0.18);
  color: #b45309;
}

.exchange-logo {
  width: 180px;
  height: 50px;
  margin: 0 auto 16px;
  border-radius: 0;
  object-fit: contain;
  transition: var(--transition-base);
}

.exchange-card:hover .exchange-logo {
  transform: scale(1.08);
}

.exchange-name {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.exchange-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Exchange card buttons */
.exchange-card .btn-primary {
  background: #8B5CF6;
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}

.exchange-card .btn-primary:hover {
  background: #7C3AED;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
  transform: none;
}

.exchange-card .btn-secondary {
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-muted);
  cursor: default;
  pointer-events: none;
}

.exchange-card .btn-secondary:hover {
  transform: none;
}

@media (max-width: 480px) {
  .exchange-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .exchange-logo {
    width: 140px;
    height: 40px;
  }

  .exchange-name {
    font-size: 15px;
  }

  .exchange-desc {
    font-size: 13px;
  }

  .exchange-card .btn-primary,
  .exchange-card .btn-secondary {
    padding: 8px 18px;
    font-size: 12px;
  }
}

/* =============================================================================
   CRYPTO SCREENER PAGE
   Exchange cards grid and benefits section for crypto-screener page
   ============================================================================= */

/* Crypto Screener Exchange Cards Grid */
.crypto-screener-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .crypto-screener-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .crypto-screener-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Crypto Screener Exchange Card */
.exchange-card-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.exchange-card-link:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}

.exchange-card-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.exchange-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.exchange-card-logo-lg img {
  transform: scale(1.25);
}

.exchange-card-content {
  flex: 1;
}

.exchange-card-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.exchange-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.exchange-card-arrow {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.exchange-card-link:hover .exchange-card-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

.exchange-card-badge {
  display: inline-block;
  padding: 2px 8px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  margin-left: 8px;
  text-transform: uppercase;
}

/* Screener Benefits Section */
.screener-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 991px) {
  .screener-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .screener-benefits {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent);
}

.benefit-icon-green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
}

.benefit-icon-green svg {
  stroke: #10b981;
}

.benefit-icon-orange {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
}

.benefit-icon-orange svg {
  stroke: #f97316;
}

.benefit-icon-cyan {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
}

.benefit-icon-cyan svg {
  stroke: #06b6d4;
}

.benefit-icon-pink {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(244, 114, 182, 0.1) 100%);
}

.benefit-icon-pink svg {
  stroke: #ec4899;
}

.benefit-icon-yellow {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(250, 204, 21, 0.1) 100%);
}

.benefit-icon-yellow svg {
  stroke: #eab308;
}

.benefit-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.benefit-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Screener Hero adjustments */
.screener-hero {
  padding-bottom: 40px;
}

.screener-hero .landing-hero-subtitle {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================================================
   13. FEATURE CARDS
   Feature showcase cards with icons, titles, and descriptions.
   3-column responsive grid layout.
   ============================================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--border-color);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(108, 92, 231, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 480px) {
  .feature-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 16px;
  }

  .feature-title {
    font-size: 16px;
  }

  .feature-desc {
    font-size: 14px;
  }
}

/* =============================================================================
   14. STEPS
   Step-by-step guide cards with numbered indicators.
   3-column grid with hover lift effect.
   ============================================================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.step-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--border-color);
  transform: translateY(-4px);
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--accent-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--text-secondary);
}

@media (max-width: 480px) {
  .step-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 10px;
    margin-bottom: 16px;
  }

  .step-title {
    font-size: 16px;
  }

  .step-desc {
    font-size: 14px;
  }
}

/* =============================================================================
   14.5. EXCHANGE & PRICING SELECTOR
   Two-step selection: exchange first, then pricing plan.
   Green accent color for selection highlights.
   ============================================================================= */
.exchange-selector {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.exchange-selector-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.exchange-selector-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.exchange-option {
  cursor: pointer;
}

.exchange-option input {
  display: none;
}

.exchange-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 130px;
  height: 130px;
  background: var(--bg-card);
  border: 3px solid var(--border-light);
  border-radius: 50%;
  transition: all 0.25s ease;
  position: relative;
}

.exchange-option-card:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: var(--shadow-sm);
  transform: scale(1.03);
}

.exchange-option input:checked + .exchange-option-card {
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2), var(--shadow-md);
  background: #ffffff;
}

.exchange-option-logo {
  height: 55px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

.exchange-option-name {
  display: none;
}

.exchange-option-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s ease;
  border: 2px solid #ffffff;
}

.exchange-option-check svg {
  color: white;
  width: 14px;
  height: 14px;
}

.exchange-option input:checked + .exchange-option-card .exchange-option-check {
  opacity: 1;
  transform: scale(1);
}

/* Pricing card clickable state */
.pricing-card.selectable {
  cursor: pointer;
  transition: all 0.25s ease;
}

.pricing-card.selectable:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.3);
}

.pricing-card.selected {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15), var(--shadow-lg) !important;
}

/* Selected card check mark */
.pricing-card .pricing-check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s ease;
  z-index: 5;
}

.pricing-card .pricing-check svg {
  color: white;
  width: 16px;
  height: 16px;
}

.pricing-card.selected .pricing-check {
  opacity: 1;
  transform: scale(1);
}

/* Selection summary */
.selection-summary {
  margin-top: 32px;
  padding: 24px 28px;
  background: #ffffff;
  border: 2px solid #10b981;
  border-radius: var(--card-radius);
  text-align: center;
  display: none;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1), var(--shadow-md);
}

.selection-summary.visible {
  display: block;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.selection-summary-text {
  font-size: 17px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.selection-summary-text .summary-product {
  color: #10b981;
  font-weight: 600;
}

.selection-summary-text .summary-price {
  color: #ef4444;
  font-weight: 600;
}

.selection-summary-text strong {
  font-weight: 600;
}

@media (max-width: 480px) {
  .exchange-selector-grid {
    gap: 16px;
  }

  .exchange-option-card {
    width: 100px;
    height: 100px;
  }

  .exchange-option-logo {
    height: 32px;
    max-width: 70px;
  }
}

/* =============================================================================
   15. PRICING
   Pricing cards with featured badge, price display, and feature lists.
   2-column centered layout with highlighted "popular" variant.
   ============================================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.pricing-card:hover {
  box-shadow: var(--shadow-card);
}

.pricing-card.featured::before {
  content: 'Выгодно';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
}

.pricing-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(0, 184, 148, 0.1);
  color: var(--success);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 28px 24px;
    border-radius: 18px;
  }

  .pricing-period {
    font-size: 12px;
  }

  .pricing-price {
    font-size: 40px;
  }

  .pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    gap: 10px;
  }

  .pricing-features li::before {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
}

/* =============================================================================
   16. CTA SECTION
   Call-to-action blocks with decorative gradients.
   Centered layout with subtle background effects.
   ============================================================================= */
.cta-section {
  padding: var(--section-padding) 0;
}

.cta-box {
  background: linear-gradient(135deg, #1e3a8a 0%, #4338ca 40%, #7c3aed 100%);
  border: none;
  border-radius: 16px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  display: none;
}

.cta-box .cta-title,
.cta-box .cta-subtitle {
  color: #fff;
}

.cta-box .text-gradient {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fbbf24;
  background-clip: unset;
  color: #fbbf24;
}

.cta-box .btn-accent {
  background: #fbbf24;
  color: #1e293b;
  font-weight: 700;
}

.cta-box .btn-accent:hover {
  background: #f59e0b;
}

.cta-box > * {
  position: relative;
}

.cta-title {
  margin-bottom: 16px;
}

.cta-subtitle {
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 17px;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .cta-box {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .cta-box {
    padding: 32px 16px;
    border-radius: 20px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-subtitle {
    font-size: 14px;
  }
}

/* =============================================================================
   17. FOOTER
   Site footer with brand info, navigation links, and copyright.
   Dark background with responsive grid layout.
   ============================================================================= */
.footer {
  background: #000000;
  color: var(--text-light);
  padding: 64px 0 32px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 48px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .footer-title {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
    padding-top: 24px;
  }
}

.footer-brand {
  max-width: 240px;
}

.footer-brand .logo {
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  background: rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.footer-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-light);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-2px);
}

.social-link.telegram:hover {
  color: #26A5E4;
}

.social-link.youtube:hover {
  color: #FF0000;
}

.social-link.twitter:hover {
  color: #fff;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-title-social {
  margin-top: 20px;
  margin-bottom: 12px;
}

.footer-social-inline {
  gap: 12px;
}

.footer-social-inline .social-link svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 640px) {
  .footer-bottom {
    gap: 12px;
    text-align: center;
  }
}

/* =============================================================================
   18. COOKIE BANNER
   GDPR compliance cookie consent banner.
   Glass-morphism design with slide-in animation.
   ============================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: auto;
  max-width: 340px;
  background: rgba(15, 15, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateX(0);
}

.cookie-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  line-height: 1.5;
}

.cookie-text a {
  color: #a78bfa;
  text-decoration: none;
  transition: color 0.2s;
}

.cookie-text a:hover {
  color: #c4b5fd;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
}

.cookie-buttons .btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

@media (max-width: 480px) {
  .cookie-banner {
    right: 12px;
    left: 12px;
    max-width: none;
    bottom: 12px;
  }
}

/* =============================================================================
   19. PAGE HERO
   Subpage hero sections for internal pages.
   Compact centered layout with title and description.
   ============================================================================= */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================================================
   20. CONTENT BOX
   Content container cards for articles and text blocks.
   White background with subtle borders and code formatting.
   ============================================================================= */
.content-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 40px;
}

.content-box h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.content-box h3 {
  font-size: 18px;
  color: var(--accent);
  margin: 28px 0 12px;
}

.content-box h3:first-of-type {
  margin-top: 0;
}

.content-box p {
  margin-bottom: 16px;
}

.content-box ul, .content-box ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.content-box li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.content-box code {
  background: rgba(108, 92, 231, 0.08);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .content-box {
    padding: 28px 24px;
  }
}

/* =============================================================================
   21. DOCS LAYOUT
   Documentation page sidebar navigation and content area.
   Sticky sidebar with collapsible exchange sections.
   ============================================================================= */
.docs-layout {
  display: grid;
  grid-template-columns: 240px 800px;
  gap: 48px;
  padding: 120px 24px 80px;
  align-items: start;
  width: fit-content;
  margin: 0 auto;
}

@media (max-width: 1150px) {
  .docs-layout {
    grid-template-columns: 240px 1fr;
    width: auto;
    max-width: 1088px;
  }
}

@media (max-width: 900px) {
  .docs-layout {
    grid-template-columns: 1fr;
    width: auto;
    padding: 100px 20px 60px;
    gap: 24px;
  }

  .docs-sidebar {
    position: relative;
    top: 0;
  }
}

.docs-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.docs-nav {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 20px;
}

.docs-nav-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

/* Collapsible exchange sections */
.docs-nav-collapsible .docs-nav-title {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  padding: 0 0 8px 0;
  margin-bottom: 0;
  transition: color 0.2s ease;
}

.docs-nav-collapsible .docs-nav-title:hover {
  color: var(--text-primary);
}

.docs-nav-chevron {
  width: 16px;
  height: 16px;
  margin-left: auto;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.docs-nav-collapsible.open .docs-nav-chevron {
  transform: rotate(180deg);
}

.docs-nav-links {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.docs-nav-links-inner {
  overflow: hidden;
}

.docs-nav-collapsible.open .docs-nav-links {
  grid-template-rows: 1fr;
}

.docs-nav-collapsible.open .docs-nav-links-inner {
  padding-top: 8px;
}

.docs-nav-collapsible .docs-nav-section {
  margin-bottom: 0;
}

.docs-nav-link {
  display: block;
  padding: 8px 12px;
  font-size: 15px;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 2px;
  transition: var(--transition-fast);
}

.docs-nav-link:hover {
  background: rgba(14, 28, 41, 0.04);
  color: var(--text-primary);
}

.docs-nav-link.active {
  background: rgba(108, 92, 231, 0.08);
  color: var(--accent);
}

.docs-content {
  min-width: 0; /* Prevent grid blowout */
}

.docs-content h1 {
  font-size: 36px;
  margin-bottom: 24px;
}

.docs-content h2 {
  font-size: 24px;
  margin: 48px 0 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.docs-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 32px;
}

.docs-content p {
  margin-bottom: 20px;
}

/* =============================================================================
   22. CONTACT FORM
   Form elements: inputs, textareas, and select dropdowns.
   Consistent styling with focus states and validation.
   ============================================================================= */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-textarea {
  min-height: 140px;
  max-height: 300px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235e788f' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* =============================================================================
   23. 404 PAGE
   Error page with large gradient code display.
   Full viewport centered layout with navigation buttons.
   ============================================================================= */
.error-page {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.error-code {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(100px, 25vw, 180px);
  font-weight: 700;
  line-height: 1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-title {
  font-size: 28px;
  margin: 16px 0;
}

.error-desc {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* =============================================================================
   24. ALERTS
   Alert message components: warning, success, info variants.
   Colored backgrounds with matching borders.
   ============================================================================= */
.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin: 20px 0;
  font-size: 15px;
}

.alert-warning {
  background: rgba(253, 203, 110, 0.12);
  border: 1px solid rgba(253, 203, 110, 0.3);
  color: #e17055;
}

.alert-success {
  background: rgba(0, 184, 148, 0.1);
  border: 1px solid rgba(0, 184, 148, 0.2);
  color: var(--success);
}

.alert-info {
  background: rgba(108, 92, 231, 0.08);
  border: 1px solid rgba(108, 92, 231, 0.15);
  color: var(--accent);
}

/* =============================================================================
   25. ANIMATIONS
   Keyframe animations and entrance effects.
   fadeInUp animation with delay utility classes.
   ============================================================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* =============================================================================
   26. UTILITIES
   Helper classes for spacing, text alignment, and modifiers.
   Margin, padding, and width utility classes.
   ============================================================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 14px; }
.link-accent { color: #a855f7; }
.link-accent:hover { color: #9333ea; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.pt-0 { padding-top: 0; }
.pt-sm { padding-top: 40px; }
.pt-md { padding-top: 60px; }

/* Width utilities */
.w-full { width: 100%; }

/* Section padding modifiers */
.section.section-pt-sm { padding-top: 40px; }
.section.section-pt-md { padding-top: 60px; }

/* Page Hero Image */
.page-hero-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  border-radius: 16px;
}

/* Feature card centered variant */
.feature-card.feature-card-centered {
  text-align: center;
}

.feature-card.feature-card-centered .feature-icon {
  margin: 0 auto 20px;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

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

.payment-method-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 28px;
}

.payment-method-icon.payment-btc {
  background: rgba(247, 147, 26, 0.1);
}

.payment-method-icon.payment-usdt {
  background: rgba(38, 161, 123, 0.1);
}

.payment-method-icon.payment-eth {
  background: rgba(98, 126, 234, 0.1);
}

.payment-method-label {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Docs nav margin top utility */
.docs-nav-title.docs-nav-title-mt {
  margin-top: 20px;
}

/* Docs bottom link */
.docs-bottom-link {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.docs-bottom-link p {
  color: var(--text-muted);
}

.docs-bottom-link a {
  color: var(--accent);
}

/* Docs nav sections */
.docs-nav-section {
  margin-bottom: 24px;
}

.docs-nav-section:last-child {
  margin-bottom: 0;
}

/* Docs nav exchange title with logo */
.docs-nav-title-exchange {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: none;
  padding-bottom: 12px;
}

.docs-nav-exchange-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  box-sizing: border-box;
}

.docs-nav-exchange-logo[alt="Binance"] {
  background: #000;
  padding: 6px;
}

.docs-nav-exchange-logo[alt="Bybit"] {
  padding: 0;
}

/* Highlighted code */
.code-highlight {
  color: #00c853;
  font-size: 1.3em;
  font-weight: 600;
}

/* Docs content inner with background */
.docs-content-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px 48px;
}

@media (max-width: 768px) {
  .docs-content-inner {
    padding: 24px 20px;
    border-radius: 16px;
  }
}

.docs-intro {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Docs exchange header */
.docs-exchange-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 56px 0 32px;
  padding: 24px;
  background: rgba(108, 92, 231, 0.04);
  border: 1px solid rgba(108, 92, 231, 0.1);
  border-radius: 16px;
}

.docs-exchange-header-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
}

.docs-exchange-header-logo[alt="Binance"] {
  background: #000;
  padding: 8px;
}

.docs-exchange-title {
  font-size: 28px;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.docs-exchange-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin: 4px 0 0 !important;
}

/* Docs table */
.docs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  overflow: hidden;
}

.docs-table tr {
  border-bottom: 1px solid var(--border-light);
}

.docs-table tr:last-child {
  border-bottom: none;
}

.docs-table td {
  padding: 14px 16px;
  font-size: 14px;
}

.docs-table td:first-child {
  font-weight: 500;
  color: var(--text-muted);
  width: 180px;
}

.docs-table td:last-child {
  color: var(--text-primary);
}

.docs-table code {
  background: rgba(108, 92, 231, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13px;
}

/* Docs FAQ */
.docs-faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.docs-faq-item {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 24px;
}

.docs-faq-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.docs-faq-item p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.docs-faq-item code {
  background: rgba(108, 92, 231, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* Contact icon backgrounds */
.feature-icon.feature-icon-telegram {
  background: rgba(0, 136, 204, 0.1);
}

.feature-icon.feature-icon-email {
  background: rgba(234, 67, 53, 0.1);
}

.feature-icon.feature-icon-discord {
  background: rgba(114, 137, 218, 0.1);
}

/* Footer fixed variant for 404 page */
.footer.footer-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer.footer-fixed .footer-bottom {
  border-top: none;
  padding-top: 0;
}

/* Form footer text */
.form-footer-text {
  text-align: center;
  color: var(--text-muted);
  margin-top: 20px;
  font-size: 14px;
}

/* Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table tr {
  border-bottom: 1px solid var(--border-light);
}

.data-table tr:last-child {
  border-bottom: none;
}

.data-table td {
  padding: 16px 0;
  font-size: 15px;
}

.data-table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
  width: 40%;
}

.data-table td:last-child {
  color: var(--text-secondary);
}

/* =============================================================================
   27. FEATURES TABS SECTION
   Tabbed content section with animated panel transitions.
   Pill-shaped tab navigation with image/text split panels.
   ============================================================================= */
.features-tabs-section {
  padding: var(--section-padding) 0;
}

.features-tabs-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.features-tabs-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.features-tabs-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Tab Buttons Container */
.features-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
  margin-bottom: 48px;
  padding: 6px;
  background: var(--bg-card);
  border-radius: 100px;
  border: 1px solid var(--border-color);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-md);
}

.features-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  min-width: 160px;
  background: transparent;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.features-tab-btn:hover {
  color: #1e293b;
  background: rgba(14, 28, 41, 0.06);
}

.features-tab-btn.active {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.35);
  border: none;
}

.features-tab-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Tab Content */
.features-tabs-content {
  position: relative;
  background: #eef2f6;
  border-radius: 32px;
  padding: 48px;
  min-height: 480px;
}

.features-tab-panel {
  display: none;
}

.features-tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Animate image sliding from left, text appears instantly */
.features-tab-panel.active .features-tab-image {
  animation: slideInImage 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Text elements start hidden, animate on tab activation */
.features-tab-panel .features-tab-badge,
.features-tab-panel .features-tab-heading,
.features-tab-panel .features-tab-desc {
  opacity: 0;
}

/* Badge and heading slide up from below */
.features-tab-panel.active .features-tab-badge {
  animation: slideUpFromBelow 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.features-tab-panel.active .features-tab-heading {
  animation: slideUpFromBelow 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) 0.06s forwards;
}

/* Paragraph slides down from above */
.features-tab-panel.active .features-tab-desc {
  animation: slideDownFromAbove 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) 0.12s forwards;
}

@keyframes slideInImage {
  from {
    opacity: 0.85;
    transform: translateX(-12%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUpFromBelow {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDownFromAbove {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tab Panel Image */
.features-tab-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 8px 8px 0 8px;
  box-shadow:
    0 20px 40px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.features-tab-image img {
  width: 100%;
  height: auto;
  border-radius: 8px 8px 0 0;
  display: block;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* Decorative glow on bottom */
.features-tab-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(139, 69, 69, 0.6), rgba(180, 100, 80, 0.3), transparent);
  pointer-events: none;
}

/* Tab Panel Text */
.features-tab-text {
  padding: 20px 0;
}

.features-tab-badge {
  display: inline-block;
  padding: 8px 16px;
  background: #16a34a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  margin-bottom: 20px;
}

.features-tab-heading {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.features-tab-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* =============================================================================
   28. VIDEO + TEXT BLOCK
   Video showcase section with side-by-side text content.
   Includes play button, modal popup, and feature checklist.
   ============================================================================= */
/* Scroll offset for anchor links (accounts for fixed header) */
#features {
  scroll-margin-top: 85px;
}

.video-text-block {
  background: #eef2f6;
  border-radius: 32px;
  padding: 48px;
  margin-bottom: 48px;
}

.video-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.video-text-grid .promo-slider-container {
  margin-top: 32px;
}

/* Video Container */
.video-container {
  position: relative;
}

.video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #4a5568 0%, #2d3748 50%, #1a202c 100%);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.video-wrapper {
  aspect-ratio: 16 / 9;
}

.video-wrapper video,
.video-wrapper .video-thumbnail {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #1a202c;
}

.video-wrapper iframe {
  border-radius: 16px;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6)) drop-shadow(0 0 40px rgba(139, 92, 246, 0.4));
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.8)) drop-shadow(0 0 50px rgba(139, 92, 246, 0.5));
}

.video-play-btn svg circle {
  transition: fill 0.3s ease;
}

.video-play-btn:hover svg circle {
  fill: rgba(139, 92, 246, 1);
}

/* Video Modal/Popup */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-content video,
.video-modal-iframe-wrapper {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-modal-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.video-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.video-modal-close svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
    border-radius: 12px;
  }

  .video-modal-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
  }
}

/* Video Text Content */
.video-text-content {
  padding: 20px 0;
}

.video-text-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(108, 92, 231, 0.15);
  color: #6c5ce7;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  margin-bottom: 20px;
}

.video-text-heading {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.video-text-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.video-text-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.video-text-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: var(--text-primary);
  padding: 10px 0;
}

.video-text-list .check-icon {
  color: #00b894;
  font-weight: 700;
  font-size: 20px;
}

/* Video Block Responsive */
@media (max-width: 1024px) {
  .video-text-block {
    padding: 32px;
  }

  .video-text-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-text-grid .promo-slider-container {
    margin-top: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .video-container {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .video-text-list li {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .video-text-block {
    padding: 24px;
    border-radius: 24px;
  }

  .video-wrapper {
    border-radius: 16px;
  }

  .video-play-btn svg {
    width: 48px;
    height: 48px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .features-tabs-content {
    padding: 32px;
    min-height: 700px;
  }

  .features-tab-panel.active {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-tab-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .features-tabs-nav {
    border-radius: 20px;
    padding: 8px;
    flex-wrap: wrap;
  }

  .features-tab-btn {
    padding: 12px 18px;
    font-size: 14px;
    min-width: 140px;
  }
}

@media (max-width: 640px) {
  .features-tabs-content {
    padding: 24px;
    border-radius: 24px;
    min-height: 620px;
  }

  .features-tabs-nav {
    flex-direction: column;
    width: 100%;
    border-radius: 16px;
  }

  .features-tab-btn {
    width: 100%;
    min-width: unset;
    justify-content: center;
    border-radius: 12px;
  }

  .features-tab-btn.active {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .features-tabs-content {
    padding: 16px;
    border-radius: 16px;
    min-height: 550px;
  }

  .features-tab-btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  .features-tab-badge {
    padding: 6px 12px;
    font-size: 11px;
  }

  .features-tab-heading {
    font-size: 20px;
  }

  .features-tab-desc {
    font-size: 14px;
  }

  .video-text-block {
    padding: 16px;
    border-radius: 16px;
  }

  .video-text-heading {
    font-size: 20px;
  }

  .video-text-desc {
    font-size: 14px;
  }
}

/* =============================================================================
   29. LANDING HERO
   Exchange-specific landing page heroes (Binance, Bybit).
   Branded badges, stat displays, and animated pulse effects.
   ============================================================================= */
.landing-hero {
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
}

.landing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #f59e0b;
  margin-bottom: 28px;
}

/* Binance branded badge */
.landing-hero-badge-binance {
  background: #16a34a;
  border: none;
  color: #ffffff;
  font-weight: 700;
}

/* Bybit branded badge */
.landing-hero-badge-bybit {
  background: #16a34a;
  border: none;
  color: #ffffff;
  font-weight: 700;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
}

@keyframes badgePulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

/* Screener green badge */
.landing-hero-badge-screener {
  background: #16a34a;
  border: none;
  color: #ffffff;
  font-weight: 700;
}

/* OKX branded badge */
.landing-hero-badge-okx {
  background: #16a34a;
  border: none;
  color: #ffffff;
  font-weight: 700;
}

/* Bitget branded badge */
.landing-hero-badge-bitget {
  background: #16a34a;
  border: none;
  color: #ffffff;
  font-weight: 700;
}

/* Gate branded badge */
.landing-hero-badge-gate {
  background: #16a34a;
  border: none;
  color: #ffffff;
  font-weight: 700;
}

/* KuCoin branded badge */
.landing-hero-badge-kucoin {
  background: #16a34a;
  border: none;
  color: #ffffff;
  font-weight: 700;
}

/* Kraken branded badge */
.landing-hero-badge-kraken {
  background: #16a34a;
  border: none;
  color: #ffffff;
  font-weight: 700;
}

/* HTX branded badge */
.landing-hero-badge-htx {
  background: #16a34a;
  border: none;
  color: #ffffff;
  font-weight: 700;
}

/* MEXC branded badge */
.landing-hero-badge-mexc {
  background: #16a34a;
  border: none;
  color: #ffffff;
  font-weight: 700;
}

/* White pulse for green badge */
.landing-hero-badge-binance .badge-pulse,
.landing-hero-badge-bybit .badge-pulse,
.landing-hero-badge-screener .badge-pulse,
.landing-hero-badge-okx .badge-pulse,
.landing-hero-badge-bitget .badge-pulse,
.landing-hero-badge-gate .badge-pulse,
.landing-hero-badge-kucoin .badge-pulse,
.landing-hero-badge-kraken .badge-pulse,
.landing-hero-badge-htx .badge-pulse,
.landing-hero-badge-mexc .badge-pulse {
  background: #ffffff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: badgePulseWhite 2s ease-in-out infinite;
}

@keyframes badgePulseWhite {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }
}

.landing-hero-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.landing-hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}

.landing-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.landing-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 24px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  width: fit-content;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.landing-stat {
  text-align: center;
  padding: 0 32px;
}

.landing-stat-value {
  display: block;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.landing-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.landing-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

@media (max-width: 768px) {
  .landing-hero {
    padding: 140px 0 60px;
  }

  .landing-hero-title {
    font-size: 28px;
  }

  .landing-hero-compact .landing-hero-title {
    font-size: 26px;
  }

  .landing-hero-stats {
    flex-direction: row;
    gap: 0;
    border-radius: 60px;
    padding: 16px 20px;
  }

  .landing-stat {
    padding: 0 12px;
  }

  .landing-stat-value {
    font-size: 18px;
  }

  .landing-stat-label {
    font-size: 10px;
  }

  .landing-stat-divider {
    width: 1px;
    height: 32px;
  }

  .landing-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .landing-hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .landing-hero {
    padding: 100px 0 40px;
  }

  .landing-hero-badge {
    padding: 8px 14px;
    font-size: 11px;
  }

  .landing-hero-title {
    font-size: 24px;
  }

  .landing-hero-subtitle {
    font-size: 14px;
  }

  .landing-hero-stats {
    padding: 12px 16px;
    gap: 0;
  }

  .landing-stat {
    padding: 0 8px;
  }

  .landing-stat-value {
    font-size: 16px;
  }

  .landing-stat-label {
    font-size: 9px;
  }

  .landing-stat-divider {
    height: 24px;
  }
}

/* =============================================================================
   30. BENTO GRID
   Modern bento-style card layout for feature showcases.
   Variable-size cards with accent variants and visual demos.
   ============================================================================= */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
  border-color: var(--border-color);
  box-shadow:
    0 0 0 1px rgba(108, 92, 231, 0.1),
    0 20px 40px -20px rgba(14, 28, 41, 0.15);
  transform: translateY(-4px);
}

.bento-card-large {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 40px;
}

.bento-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.bento-card-accent {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.03) 0%, rgba(34, 197, 94, 0.03) 100%);
  border-color: rgba(108, 92, 231, 0.12);
}

.bento-card-highlight {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.04) 0%, rgba(168, 85, 247, 0.04) 100%);
  border-color: rgba(6, 182, 212, 0.12);
}

.bento-card-content {
  display: flex;
  flex-direction: column;
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: rgba(108, 92, 231, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.bento-icon svg {
  width: 24px;
  height: 24px;
}

.bento-icon-lg {
  width: 56px;
  height: 56px;
}

.bento-icon-lg svg {
  width: 28px;
  height: 28px;
}

.bento-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.bento-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.bento-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.bento-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
}

.bento-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.bento-badges {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.bento-badge {
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.bento-badge-cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}

.bento-badge-purple {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

/* Bento Visual Elements */
.bento-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-visual-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(145deg, #1a1f2e 0%, #0f1318 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.trading-buttons-demo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 160px;
}

.demo-btn {
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.demo-btn-long {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
  animation: btnPulse 2s ease-in-out infinite;
}

.demo-btn-short {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
  animation: btnPulse 2s ease-in-out infinite 0.5s;
}

@keyframes btnPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* Signals Demo */
.bento-signals-demo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
}

.signal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  animation: signalSlide 0.5s ease-out;
}

@keyframes signalSlide {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.signal-pump {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.signal-dump {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.signal-pair {
  font-weight: 600;
  color: var(--text-primary);
}

.signal-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.signal-pump .signal-type { color: #22c55e; }
.signal-dump .signal-type { color: #ef4444; }

.signal-value {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}

.signal-pump .signal-value { color: #22c55e; }
.signal-dump .signal-value { color: #ef4444; }

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card-large {
    grid-column: span 2;
    grid-row: span 1;
    grid-template-columns: 1fr;
  }

  .bento-card-wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card-large,
  .bento-card-wide {
    grid-column: span 1;
  }

  .bento-card {
    padding: 24px;
  }

  .bento-card-large {
    padding: 24px;
  }

  .bento-signals-demo {
    min-width: auto;
    width: 100%;
  }
}

/* =============================================================================
   31. REALTIME BLOCK
   Real-time data showcase with animated card visuals.
   Split layout with feature icons and live data display.
   ============================================================================= */
.realtime-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 60px;
}

.realtime-content .section-label {
  text-align: left;
}

.realtime-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.realtime-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.realtime-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.realtime-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.realtime-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-color);
}

.realtime-feature-icon svg {
  width: 22px;
  height: 22px;
}

.realtime-feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.realtime-feature-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.realtime-feature-text span {
  font-size: 14px;
  color: var(--text-muted);
}

/* Realtime Card Visual */
.realtime-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.realtime-card {
  width: 100%;
  max-width: 320px;
  background: linear-gradient(160deg, #1a1f2e 0%, #0f1318 100%);
  border-radius: 20px;
  padding: 24px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.realtime-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.realtime-card-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

.realtime-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.realtime-card-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.realtime-card-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 600;
  color: #f59e0b;
}

.realtime-card-value small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.realtime-card-value-green {
  color: #22c55e;
}

@media (max-width: 1024px) {
  .realtime-block {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .realtime-content .section-label,
  .realtime-content .section-title {
    text-align: center;
  }

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

  .realtime-features {
    align-items: center;
  }

  .realtime-feature {
    max-width: 320px;
  }

  .realtime-visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .realtime-block {
    padding: 32px 24px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .realtime-block {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .realtime-card {
    padding: 16px;
  }

  .realtime-feature {
    gap: 10px;
  }

  .realtime-feature-icon {
    width: 36px;
    height: 36px;
  }

  .realtime-feature-text strong {
    font-size: 14px;
  }

  .realtime-feature-text span {
    font-size: 12px;
  }
}

/* =============================================================================
   32. SECURITY MODERN
   Security features showcase with large icon and check grid.
   Centered layout with green-themed trust indicators.
   ============================================================================= */
.security-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 60px;
}

.security-modern-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: #22c55e;
}

.security-modern-icon svg {
  width: 40px;
  height: 40px;
}

.security-modern-content {
  max-width: 600px;
}

.security-modern-content .section-title {
  margin-bottom: 16px;
}

.security-modern-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.security-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}

.security-modern-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-primary);
}

.security-modern-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .security-modern {
    padding: 40px 24px;
  }

  .security-modern-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .security-modern {
    padding: 28px 16px;
    border-radius: 20px;
  }

  .security-modern-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .security-modern-icon svg {
    width: 32px;
    height: 32px;
  }

  .security-modern-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .security-modern-item {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* =============================================================================
   33. STEPS MODERN
   Modern step indicator with horizontal connector lines.
   Numbered badges with gradient backgrounds.
   ============================================================================= */
.steps-modern {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-modern {
  flex: 1;
  max-width: 240px;
  text-align: center;
  padding: 0 20px;
}

.step-modern-number {
  width: 52px;
  height: 52px;
  background: var(--accent-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.25);
}

.step-modern-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-modern-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.step-modern-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  margin-top: 26px;
  border-radius: 2px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .steps-modern {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step-modern {
    max-width: 360px;
  }

  .step-modern-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .steps-modern {
    gap: 24px;
  }

  .step-modern {
    padding: 0 12px;
  }

  .step-modern-number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 18px;
  }

  .step-modern-title {
    font-size: 16px;
  }

  .step-modern-desc {
    font-size: 13px;
  }

  .step-modern-connector {
    height: 24px;
  }
}

/* =============================================================================
   34. CTA MODERN
   Modern call-to-action with gradient backgrounds.
   Decorative radial gradients and responsive button layout.
   ============================================================================= */
.cta-modern {
  background: linear-gradient(135deg, #1e3a8a 0%, #4338ca 40%, #7c3aed 100%);
  border: none;
  border-radius: 16px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-modern::before {
  display: none;
}

.cta-modern::after {
  display: none;
}

.cta-modern > * {
  position: relative;
}

.cta-modern-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.cta-modern-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto 32px;
}

.cta-modern .text-gradient {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fbbf24;
  background-clip: unset;
  color: #fbbf24;
}

.cta-modern .btn-accent {
  background: #fbbf24;
  color: #1e293b;
  font-weight: 700;
}

.cta-modern .btn-accent:hover {
  background: #f59e0b;
}

.cta-modern-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-modern {
    padding: 48px 24px;
  }

  .cta-modern-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-modern-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .cta-modern {
    padding: 32px 16px;
    border-radius: 20px;
  }

  .cta-modern-title {
    font-size: 24px;
  }

  .cta-modern-subtitle {
    font-size: 14px;
  }
}

/* =============================================================================
   35. COMPACT LANDING STYLES
   Condensed landing page variants with tighter spacing.
   Includes compact bento grids, inline CTAs, and dual blocks.
   ============================================================================= */

/* Compact Hero */
.landing-hero-compact {
  padding: 140px 0 60px;
}

.landing-hero-compact .landing-hero-title {
  font-size: clamp(22px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

/* Exchange Brand Colors */
.text-binance {
  color: #f0b90b;
}

.text-bybit {
  color: #f7a600;
}

.text-okx {
  color: #ffffff;
}

.text-bitget {
  color: #00f0ff;
}

.text-gate {
  color: #17e6a1;
}

.text-kucoin {
  color: #23af91;
}

.text-kraken {
  color: #7b61ff;
}

.text-htx {
  color: #1f6bff;
}

.text-mexc {
  color: #1972f5;
}

/* Stat colors */
.text-yellow {
  color: #dbbe00;
}

.text-green {
  color: #22c55e;
}

.text-red {
  color: #ef4444;
}

.text-purple {
  color: #6c5ce7;
}

.landing-hero-compact .landing-hero-subtitle {
  font-size: 16px;
  max-width: 500px;
  margin-bottom: 24px;
}

.landing-hero-stats-inline {
  margin-top: 32px;
  padding: 12px 24px;
}

.landing-hero-stats-inline .landing-stat-label {
  font-size: 11px;
}

.landing-hero-stats-inline .landing-stat-value {
  font-size: 18px;
}

/* Compact Section */
.section-compact {
  padding: 48px 0;
}

/* Compact Bento Grid */
.bento-grid-compact {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bento-grid-compact .bento-card {
  padding: 24px;
  border-radius: 20px;
}

.bento-grid-compact .bento-card-wide {
  grid-column: span 3;
}

.bento-grid-compact .bento-card-feature {
  grid-column: span 1;
  grid-row: span 1;
}

/* Bento Card Header Layout */
.bento-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bento-card-header .bento-icon {
  margin-bottom: 0;
}

.bento-card-header .bento-title {
  margin-bottom: 0;
  font-size: 16px;
}

.bento-grid-compact .bento-desc {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Compact Trading Demo */
.trading-buttons-demo-sm {
  margin-top: 16px;
  gap: 8px;
}

.trading-buttons-demo-sm .demo-btn {
  padding: 10px 20px;
  font-size: 12px;
}

/* Row Layout for Wide Cards */
.bento-card-row-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bento-card-row-layout .bento-card-content {
  flex: 1;
}

.bento-card-row-layout .bento-signals-demo {
  flex-shrink: 0;
  display: flex;
  gap: 12px;
}

.bento-card-row-layout .signal-item {
  padding: 8px 14px;
}

.bento-card-row-layout .signal-item .signal-type {
  display: none;
}

/* Dark Bento Card */
.bento-card-dark {
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1318 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-card-dark .bento-title,
.bento-card-dark .bento-desc {
  color: #e5e7eb;
}

.bento-card-dark .bento-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* Glowing Icon */
.bento-icon-glow {
  background: rgba(34, 197, 94, 0.15);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.bento-icon-glow svg {
  stroke: #22c55e;
}

/* Small Realtime Card */
.realtime-card-sm {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 160px;
}

.realtime-card-sm .realtime-card-row {
  padding: 6px 0;
  border: none;
}

.realtime-card-sm .realtime-card-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.realtime-card-sm .realtime-card-value {
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
}

/* Dual Block */
.dual-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dual-block-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 32px;
}

.dual-block-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.dual-block-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.dual-block-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.dual-block-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Security Checks */
.security-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.security-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.security-check svg {
  flex-shrink: 0;
}

/* Setup Steps Compact */
.setup-steps-compact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.setup-step-compact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.setup-step-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.setup-step-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.setup-step-text strong {
  font-size: 14px;
  font-weight: 600;
}

.setup-step-text span {
  font-size: 12px;
  color: var(--text-secondary);
}

/* CTA Compact */
.cta-section-compact {
  padding: 48px 0 80px;
}

.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, #1e3a8a 0%, #4338ca 40%, #7c3aed 100%);
  border: none;
  border-radius: 16px;
  padding: 40px 48px;
}

/* CTA Button - Yellow */
.cta-inline .btn-accent {
  background: #fbbf24;
  color: #1e293b;
  font-weight: 700;
  box-shadow: none;
  border: none;
}

.cta-inline .btn-accent:hover {
  background: #f59e0b;
  box-shadow: none;
  border: none;
}

.cta-inline .cta-inline-title,
.cta-inline .cta-inline-subtitle,
.cta-inline .text-gradient {
  color: #ffffff;
}

.cta-inline .text-gradient {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fbbf24;
  background-clip: unset;
  color: #fbbf24;
}

.cta-inline-text {
  flex: 1;
}

.cta-inline-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 6px;
}

.cta-inline-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

.cta-inline-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* CTA Centered Layout */
.cta-inline.cta-centered {
  flex-direction: column;
  text-align: center;
  gap: 24px;
}

/* CTA Hero Button - Premium styled purchase button */
.btn-cta-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a2e;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f5 100%);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-cta-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn-cta-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.btn-cta-hero:hover::before {
  left: 100%;
}

.btn-cta-hero:active {
  transform: translateY(0);
}

/* Responsive Compact */
@media (max-width: 1024px) {
  .bento-grid-compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-grid-compact .bento-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .landing-hero-compact {
    padding: 120px 0 48px;
  }

  .bento-grid-compact {
    grid-template-columns: 1fr;
  }

  .bento-grid-compact .bento-card-wide {
    grid-column: span 1;
  }

  .bento-card-row-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .bento-card-row-layout .bento-signals-demo {
    justify-content: center;
  }

  .dual-block {
    grid-template-columns: 1fr;
  }

  .cta-inline {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .cta-inline-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .landing-hero-compact {
    padding: 100px 0 32px;
  }

  .landing-hero-compact .landing-hero-title {
    font-size: 22px;
    line-height: 1.25;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .landing-hero-compact .landing-hero-subtitle {
    font-size: 14px;
  }

  .bento-grid-compact .bento-card {
    padding: 20px;
  }

  .cta-inline {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .cta-inline-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .cta-inline-subtitle {
    font-size: 13px;
    line-height: 1.4;
    word-wrap: break-word;
  }
}

/* =============================================================================
   36. PREMIUM FEATURES GRID
   Premium feature showcase with animated floating panel.
   Gray container with 3-column feature cards and panel demo.
   ============================================================================= */
.section-header-center {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 16px auto 0;
}

/* Premium Features Section - wrapper for positioning */
.premium-features-section .container {
  position: relative;
}

/* Premium Features Container with gray background */
.premium-features-container {
  background: #e8eef4;
  border-radius: 32px;
  padding: 48px;
  position: relative;
  z-index: 2; /* Above panel */
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.premium-features-container .section-header {
  margin-bottom: 32px;
}

.premium-features-container .section-title {
  white-space: nowrap;
}

/* Floating real panel - positioned BEHIND container, peeks OUT from TOP */
.premium-features-floating-panel {
  position: absolute;
  /* Position: right side INSIDE gray block area */
  top: 0;
  right: 60px; /* Offset from edge to keep panel inside gray block */
  z-index: 1; /* Below .premium-features-container */
  pointer-events: none;
  transform: rotate(4deg) !important;
  opacity: 0;
  transition: top 1.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease;
  width: 260px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  user-select: none;
}

.premium-features-floating-panel.animate-in {
  /* Panel slides UP - visible above gray block, bottom hidden behind it */
  top: -300px;
  transform: rotate(4deg) !important;
  opacity: 1;
}

/* Panel content styling - dark theme */
.premium-features-floating-panel .panel-content {
  background: linear-gradient(160deg, rgb(26, 26, 26) 0%, rgb(13, 13, 13) 100%);
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(168, 85, 247, 0.2);
  overflow: hidden;
}

.premium-features-floating-panel .panel-header {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.25);
  text-align: center;
}

.premium-features-floating-panel .panel-title {
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #f59e0b 0%, #ec4899 25%, #8b5cf6 50%, #06b6d4 75%, #10b981 100%);
  background-size: 200% 200%;
  animation: floatingPanelGradient 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes floatingPanelGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.premium-features-floating-panel .panel-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Balance and PnL row */
.premium-features-floating-panel .sp-balance-pnl-row {
  display: flex;
  gap: 6px;
}

.premium-features-floating-panel .sp-balance-item,
.premium-features-floating-panel .sp-pnl-item {
  flex: 1;
  background: rgba(30, 30, 35, 0.9);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px;
  text-align: center;
}

.premium-features-floating-panel .sp-balance-label,
.premium-features-floating-panel .sp-pnl-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.premium-features-floating-panel .sp-balance-value {
  font-size: 16px;
  font-weight: 700;
  color: #f7931a;
  font-family: 'JetBrains Mono', monospace;
}

.premium-features-floating-panel .sp-pnl-value {
  font-size: 16px;
  font-weight: 700;
  color: #22c55e;
  font-family: 'JetBrains Mono', monospace;
}

/* Volatility indicators */
.premium-features-floating-panel .volatility-indicators {
  display: flex;
  gap: 6px;
}

.premium-features-floating-panel .volatility-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-features-floating-panel .volatility-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.premium-features-floating-panel .volatility-bar {
  width: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
}

.premium-features-floating-panel .volatility-bar:nth-child(1) { height: 4px; }
.premium-features-floating-panel .volatility-bar:nth-child(2) { height: 8px; }
.premium-features-floating-panel .volatility-bar:nth-child(3) { height: 12px; }

.premium-features-floating-panel .volatility-bar.bullish { background: #22c55e; }
.premium-features-floating-panel .volatility-bar.bearish { background: #ef4444; }

.premium-features-floating-panel .volatility-percent {
  flex: 1;
  text-align: right;
  font-size: 11px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: rgba(255, 255, 255, 0.5);
}

.premium-features-floating-panel .volatility-percent.bullish { color: #4ade80; }
.premium-features-floating-panel .volatility-percent.bearish { color: #ef4444; }

/* Preset selector */
.premium-features-floating-panel .preset-selector {
  display: flex;
  gap: 6px;
}

.premium-features-floating-panel .preset-btn {
  flex: 1;
  height: 28px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 700;
}

.premium-features-floating-panel .preset-btn.active {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

/* Trade buttons */
.premium-features-floating-panel .trade-buttons-row {
  display: flex;
  height: 36px;
}

.premium-features-floating-panel .trade-btn {
  border: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-features-floating-panel .btn-long {
  flex: 1;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  border-radius: 6px 0 0 6px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.premium-features-floating-panel .btn-short {
  flex: 1;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border-radius: 0 6px 6px 0;
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -4px;
}

.premium-features-floating-panel .btn-close {
  width: 100%;
  height: 36px;
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

/* Signals container */
.premium-features-floating-panel .signals-container {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.premium-features-floating-panel .signals-header {
  padding: 8px 10px;
  display: flex;
  align-items: center;
}

.premium-features-floating-panel .signals-header-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.premium-features-floating-panel .signals-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

.premium-features-floating-panel .signals-title {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.premium-features-floating-panel .signals-badge {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
}

/* Footer */
.premium-features-floating-panel .panel-footer {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  background: linear-gradient(135deg, #fbbf24 0%, #f472b6 25%, #a855f7 50%, #00d9f5 75%, #00f5a0 100%);
  background-size: 200% 200%;
  animation: floatingPanelGradient 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 1px;
}

@media (max-width: 1300px) {
  .premium-features-floating-panel {
    right: 24px;
    width: 200px;
  }
  .premium-features-floating-panel.animate-in {
    top: -250px;
  }
}

@media (max-width: 1100px) {
  .premium-features-floating-panel {
    right: 16px;
    width: 180px;
  }
  .premium-features-floating-panel.animate-in {
    top: -220px;
    transform: rotate(-6deg);
  }
}

@media (max-width: 900px) {
  .premium-features-floating-panel {
    display: none;
  }
}

/* =============================================================================
   SCREENER PANEL - Signal Items for Pump Screener pages
   ============================================================================= */
.premium-features-floating-panel.screener-panel .signals-container {
  border-color: rgba(34, 197, 94, 0.2);
}

.premium-features-floating-panel.screener-panel .signals-header {
  justify-content: space-between;
}

.premium-features-floating-panel.screener-panel .signals-toggle-arrow {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.premium-features-floating-panel.screener-panel .signals-toggle-arrow svg {
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
}

.premium-features-floating-panel.screener-panel .signals-body {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.premium-features-floating-panel.screener-panel .signals-list {
  display: flex;
  flex-direction: column;
  padding: 5px;
  gap: 3px;
}

.premium-features-floating-panel.screener-panel .signal-item {
  display: grid;
  grid-template-columns: 38px 1fr auto 22px 32px;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.premium-features-floating-panel.screener-panel .signal-direction {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 2px 4px;
  border-radius: 3px;
  text-align: center;
}

.premium-features-floating-panel.screener-panel .signal-long .signal-direction {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.premium-features-floating-panel.screener-panel .signal-short .signal-direction {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.premium-features-floating-panel.screener-panel .signal-symbol {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.premium-features-floating-panel.screener-panel .signal-change {
  font-size: 10px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  text-align: right;
}

.premium-features-floating-panel.screener-panel .signal-long .signal-change {
  color: #4ade80;
}

.premium-features-floating-panel.screener-panel .signal-short .signal-change {
  color: #f87171;
}

.premium-features-floating-panel.screener-panel .signal-tf {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 1px 3px;
  border-radius: 2px;
}

.premium-features-floating-panel.screener-panel .signal-time {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
}

/* Screener panel green glow instead of purple */
.premium-features-floating-panel.screener-panel .panel-content {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(34, 197, 94, 0.2);
}

.premium-features-floating-panel.screener-panel .panel-header {
  border-bottom-color: rgba(34, 197, 94, 0.25);
}

.premium-features-floating-panel.screener-panel .signals-badge {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

@media (max-width: 768px) {
  .premium-features-container {
    padding: 24px;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .premium-features-container {
    padding: 16px;
    border-radius: 16px;
  }

  .premium-feature-card {
    padding: 20px;
    border-radius: 14px;
  }

  .premium-feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .premium-feature-title {
    font-size: 16px;
  }

  .premium-feature-desc {
    font-size: 13px;
  }
}

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.premium-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-feature-card:hover {
  border-color: rgba(108, 92, 231, 0.2);
  box-shadow: 0 20px 40px -20px rgba(14, 28, 41, 0.12);
  transform: translateY(-4px);
}

.premium-feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(108, 92, 231, 0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #6c5ce7;
}

.premium-feature-icon svg {
  width: 28px;
  height: 28px;
}

.premium-feature-icon-green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.05) 100%);
  color: #22c55e;
}

.premium-feature-icon-purple {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(168, 85, 247, 0.05) 100%);
  color: #a855f7;
}

.premium-feature-icon-cyan {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(6, 182, 212, 0.05) 100%);
  color: #06b6d4;
}

.premium-feature-icon-orange {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0.05) 100%);
  color: #f59e0b;
}

.premium-feature-icon-pink {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(236, 72, 153, 0.05) 100%);
  color: #ec4899;
}

.premium-feature-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.premium-feature-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Premium Split Grid (Security + Tech) */
.section-dark {
  background: linear-gradient(180deg, #0e1c29 0%, #0a1219 100%);
  padding: 80px 0;
  margin: 60px 0;
}

.premium-split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.premium-info-block {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.premium-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.04) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #22c55e;
}

.premium-info-icon svg {
  width: 24px;
  height: 24px;
}

.premium-info-icon-purple {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.05) 100%);
  color: #a855f7;
}

.premium-info-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.premium-info-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.premium-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.premium-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.premium-check-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: #22c55e;
}

.premium-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.premium-spec-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.premium-spec-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.spec-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Premium Steps */
.premium-steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.premium-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 0 16px;
}

.premium-step-num {
  width: 56px;
  height: 56px;
  background: var(--accent-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.premium-step-num-done {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.premium-step-num-done svg {
  width: 28px;
  height: 28px;
}

.premium-step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.premium-step-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

.premium-step-arrow {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  color: var(--text-muted);
  opacity: 0.4;
}

.premium-step-arrow svg {
  width: 24px;
  height: 24px;
}

/* =============================================================================
   37. FAQ SECTION
   Accordion-style FAQ component with two-column layout.
   Animated chevron rotation and smooth expand/collapse.
   ============================================================================= */
/* FAQ Section - Two columns accordion */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.1);
}

.faq-item.open {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a2e;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-chevron {
  width: 24px;
  height: 24px;
  min-width: 24px;
  flex-shrink: 0;
  color: #6b7280;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotate(0deg) translateZ(0);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg) translateZ(0);
  color: var(--accent);
}

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

.faq-item.open .faq-answer {
  max-height: 800px;
  height: auto;
  visibility: visible;
  opacity: 1;
  transition: max-height 0.3s ease, visibility 0s 0s, opacity 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #4a5568;
}

.faq-answer p + p {
  margin-top: 12px;
}

.faq-answer a.faq-screener-link {
  color: #60a5fa;
  font-size: 1.05em;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.faq-answer a.faq-screener-link:hover {
  color: #3b82f6;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Light Theme (for main page - like About Scalping section) */
.faq-section-dark {
  background: transparent;
  padding-top: 80px;
  padding-bottom: 80px;
}

.faq-content-wrapper {
  background: #e8eef4;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.faq-section-dark .section-header {
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-section-dark .section-title {
  color: #1a1a2e;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.faq-section-dark .section-subtitle {
  color: #4a5568;
  font-size: 18px;
}

@media (max-width: 768px) {
  .faq-content-wrapper {
    padding: 32px 24px;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .faq-content-wrapper {
    padding: 20px 12px;
    border-radius: 16px;
    margin-left: -4px;
    margin-right: -4px;
  }

  .faq-section-dark {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .faq-section-dark .section-title {
    font-size: 24px;
  }

  .faq-section-dark .section-subtitle {
    font-size: 14px;
  }

  .faq-section-dark .section-header {
    margin-bottom: 24px;
  }

  .faq-column {
    gap: 8px;
  }

  .faq-item {
    border-radius: 12px;
  }

  .faq-question {
    padding: 14px 12px;
    font-size: 14px;
    gap: 10px;
  }

  .faq-chevron {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .faq-answer p {
    padding: 0 12px 14px;
    font-size: 13px;
    line-height: 1.6;
  }
}

.faq-question span {
  flex: 1;
}

/* =============================================================================
   38. ABOUT SCALPING SECTION
   Educational content about scalping trading strategy.
   Problem/solution blocks, benefits grid, and target audience.
   ============================================================================= */
/* About Scalping Section */
.about-scalping-section .section-subtitle {
  max-width: 100%;
  white-space: nowrap;
}

.about-scalping-content {
  background: #e8eef4;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Intro Block */
.scalping-intro {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

.scalping-intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.scalping-intro-text p:last-child {
  margin-bottom: 0;
}

.scalping-intro-text strong {
  color: var(--text-primary);
}

/* Problem Block */
.scalping-problem {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.03) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 40px;
}

.scalping-problem-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.15);
  border-radius: 12px;
  color: #ef4444;
}

.scalping-problem-icon.icon-success {
  background: linear-gradient(135deg, rgba(34,197,94,0.15) 0%, rgba(16,185,129,0.1) 100%);
  border-color: rgba(34,197,94,0.3);
  color: #22c55e;
}

.scalping-problem-icon.icon-purple {
  background: linear-gradient(135deg, rgba(139,92,246,0.15) 0%, rgba(168,85,247,0.1) 100%);
  border-color: rgba(139,92,246,0.3);
  color: #a855f7;
}

.scalping-problem-icon.icon-orange {
  background: linear-gradient(135deg, rgba(249,115,22,0.15) 0%, rgba(234,88,12,0.1) 100%);
  border-color: rgba(249,115,22,0.3);
  color: #f97316;
}

.scalping-problem-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.scalping-problem-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.scalping-problem-content em {
  color: var(--text-primary);
  font-style: normal;
}

.scalping-problem-content strong {
  color: #ef4444;
}

/* =============================================================================
   39. COMPARE TABLE
   Feature comparison table with styled checkmarks and fire icons.
   Highlighted "featured" column with green border accent.
   ============================================================================= */
/* Compare Table - Pricing Style (light background) */
.compare-table-wrapper {
  margin-top: 48px;
}

.compare-table-header {
  text-align: center;
  margin-bottom: 24px;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}

.compare-table th {
  padding: 24px 24px 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  vertical-align: bottom;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.compare-table th.compare-feature-col {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  width: 50%;
}

.compare-table th.compare-plan-col {
  width: 25%;
  position: relative;
}

.compare-table th.compare-plan-featured {
  border: 2px solid #10b981;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px 16px 0 0;
  background: transparent;
}

.compare-badge {
  display: block;
  background: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: 100px;
  margin: 0 auto;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.15);
}

.compare-featured-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, #ec4899 0%, #d946ef 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-bottom: 6px;
}

.compare-table td {
  padding: 10px 24px;
  text-align: center;
  vertical-align: middle;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a2e;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr {
  transition: background-color 0.2s ease;
}

.compare-table tbody tr:hover {
  background-color: rgba(139, 92, 246, 0.06);
}

.compare-table td:first-child {
  text-align: left;
}

.compare-table td.featured {
  background: transparent;
  border-left: 2px solid #10b981;
  border-right: 2px solid #10b981;
}

.compare-table tbody tr:last-child td.featured {
  border-bottom: 2px solid #10b981;
  border-radius: 0 0 16px 16px;
}

.compare-check,
.compare-cross {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}

.compare-fire {
  width: 44px;
  height: 44px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 3px rgba(255, 107, 53, 0.6));
}

.compare-fire .flame {
  transform-origin: center bottom;
}

.compare-table tbody tr:hover td .compare-check {
  transform: scale(1.3);
}

.compare-table tbody tr:hover td.featured .compare-fire {
  transform: scale(1.15);
  filter: drop-shadow(0 0 2px rgba(255, 69, 0, 0.6))
          drop-shadow(0 0 4px rgba(255, 165, 0, 0.3));
}

.compare-table tbody tr:hover td.featured .compare-fire .flame-main {
  animation: flameFlicker 0.4s ease-in-out infinite alternate;
}

.compare-table tbody tr:hover td.featured .compare-fire .flame-inner {
  animation: flameInner 0.3s ease-in-out infinite alternate-reverse;
}

@keyframes flameFlicker {
  0% {
    transform: scaleY(1) scaleX(1);
  }
  100% {
    transform: scaleY(1.06) scaleX(0.96);
  }
}

@keyframes flameInner {
  0% {
    transform: scaleY(1) translateY(0);
    opacity: 1;
  }
  100% {
    transform: scaleY(1.08) translateY(-1px);
    opacity: 0.9;
  }
}

.compare-table .text-muted {
  color: #94a3b8;
  font-size: 14px;
}

.compare-table .text-accent {
  color: #10b981;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .compare-table-wrapper {
    margin-left: -16px;
    margin-right: -16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table {
    min-width: 600px;
  }

  .compare-table th {
    padding: 16px 12px;
    font-size: 14px;
  }

  .compare-table th.compare-feature-col {
    font-size: 12px;
    width: 40%;
  }

  .compare-table td {
    padding: 12px;
    font-size: 13px;
  }

  .compare-check,
  .compare-cross {
    width: 18px;
    height: 18px;
  }

  .compare-fire {
    width: 36px;
    height: 36px;
  }

  .compare-badge {
    font-size: 9px;
    padding: 4px 10px;
  }
}

@media (max-width: 480px) {
  .compare-table-wrapper {
    margin-top: 24px;
    margin-left: -8px;
    margin-right: -8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table {
    min-width: 500px;
  }

  .compare-table th {
    padding: 12px 10px;
    font-size: 12px;
  }

  .compare-table th.compare-feature-col {
    font-size: 11px;
    width: 35%;
    min-width: 120px;
  }

  .compare-table th.compare-plan-col {
    width: 32.5%;
    min-width: 100px;
  }

  .compare-table td {
    padding: 10px 8px;
    font-size: 12px;
  }

  .compare-check,
  .compare-cross {
    width: 16px;
    height: 16px;
  }

  .compare-fire {
    width: 28px;
    height: 28px;
  }

  .compare-badge {
    font-size: 8px;
    padding: 3px 8px;
  }

  .compare-featured-title {
    font-size: 18px;
  }
}


/* Solution Block */
.scalping-solution {
  padding: 32px 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

.scalping-solution-header {
  text-align: center;
  margin-bottom: 32px;
}

.scalping-solution-header h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.scalping-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.scalping-solution-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.scalping-solution-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.scalping-solution-item:hover {
  background: rgba(139, 92, 246, 0.06);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(139, 92, 246, 0.3);
}

.scalping-solution-item:hover::before {
  opacity: 1;
}

.solution-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 16px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scalping-solution-item:hover .solution-icon {
  transform: rotate(8deg);
}

.solution-icon svg {
  width: 40px;
  height: 40px;
  stroke: url(#icon-gradient);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scalping-solution-item:hover .solution-icon svg {
  transform: rotate(-3deg);
}

.scalping-solution-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.scalping-solution-item p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

/* Animation on scroll */
.scalping-solution-item {
  opacity: 0;
  transform: translateY(20px);
  animation: solutionFadeIn 0.5s ease forwards;
}

.scalping-solution-item:nth-child(1) { animation-delay: 0.1s; }
.scalping-solution-item:nth-child(2) { animation-delay: 0.2s; }
.scalping-solution-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes solutionFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Benefits Grid */
.scalping-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.scalping-benefit-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.scalping-benefit-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
}

.scalping-benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
  border-radius: 14px;
  color: var(--accent);
}

.scalping-benefit-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.scalping-benefit-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Target Audience */
.scalping-audience {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
}

.scalping-audience h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 24px;
}

.scalping-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: background 0.2s ease;
}

.audience-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.audience-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
  border-radius: 50%;
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .scalping-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scalping-solution-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .scalping-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-scalping-section .section-subtitle {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .about-scalping-content {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .scalping-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .scalping-audience-grid {
    grid-template-columns: 1fr;
  }

  .scalping-intro,
  .scalping-problem,
  .scalping-solution,
  .scalping-audience {
    padding: 24px;
  }

  .scalping-problem {
    flex-direction: column;
    gap: 16px;
  }

  .comparison-title {
    font-size: 20px;
  }

  .comparison-vs {
    font-size: 12px;
    padding: 3px 8px;
    margin: 0 4px;
  }

  .comparison-subtitle {
    font-size: 13px;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .comparison-header .comparison-cell {
    padding: 14px 16px;
  }

  .comparison-header .comparison-feature {
    display: none;
  }

  .comparison-header .comparison-standard,
  .comparison-header .comparison-scalppanel {
    justify-content: flex-start;
  }

  .comparison-column-header {
    font-size: 11px;
  }

  .comparison-cell {
    padding: 14px 16px;
    justify-content: flex-start;
  }

  .comparison-feature {
    background: rgba(255, 255, 255, 0.03);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .comparison-icon-wrapper {
    width: 32px;
    height: 32px;
  }

  .comparison-icon-wrapper svg {
    width: 16px;
    height: 16px;
  }

  .comparison-standard,
  .comparison-scalppanel {
    padding: 10px 16px;
  }

  .comparison-value-bad,
  .comparison-value-good {
    font-size: 13px;
  }

  .comparison-value-bad::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    margin-right: 8px;
    flex-shrink: 0;
  }

  .comparison-value-good::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    margin-right: 8px;
    flex-shrink: 0;
  }

  .comparison-x,
  .comparison-check {
    display: none;
  }

  .comparison-summary {
    flex-direction: column;
    gap: 12px;
  }

  .comparison-summary-arrow {
    transform: rotate(90deg);
  }

  .comparison-summary-item {
    padding: 10px 16px;
    font-size: 13px;
  }

  .comparison-summary-item svg {
    width: 18px;
    height: 18px;
  }

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

  .scalping-audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-scalping-content {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .scalping-intro,
  .scalping-problem,
  .scalping-solution,
  .scalping-audience {
    padding: 16px;
  }

  .comparison-title {
    font-size: 16px;
  }

  .comparison-vs {
    font-size: 10px;
    padding: 2px 6px;
  }

  .comparison-subtitle {
    font-size: 12px;
  }

  .comparison-header .comparison-cell {
    padding: 10px 12px;
  }

  .comparison-cell {
    padding: 10px 12px;
  }

  .comparison-feature {
    font-size: 12px;
  }

  .comparison-column-header {
    font-size: 10px;
  }

  .comparison-value-bad,
  .comparison-value-good {
    font-size: 12px;
  }

  .comparison-standard,
  .comparison-scalppanel {
    padding: 8px 12px;
  }

  .comparison-summary-item {
    padding: 8px 12px;
    font-size: 12px;
  }

  .scalping-benefits-grid {
    gap: 12px;
  }

  .scalping-benefit-card {
    padding: 16px;
  }

  .scalping-solution-grid {
    gap: 12px;
  }

  .scalping-solution-item {
    padding: 16px 12px;
  }

  .scalping-audience-grid {
    gap: 8px;
  }

  .audience-item {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* =============================================================================
   40. RESPONSIVE BREAKPOINTS
   Media queries for premium features and scalping sections.
   Adjusts grid layouts and spacing for tablet and mobile.
   ============================================================================= */
/* Responsive Premium */
@media (max-width: 1024px) {
  .premium-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-split-grid {
    grid-template-columns: 1fr;
  }

  .premium-steps-grid {
    flex-wrap: wrap;
    gap: 24px;
  }

  .premium-step-arrow {
    display: none;
  }

  .premium-step {
    flex: 0 0 calc(50% - 12px);
    max-width: none;
  }
}

@media (max-width: 768px) {
  .premium-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .premium-feature-card {
    padding: 24px;
  }

  .section-dark {
    margin: 40px 0;
    padding: 60px 0;
  }

  .premium-info-block {
    padding: 28px;
  }

  .premium-steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .premium-step {
    flex: none;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .premium-info-block {
    padding: 20px;
    border-radius: 16px;
  }

  .premium-info-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .premium-info-title {
    font-size: 16px;
  }

  .premium-info-desc {
    font-size: 13px;
  }

  .premium-step {
    max-width: 100%;
    padding: 20px;
  }

  .premium-step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .premium-step-title {
    font-size: 16px;
  }

  .premium-step-desc {
    font-size: 13px;
  }

  .section-dark {
    padding: 40px 0;
    margin: 24px 0;
  }
}

/* =============================================================================
   PROMO SLIDER - Image carousel for promotional images
   ============================================================================= */

.promo-slider-container {
  position: relative;
  width: 100%;
  max-width: 550px;
}

.promo-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 880 / 560;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-secondary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.promo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.promo-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slider Navigation Buttons */
.promo-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
  opacity: 0;
}

.promo-slider:hover .promo-slider-btn {
  opacity: 1;
}

.promo-slider-btn:hover {
  background: rgba(139, 92, 246, 0.8);
  border-color: rgba(139, 92, 246, 0.5);
}

.promo-slider-btn svg {
  width: 24px;
  height: 24px;
}

.promo-slider-prev {
  left: 12px;
}

.promo-slider-next {
  right: 12px;
}

/* Thumbnails */
.promo-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  max-width: 550px;
}

.promo-thumb {
  flex: 1;
  aspect-ratio: 880 / 560;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--bg-secondary);
  transition: all 0.2s ease;
  opacity: 0.6;
}

.promo-thumb:hover {
  opacity: 0.9;
  border-color: rgba(255, 255, 255, 0.3);
}

.promo-thumb.active {
  opacity: 1;
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}

.promo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .promo-slider-container {
    max-width: 500px;
    margin: 0 auto;
  }

  .promo-thumbnails {
    max-width: 500px;
    margin: 16px auto 0;
  }
}

@media (max-width: 768px) {
  .promo-slider-container {
    max-width: 100%;
  }

  .promo-slider {
    border-radius: 12px;
  }

  .promo-slider-btn {
    width: 36px;
    height: 36px;
    opacity: 1;
  }

  .promo-slider-btn svg {
    width: 20px;
    height: 20px;
  }

  .promo-slider-prev {
    left: 8px;
  }

  .promo-slider-next {
    right: 8px;
  }

  .promo-thumbnails {
    max-width: 100%;
    gap: 8px;
    margin-top: 12px;
  }

  .promo-thumb {
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .promo-slider {
    border-radius: 10px;
  }

  .promo-slider-btn {
    width: 32px;
    height: 32px;
  }

  .promo-slider-btn svg {
    width: 18px;
    height: 18px;
  }

  .promo-slider-prev {
    left: 6px;
  }

  .promo-slider-next {
    right: 6px;
  }

  .promo-thumbnails {
    gap: 6px;
    margin-top: 10px;
  }

  .promo-thumb {
    border-radius: 4px;
    border-width: 1.5px;
  }
}

/* =============================================================================
   LIGHTBOX - Full-screen image viewer with slider
   ============================================================================= */

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-slide {
  position: absolute;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.lightbox-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.lightbox-slide img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Lightbox close button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

/* Lightbox navigation buttons */
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10001;
}

.lightbox-btn:hover {
  background: rgba(139, 92, 246, 0.6);
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-btn svg {
  width: 28px;
  height: 28px;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Lightbox dots */
.lightbox-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10001;
}

.lightbox-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.lightbox-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.lightbox-dot.active {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
  transform: scale(1.2);
}

/* Image counter */
.lightbox-counter {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  z-index: 10001;
}

/* Slider images clickable */
.promo-slide img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

@media (hover: hover) {
  .promo-slide img:hover {
    transform: scale(1.02);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .lightbox-btn {
    width: 44px;
    height: 44px;
  }

  .lightbox-btn svg {
    width: 22px;
    height: 22px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .lightbox-close svg {
    width: 20px;
    height: 20px;
  }

  .lightbox-dots {
    bottom: 20px;
    gap: 10px;
  }

  .lightbox-dot {
    width: 10px;
    height: 10px;
  }

  .lightbox-counter {
    bottom: 20px;
    right: 20px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .lightbox-container {
    max-width: 95vw;
  }

  .lightbox-btn {
    width: 36px;
    height: 36px;
  }

  .lightbox-btn svg {
    width: 18px;
    height: 18px;
  }

  .lightbox-prev {
    left: 5px;
  }

  .lightbox-next {
    right: 5px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }

  .lightbox-close svg {
    width: 18px;
    height: 18px;
  }

  .lightbox-dots {
    bottom: 15px;
    gap: 8px;
  }

  .lightbox-dot {
    width: 8px;
    height: 8px;
  }

  .lightbox-counter {
    bottom: 15px;
    right: 15px;
    font-size: 11px;
  }
}
