/* ===== UNIFIED DESIGN SYSTEM (MOBILE-FIRST) ===== */
:root {
  /* Colors */
  --accent: #96ef1c;
  --accent-hover: #7bc916;
  --accent-dark: #85d419;
  --bg-dark: #0f1212;
  --bg-dark-secondary: #171d1c;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-on-accent: #0f1212;

  /* Typography - Unified */
  --font-body: 'Manrope', sans-serif;
  --font-heading: 'Manrope', sans-serif;
  --font-primary: 'Manrope', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Spacing System (8px base) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Layout Spacing */
  --container-max-width: 1400px;
  --container-padding: var(--space-md);
  --section-padding-y: var(--space-3xl);
  --section-padding-x: var(--space-md);
  --section-padding-bottom: 80px;

  /* Navigation */
  --nav-height: 56px;
  --bottom-nav-height: 56px;

  /* Border Radius System */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Buttons (WCAG 2.1 touch targets) */
  --btn-min-height: 48px;
  --btn-min-width: 48px;
  --btn-padding: 14px 24px;
  --btn-font-size: 15px;

  /* Icons */
  --icon-size-sm: 14px;
  --icon-size-md: 18px;
  --icon-size-lg: 20px;

  /* Elevation/Shadow System */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.25);
  --shadow-accent: 0 4px 16px rgba(150, 239, 28, 0.25);
  --shadow-accent-hover: 0 6px 20px rgba(150, 239, 28, 0.35);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-fast: 0.2s ease;
}

/* ===== DESKTOP OVERRIDES (768px+) ===== */
@media (min-width: 768px) {
  :root {
    --container-padding: var(--space-lg, 2rem);
    --section-padding-y: var(--space-3xl, 6rem);
    --section-padding-x: var(--space-lg, 2rem);
    --section-padding-bottom: 0;
    --nav-height: 80px;
    --bottom-nav-height: 0;
    --btn-padding: 1rem 2rem;
    --btn-font-size: 16px;
    --icon-size-sm: 16px;
    --icon-size-md: 20px;
    --icon-size-lg: 24px;
  }
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  padding-top: var(--nav-height);
  padding-bottom: var(--bottom-nav-height);
}

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

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

/* ===== UTILITY CLASSES ===== */
.sv-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== NAVIGATION (MOBILE-FIRST) ===== */
.sv-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background-color: rgba(15, 18, 18, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all var(--transition);
  height: var(--nav-height);
}

.sv-navbar.scrolled {
  background-color: rgba(15, 18, 18, 0.98);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sv-navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0.8rem 1rem;
  height: var(--nav-height);
  transition: all var(--transition);
}

/* Desktop nav adjustments */
@media (min-width: 768px) {
  .sv-navbar-container {
    padding: 1rem 2rem;
    height: 80px;
  }

  .sv-navbar.scrolled .sv-navbar-container {
    padding: 0.7rem 2rem;
    height: 70px;
  }
}

/* Logo */
.sv-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
}

.sv-logo-image {
  height: 70px;
  width: auto;
  transition: all var(--transition);
}

.sv-navbar.scrolled .sv-logo-image {
  height: 60px;
}

.sv-logo-text {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all var(--transition);
}

.sv-logo-trades {
  margin-left: 3px;
}

.sv-navbar.scrolled .sv-logo-text {
  font-size: 16px;
}

.sv-logo-link:hover .sv-logo-text {
  color: var(--accent);
}

/* Navigation Links */
.sv-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.sv-nav-link {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition);
}

.sv-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--transition);
}

.sv-nav-link:hover {
  color: var(--accent);
}

.sv-nav-link:hover::after {
  width: 100%;
}

/* ===== UNIFIED DROPDOWNS (MOBILE + DESKTOP) ===== */

/* Base dropdown structure (mobile-first) */
.sv-nav-dropdown,
.sv-mobile-dropdown {
  position: relative;
}

/* Dropdown toggle - works for both mobile tap and desktop hover */
.sv-dropdown-toggle,
.sv-mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  cursor: pointer;
  padding: 18px 15px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  min-height: 54px;
  background: transparent;
  width: 100%;
  text-align: left;
  transition: all var(--transition-fast);
}

.sv-dropdown-toggle:active,
.sv-mobile-dropdown-toggle:active {
  background: rgba(150,239,28,0.1);
}

/* Arrow icon */
.sv-dropdown-arrow,
.sv-mobile-dropdown-arrow {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

/* Open state (mobile uses .open class, desktop uses :hover) */
.sv-mobile-dropdown.open .sv-dropdown-arrow,
.sv-mobile-dropdown.open .sv-mobile-dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown content - mobile first */
.sv-dropdown-content,
.sv-mobile-dropdown-content {
  display: none;
  padding: 0;
  background: rgba(0,0,0,0.2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sv-mobile-dropdown.open .sv-dropdown-content,
.sv-mobile-dropdown.open .sv-mobile-dropdown-content {
  display: block;
  max-height: 2000px;
  padding: 10px 0 10px 20px;
  overflow: visible;
}

/* Dropdown items */
.sv-dropdown-item,
.sv-mobile-dropdown-item {
  display: block;
  padding: 14px 15px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: all 0.2s;
  border-left: 0 solid var(--accent);
}

.sv-dropdown-item:active,
.sv-mobile-dropdown-item:active {
  background: rgba(150,239,28,0.1);
  color: var(--accent);
}

/* Desktop dropdown overrides (768px+) */
@media (min-width: 768px) {
  .sv-nav-dropdown .sv-dropdown-toggle {
    padding: 0.5rem 0;
    font-size: 16px;
    border-bottom: none;
    min-height: auto;
    width: auto;
    justify-content: flex-start;
  }

  .sv-nav-dropdown .sv-dropdown-arrow {
    width: 14px;
    height: 14px;
  }

  .sv-nav-dropdown:hover .sv-dropdown-arrow {
    transform: rotate(180deg);
  }

  .sv-nav-dropdown .sv-dropdown-content {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(23, 29, 28, 0.95);
    backdrop-filter: blur(8px);
    min-width: 220px;
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    display: block;
    max-height: none;
    box-shadow: var(--shadow-hover);
    border-top: 2px solid var(--accent);
  }

  .sv-nav-dropdown:hover .sv-dropdown-content {
    opacity: 1;
    visibility: visible;
  }

  .sv-nav-dropdown .sv-dropdown-item {
    padding: 0.8rem 1.5rem;
    font-size: 14px;
  }

  .sv-nav-dropdown .sv-dropdown-item:hover {
    background: rgba(150, 239, 28, 0.1);
    color: var(--accent);
    border-left: 3px solid var(--accent);
    padding-left: calc(1.5rem - 3px);
  }
}

/* ===== SPLIT ITEMS & EXCEL LINKS (MOBILE-FIRST, NO !IMPORTANT) ===== */

/* Base mobile split items */
.sv-split-item,
.sv-split-item-mobile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  transition: background 0.2s;
}

.sv-split-item:hover,
.sv-split-item:active {
  background: rgba(150, 239, 28, 0.05);
}

/* Graph/results links */
.sv-dropdown-content .sv-graph-link,
.sv-mobile-dropdown-content .sv-graph-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
  flex-shrink: 0;
  min-width: 140px;
}

.sv-graph-link:hover,
.sv-graph-link:active {
  color: var(--accent);
}

/* Divider */
.sv-dropdown-content .sv-divider,
.sv-mobile-dropdown-content .sv-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  margin: 0 8px;
  flex-shrink: 0;
}

/* Excel link compact button */
.sv-dropdown-content .sv-excel-link-compact,
.sv-mobile-dropdown-content .sv-excel-link-compact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(29, 111, 66, 0.2);
  border: 1px solid rgba(29, 111, 66, 0.4);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}

.sv-excel-link-compact:hover,
.sv-excel-link-compact:active {
  background: rgba(29, 111, 66, 0.35);
  border-color: rgba(29, 111, 66, 0.6);
  transform: translateY(-1px);
}

/* Visit text */
.sv-excel-link-compact .sv-visit-text {
  font-size: 12px;
  font-weight: 600;
  color: #1D6F42;
  text-transform: capitalize;
}

/* Excel icon sizing */
.sv-excel-nav-icon,
.sv-excel-icon {
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Desktop split items adjustments */
@media (min-width: 768px) {
  .sv-nav-dropdown .sv-split-item {
    gap: 16px;
    padding: 0.8rem 1.5rem;
  }

  .sv-nav-dropdown .sv-graph-link {
    min-width: 160px;
  }

  .sv-nav-dropdown .sv-divider {
    margin: 0 12px;
  }

  .sv-nav-dropdown .sv-excel-link-compact {
    gap: 8px;
    padding: 6px 14px;
  }

  .sv-excel-link-compact .sv-visit-text {
    font-size: 13px;
  }
}

/* Language Switcher */
.sv-lang-switcher,
.navbar__lang-switcher {
  position: relative;
  z-index: 10001 !important;
}

.sv-lang-toggle,
.navbar__lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 10px;
  cursor: pointer;
  transition: color var(--transition-fast);
  position: relative;
  z-index: 10001 !important;
}

.sv-lang-toggle:hover,
.navbar__lang-toggle:hover {
  color: var(--accent);
}

.sv-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.sv-lang-dropdown,
.navbar__lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(23, 29, 28, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-hover);
  border-top: 2px solid var(--accent);
  min-width: 160px;
  z-index: 10002 !important;
  pointer-events: none;
}

.sv-lang-switcher:hover .sv-lang-dropdown,
.sv-lang-switcher:hover .navbar__lang-menu,
.navbar__lang-switcher:hover .navbar__lang-menu,
.sv-lang-switcher.open .sv-lang-dropdown,
.sv-lang-switcher.open .navbar__lang-menu,
.navbar__lang-switcher.open .navbar__lang-menu,
.sv-desktop-lang-switcher.open .navbar__lang-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  display: block !important;
}

.sv-lang-option,
.navbar__lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
}

.sv-lang-option:hover,
.navbar__lang-option:hover {
  background: rgba(150, 239, 28, 0.1);
  color: var(--accent);
}

/* CTA Button */
.sv-cta-button {
  background: var(--accent);
  color: var(--text-on-accent);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.85rem 2rem;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
  box-shadow: 0 4px 12px rgba(150, 239, 28, 0.15);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sv-cta-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(150, 239, 28, 0.25);
}

/* Telegram CTA variant - blue instead of green */
.sv-cta-button.sv-cta-telegram {
  background: #0088cc;
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.15);
}

.sv-cta-button.sv-cta-telegram:hover {
  background: #0099e6;
  box-shadow: 0 6px 16px rgba(0, 136, 204, 0.25);
}

/* Mobile Toggle */
.sv-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.sv-burger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
}

/* Mobile Menu */
.sv-mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(15, 18, 18, 0.98);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 9999;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.sv-navbar.mobile-active .sv-mobile-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.sv-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sv-mobile-link {
  font-size: 18px;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--transition-fast);
}

.sv-mobile-link:hover {
  color: var(--accent);
}

/* ===== HERO SECTION ===== */
.sv-hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
}

.sv-hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.sv-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.sv-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(149, 239, 28, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(149, 239, 28, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}

.sv-accent-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(149, 239, 28, 0.2), transparent);
  height: 1px;
  width: 100%;
  opacity: 0.5;
}

.sv-accent-line-1 {
  top: 15%;
  left: -5%;
  transform: rotate(-5deg);
  width: 110%;
}

.sv-accent-line-2 {
  bottom: 25%;
  left: -5%;
  transform: rotate(3deg);
  width: 110%;
}

.sv-hero-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.sv-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.sv-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
}

.sv-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.sv-primary-btn {
  background: var(--accent);
  color: var(--text-on-accent);
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 1rem 2rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sv-primary-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.sv-secondary-btn {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-secondary);
  padding: 1rem 2rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.sv-secondary-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Video Section */
.sv-video-container {
  position: relative;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.sv-video-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sv-video-corner {
  position: absolute;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--accent);
}

.sv-corner-tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.sv-corner-tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.sv-corner-bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.sv-corner-br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.sv-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.sv-video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all var(--transition);
}

.sv-video-thumbnail:hover {
  transform: scale(1.02);
}

.sv-thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.sv-logo-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.sv-logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-logo-circle img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.sv-video-title-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  left: 5rem;
}

.sv-video-title {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.sv-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(150, 239, 28, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.sv-play-button:hover {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.1);
}

.sv-play-icon {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

/* Stats Section */
.sv-stats-container {
  margin-top: 4rem;
}

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

.sv-stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(150, 239, 28, 0.1);
  transition: all var(--transition);
}

.sv-stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.sv-stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}

.sv-stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Features Section */
.sv-features-section {
  padding: var(--section-padding);
  background: var(--bg-dark-secondary);
}

.sv-section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
}

.sv-section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.sv-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(150, 239, 28, 0.1);
}

.sv-feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.sv-feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.sv-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sv-feature-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */
/* Mobile styles moved to mobile.css for better organization */

/* ===== PRICING SECTION ===== */
.sv-pricing-section {
  padding: 120px 0;
  background: var(--bg-dark);
}

.sv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.sv-pricing-card {
  background: var(--bg-dark-secondary);
  border: 1px solid rgba(150, 239, 28, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.sv-pricing-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.sv-pricing-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(150, 239, 28, 0.15);
  transform: translateY(-8px);
}

.sv-pricing-card.sv-featured {
  border-color: var(--accent);
  transform: scale(1.05);
}

.sv-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-mono);
}

.sv-plan-header {
  margin-bottom: 2rem;
}

.sv-plan-name {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sv-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.sv-currency {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 600;
}

.sv-price {
  color: var(--accent);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.sv-period {
  color: var(--text-secondary);
  font-size: 1rem;
}

.sv-plan-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.sv-plan-features li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.sv-plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.sv-plan-button {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-dark);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  width: 100%;
  text-align: center;
}

.sv-plan-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(150, 239, 28, 0.3);
}

/* Performance Chart */
.sv-performance-section {
  margin-top: 4rem;
  text-align: center;
}

.sv-performance-title {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.sv-chart-container {
  background: var(--bg-dark-secondary);
  border: 1px solid rgba(150, 239, 28, 0.2);
  border-radius: 12px;
  padding: 2rem;
  height: 400px;
  position: relative;
}

/* ===== TRACK RECORD SECTION ===== */
.sv-track-record-section {
  padding: 120px 0;
  background: var(--bg-dark-secondary);
}

.sv-track-record-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.sv-track-card {
  background: var(--bg-dark);
  border: 1px solid rgba(150, 239, 28, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.sv-track-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.sv-track-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.sv-track-card h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.sv-track-stats {
  display: flex;
  justify-content: space-around;
  margin: 1.5rem 0;
}

.sv-track-stat {
  text-align: center;
}

.sv-track-value {
  display: block;
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.sv-track-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.sv-track-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.sv-track-link:hover {
  color: var(--accent-hover);
}

/* ===== FAQ SECTION ===== */
.sv-faq-section {
  padding: 120px 0;
  background: var(--bg-dark);
}

.sv-faq-grid {
  max-width: 800px;
  margin: 3rem auto 0;
}

.sv-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
}

.sv-faq-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.sv-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  user-select: none;
}

.sv-faq-question h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.sv-faq-toggle {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform var(--transition);
}

.sv-faq-item.open .sv-faq-toggle {
  transform: rotate(45deg);
}

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

.sv-faq-item.open .sv-faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.sv-faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ===== COMMUNITY SECTION ===== */
.sv-community-section {
  padding: 120px 0;
  background: var(--accent);
  text-align: center;
}

.sv-community-content {
  max-width: 600px;
  margin: 0 auto;
}

.sv-community-section .sv-section-title {
  color: var(--bg-dark);
}

.sv-community-section .sv-section-subtitle {
  color: rgba(15, 18, 18, 0.8);
}

.sv-community-section .sv-primary-btn {
  background: var(--bg-dark);
  color: var(--accent);
}

.sv-community-section .sv-primary-btn:hover {
  background: var(--bg-dark-secondary);
  transform: translateY(-3px);
}

/* ===== FOOTER STYLES ===== */
.sv-footer {
  background: var(--bg-dark-secondary);
  padding: 4rem 0 2rem;
}

.sv-footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.sv-footer-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sv-footer-logo a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.sv-footer-logo span {
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.1rem;
}

.sv-footer-social {
  display: flex;
  gap: 1rem;
}

.sv-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(150, 239, 28, 0.1);
  border: 1px solid rgba(150, 239, 28, 0.3);
  border-radius: 50%;
  color: var(--accent);
  text-decoration: none;
  transition: all var(--transition);
}

.sv-footer-social a:hover {
  background: var(--accent);
  color: var(--bg-dark);
  transform: scale(1.1);
}

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

.sv-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.sv-footer-column h4 {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.sv-footer-column ul {
  list-style: none;
  padding: 0;
}

.sv-footer-column li {
  margin-bottom: 0.5rem;
}

.sv-footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

.sv-footer-column a:hover {
  color: var(--accent);
}

.sv-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sv-footer-disclaimer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.sv-age-warning {
  background: var(--accent);
  color: var(--bg-dark);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.75rem;
}

.sv-footer-copyright {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Extra small mobile styles moved to mobile.css */
/* ===== Channel Proof Section ===== */
.proof.container{max-width:1100px;margin:0 auto;padding:64px 16px}
.proof__header{display:grid;gap:16px;grid-template-columns:1fr;align-items:start}
@media (min-width:900px){.proof__header{grid-template-columns:1fr auto;align-items:center}}
.proof__header h2{font-size:2rem;margin:0 0 4px}
.badges{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin-top:8px}
.badge{border:1px solid #e5e5e5;border-radius:999px;padding:4px 10px;font-size:.85rem;background:#fff}
.updated{color:#6b7280;font-size:.85rem;margin-left:4px}
.cta-row{display:flex;gap:10px}
.btn{border-radius:14px;padding:10px 14px;text-decoration:none;font-weight:600;display:inline-block}
.btn-primary{background:#111;color:#fff}.btn-secondary{background:#fff;color:#111;border:1px solid #e5e5e5}
.proof__grid{display:grid;gap:16px;margin-top:24px}
@media (min-width:900px){.proof__grid{grid-template-columns:1fr 1fr 1fr}}
.proof-card,.summary-card{border:1px solid #eee;border-radius:16px;padding:12px;background:rgba(255,255,255,.9);box-shadow:0 1px 3px rgba(0,0,0,.05)}
.proof-card__media{position:relative;overflow:hidden;border-radius:12px;aspect-ratio:3/4}
.proof-card__media img{width:100%;height:100%;object-fit:cover;cursor:zoom-in;transition:transform .2s}
.proof-card__media img:hover{transform:scale(1.02)}
.proof-card__meta{display:flex;gap:8px;align-items:center;margin-top:8px}
.proof-card .views{margin-left:auto;color:#6b7280;font-size:.85rem}
.proof-card__title{font-size:1rem;margin:8px 0 4px}
.proof-card__subtitle{margin:0 0 8px;color:#4b5563;font-size:.95rem}
.proof-card__footer{display:flex;justify-content:space-between;color:#6b7280;font-size:.85rem}
.summary-card{display:flex;flex-direction:column;justify-content:space-between;padding:20px}
.summary-card h3{font-size:1.25rem;margin:0}
.summary-line{margin:8px 0 4px;font-size:1rem}
.summary-sub{margin:0 0 8px}.disclaimer{font-size:.8rem;color:#6b7280}
.summary-ctas{display:flex;gap:8px;margin-top:12px}
/* Lightbox */
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,.7);display:none;align-items:center;justify-content:center;padding:16px;z-index:9999}
.lightbox.open{display:flex}
.lightbox__img{max-width:95vw;max-height:85vh;border-radius:12px;background:#fff}
.lightbox__close{position:absolute;top:12px;right:12px;background:#fff;border:0;border-radius:999px;padding:8px;cursor:pointer}

/* ===== Slim How-It-Works Section ===== */
.how.container{max-width:1100px;margin:0 auto;padding:40px 16px}
.how__grid{display:grid;gap:16px}
@media (min-width:900px){.how__grid{grid-template-columns:repeat(3,1fr)}}
.how__grid li{border:1px solid rgba(150, 239, 28, 0.2);border-radius:16px;padding:16px;background:rgba(23, 29, 28, 0.6)}
.how__icon{font-size:1.5rem}
.how h3{margin:8px 0 6px;font-size:1.05rem;color:#fff}
.how p{margin:0;color:#d1d5db}

/* ===== Track Record Stripe Section (Estimate your Profits) ===== */
.sv-track-record-stripe {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f1212 0%, #171d1c 100%);
  font-family: 'Manrope', sans-serif !important;
}

.sv-track-record-stripe * {
  font-family: 'Manrope', sans-serif !important;
}

.sv-tr-header {
  text-align: center;
  margin-bottom: 48px;
}

.sv-tr-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  font-family: var(--font-primary) !important;
}

.sv-tr-subtitle {
  font-size: 1.125rem;
  color: #d1d5db;
  margin: 0;
  font-family: var(--font-primary) !important;
}

.sv-tr-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.sv-tr-tab {
  padding: 12px 24px;
  border: 2px solid rgba(150, 239, 28, 0.3);
  border-radius: 12px;
  background: rgba(23, 29, 28, 0.6);
  color: #d1d5db;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sv-tr-tab:hover {
  border-color: #96ef1c;
  background: rgba(150, 239, 28, 0.15);
}

.sv-tr-tab.active {
  border-color: #96ef1c;
  background: #96ef1c;
  color: #111827;
}

.sv-tr-tab-icon {
  font-size: 1.25rem;
}

.sv-tr-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sv-tr-tab-content {
  display: none;
  text-align: center;
}

.sv-tr-tab-content[style*="display: block"] {
  display: block !important;
}

.sv-tr-content {
  background: rgba(23, 29, 28, 0.4);
  border: 1px solid rgba(150, 239, 28, 0.2);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.sv-tr-stats {
  display: grid;
  gap: 32px;
}

.sv-tr-stat-primary {
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(150, 239, 28, 0.2);
}

.sv-tr-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #96ef1c;
  margin-bottom: 8px;
}

.sv-tr-stat-label {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 16px;
}

.sv-tr-progress {
  max-width: 400px;
  margin: 0 auto;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.sv-tr-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #96ef1c 0%, #7bc916 100%);
  transition: width 0.3s ease;
}

.sv-tr-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.sv-tr-stat-grid-2x2 {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 16px 0;
}

@media (max-width: 768px) {
  .sv-tr-stat-grid-2x2 {
    gap: 8px;
    margin: 0 0 12px 0;
  }

  .sv-tr-stat-grid-2x2 .sv-tr-stat-item {
    padding: 12px;
  }

  .sv-tr-stat-grid-2x2 .sv-tr-stat-value {
    font-size: 1.1rem;
  }

  .sv-tr-stat-grid-2x2 .sv-tr-stat-desc {
    font-size: 0.75rem;
  }
}

.sv-tr-stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(15, 18, 18, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(150, 239, 28, 0.15);
}

.sv-tr-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #96ef1c;
  margin-bottom: 8px;
}

.sv-tr-stat-desc {
  font-size: 0.875rem;
  color: #d1d5db;
}

.sv-tr-chart {
  margin-top: 16px;
  height: 200px;
}

.sv-tr-chart svg {
  width: 100%;
  height: 100%;
}

.sv-tr-spreadsheet {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  margin-top: 24px;
  background: #96ef1c;
  color: #111;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.sv-tr-spreadsheet:hover {
  background: #7bc916;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(150, 239, 28, 0.3);
}

.sv-tr-spreadsheet-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Calculator Styles */
.sv-tr-calculator {
  background: rgba(23, 29, 28, 0.6);
  border: 1px solid rgba(150, 239, 28, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin-top: 32px;
}

.sv-tr-calc-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px 0;
  text-align: center;
}

.sv-tr-input-group {
  margin-bottom: 20px;
}

.sv-tr-input-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #d1d5db;
  margin-bottom: 8px;
}

.sv-tr-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.sv-tr-input-prefix {
  position: absolute;
  left: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #96ef1c;
  pointer-events: none;
}

.sv-tr-input {
  width: 100%;
  padding: 14px 16px 14px 40px;
  background: rgba(15, 18, 18, 0.8);
  border: 1px solid rgba(150, 239, 28, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.2s;
}

.sv-tr-input:focus {
  outline: none;
  border-color: #96ef1c;
  box-shadow: 0 0 0 3px rgba(150, 239, 28, 0.1);
}

.sv-tr-result {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(150, 239, 28, 0.2);
}

.sv-tr-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.sv-tr-result-label {
  font-size: 1rem;
  color: #d1d5db;
  font-weight: 500;
}

.sv-tr-result-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.sv-tr-result-profit {
  color: #96ef1c;
}

.sv-tr-disclaimer {
  margin-top: 16px;
  padding: 12px;
  background: rgba(150, 239, 28, 0.05);
  border-radius: 8px;
  font-size: 0.85rem;
  color: #9ca3af;
  text-align: center;
  line-height: 1.5;
}

/* ============================================
   MOBILE/DESKTOP VARIANT CONTROL
   ============================================ */

/* Hide mobile-only elements on desktop */
.sv-subheadline-mobile,
.sv-stat-label-mobile,
.sv-pre-headline-mobile,
.sv-mobile-telegram-hero {
  display: none;
}

/* ============================================
   MOBILE RESPONSIVE OVERRIDES
   ============================================ */

@media (max-width: 768px) {
  /* PROFIT CALCULATOR - WORLD-CLASS MOBILE DESIGN */

  .sv-tr-calculator {
    padding: 16px;
    margin-top: 12px;
  }

  .sv-tr-calc-title {
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 600;
  }

  .sv-tr-input-group {
    margin-bottom: 10px;
  }

  .sv-tr-input-group:last-of-type {
    margin-bottom: 0;
  }

  .sv-tr-input-label {
    font-size: 0.8rem;
    margin-bottom: 3px;
    font-weight: 500;
  }

  .sv-tr-input {
    font-size: 0.95rem;
    padding: 10px 12px 10px 32px;
  }

  .sv-tr-input-prefix {
    left: 12px;
    font-size: 0.95rem;
  }

  .sv-tr-result {
    margin-top: 12px;
    padding-top: 12px;
  }

  .sv-tr-result-item {
    padding: 6px 0;
  }

  .sv-tr-result-item:first-child {
    padding-top: 0;
  }

  .sv-tr-result-item:last-of-type {
    padding-bottom: 0;
  }

  .sv-tr-result-label {
    font-size: 0.85rem;
  }

  .sv-tr-result-value {
    font-size: 1.1rem;
  }

  .sv-tr-disclaimer {
    font-size: 0.7rem;
    padding: 8px 10px;
    margin-top: 10px;
    line-height: 1.3;
  }

  /* ============================================
     ADDITIONAL MOBILE STYLES FROM MOBILE.CSS
     Merged here so Vite bundles everything
     ============================================ */

  /* Hide mobile-only variants on desktop handled outside media query */

  /* Mobile Menu */
  .sv-mobile-menu {
    display: block;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 56px; /* Account for bottom nav */
    width: 100%;
    background: rgba(15,18,18,0.98);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 9999;
    padding: 20px;
    padding-bottom: 20px;
    max-height: none;
    height: auto;
    opacity: 1;
    visibility: visible;
  }

  .sv-navbar.mobile-active .sv-mobile-menu {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  /* Mobile menu links container */
  .sv-mobile-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }

  /* Mobile dropdown content - ensure full expansion */
  .sv-mobile-dropdown.open .sv-mobile-dropdown-content {
    max-height: none !important;
    overflow: visible !important;
  }

  /* Mobile Navigation Toggle - HIDDEN on mobile */
  .sv-mobile-toggle {
    display: none !important;
  }

  /* Hide mobile menu since hamburger is hidden */
  .sv-mobile-menu {
    display: none !important;
  }

  .sv-nav-links {
    display: none;
  }

  /* Move language selector to the right on mobile */
  .sv-navbar .sv-desktop-lang-switcher {
    margin-left: auto;
    margin-right: 12px;
  }

  /* Hero Mobile Optimizations */
  .sv-subheadline-desktop,
  .sv-pre-headline-desktop,
  .sv-telegram-cta-desktop {
    display: none;
  }

  .sv-subheadline-mobile,
  .sv-pre-headline-mobile,
  .sv-mobile-telegram-hero {
    display: block;
  }

  .sv-stat-label-desktop {
    display: none;
  }

  .sv-stat-label-mobile {
    display: block;
  }

  /* Mobile Telegram button in hero section */
  .sv-mobile-telegram-hero {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* ============================================
     MOBILE BOTTOM NAVIGATION
     ============================================ */

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: rgba(15,18,18,0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(150,239,28,0.2);
    z-index: 9998;
    padding: 0 4px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    justify-content: space-around;
  }

  .mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px 2px;
    gap: 3px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    max-width: 80px;
  }

  .mobile-nav-item:hover,
  .mobile-nav-item:active {
    color: rgba(255,255,255,0.9);
  }

  .mobile-nav-item.active {
    color: var(--accent);
  }

  .mobile-nav-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .mobile-nav-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    white-space: nowrap;
    line-height: 1.1;
  }
}

/* ============================================
   FIX LITE BUTTON - MUST MATCH PRO/ADVANCED
   ============================================ */
.sv-pricing-card.sv-lite .sv-cta-button {
  background: var(--accent) !important;
  color: var(--text-dark-on-accent) !important;
  box-shadow: 0 5px 15px rgba(150, 239, 28, 0.3), inset 0 -2px 1px rgba(0,0,0,0.15) !important;
}

.sv-pricing-card.sv-lite .sv-cta-button:hover,
.sv-pricing-card.sv-lite .sv-cta-button:active {
  background: var(--accent-dark) !important;
  box-shadow: 0 10px 25px rgba(150, 239, 28, 0.4), inset 0 -2px 1px rgba(0,0,0,0.15) !important;
  color: #000 !important;
}

/* ============================================
   DESKTOP - HIDE MOBILE BOTTOM NAV
   ============================================ */
@media (min-width: 769px) {
  .mobile-bottom-nav {
    display: none;
  }
}
