/* ============================================
   MMI Pro Trading
   Complete Stylesheet
   Premium Dark Theme with Glassmorphism
   ============================================ */

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   0. CSS CUSTOM PROPERTIES (Design Tokens)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --bg-primary: #060B18;
  --bg-secondary: #0D1425;
  --bg-tertiary: #141C32;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --surface-border: rgba(255, 255, 255, 0.08);
  --gold: #FFD700;
  --gold-dark: #B8860B;
  --green: #00E676;
  --green-dark: #00C853;
  --purple: #7C4DFF;
  --purple-dark: #651FFF;
  --cyan: #00BCD4;
  --cyan-dark: #0097A7;
  --red: #FF5252;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Inter', sans-serif;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   1. RESET & BASE STYLES
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  background-color: var(--bg-primary);
  font-family: var(--font-ar);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html[data-lang='en'] body {
  font-family: var(--font-en);
  direction: ltr;
}

html[data-lang='en'] {
  direction: ltr;
}

::selection {
  background-color: rgba(255, 215, 0, 0.3);
  color: var(--gold);
}

::-moz-selection {
  background-color: rgba(255, 215, 0, 0.3);
  color: var(--gold);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 215, 0, 0.5);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 215, 0, 0.3) var(--bg-primary);
}

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

button {
  font-family: inherit;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   2. TYPOGRAPHY
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 50%, var(--text-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

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

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   3. CONTAINER & LAYOUT
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 100px 0;
  position: relative;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   4. NAVBAR
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled {
  background: rgba(6, 11, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--surface-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
}

.logo-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}

html[data-lang='en'] .nav-links a::after {
  right: auto;
  left: 0;
}

.nav-links a:hover {
  color: var(--gold);
}

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

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

.lang-toggle {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.lang-toggle:hover {
  background: var(--gold);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
}

#mobileMenuBtn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.3s ease;
}

#mobileMenuBtn:hover {
  color: var(--gold);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-left: 1px solid var(--surface-border);
  overflow-y: auto;
}

html[data-lang='en'] .mobile-menu {
  right: auto;
  left: -100%;
  border-left: none;
  border-right: 1px solid var(--surface-border);
}

.mobile-menu.active {
  right: 0;
}

html[data-lang='en'] .mobile-menu.active {
  right: auto;
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--surface-border);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0.25rem;
}

.mobile-menu-close:hover {
  color: var(--text-primary);
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.mobile-menu-links a {
  display: block;
  padding: 1rem 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--surface-border);
}

.mobile-menu-links a:hover {
  color: var(--gold);
  padding-right: 1rem;
}

html[data-lang='en'] .mobile-menu-links a:hover {
  padding-right: 0;
  padding-left: 1rem;
}

.mobile-menu-cta {
  margin-top: auto;
}

.mobile-menu-cta .nav-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   5. HERO SECTION
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, var(--bg-secondary) 0%, var(--bg-primary) 70%);
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(124, 77, 255, 0.03) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease forwards;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-badge svg,
.hero-badge i {
  width: 18px;
  height: 18px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25);
  text-decoration: none;
  font-family: inherit;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.hero-cta:active {
  transform: translateY(-1px);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--text-secondary);
  background: transparent;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: inherit;
}

.hero-cta-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--surface-border);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   6. ABOUT SECTION
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#about {
  background: var(--bg-primary);
}

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

.about-content {
  order: 1;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: start;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.about-points {
  list-style: none;
  padding: 0;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--surface-border);
  transition: all 0.3s ease;
}

.about-point:hover {
  border-color: rgba(255, 215, 0, 0.3);
  background: var(--surface-hover);
  transform: translateX(-5px);
}

html[data-lang='en'] .about-point:hover {
  transform: translateX(5px);
}

.about-point-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
  color: var(--gold);
}

.about-point-icon svg {
  width: 22px;
  height: 22px;
}

.about-point-text {
  font-weight: 600;
  font-size: 0.95rem;
}

.about-visual {
  position: relative;
  order: 2;
}

.about-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--surface-border);
  overflow: hidden;
  position: relative;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative chart visualization */
.about-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 200px;
  padding: 1rem 0;
  gap: 8px;
}

.about-chart-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  transition: all 0.5s ease;
  position: relative;
  min-width: 20px;
}

.about-chart-bar:nth-child(1) {
  height: 40%;
  background: linear-gradient(to top, var(--green-dark), var(--green));
}

.about-chart-bar:nth-child(2) {
  height: 65%;
  background: linear-gradient(to top, var(--gold-dark), var(--gold));
}

.about-chart-bar:nth-child(3) {
  height: 45%;
  background: linear-gradient(to top, var(--cyan-dark), var(--cyan));
}

.about-chart-bar:nth-child(4) {
  height: 80%;
  background: linear-gradient(to top, var(--purple-dark), var(--purple));
}

.about-chart-bar:nth-child(5) {
  height: 55%;
  background: linear-gradient(to top, var(--green-dark), var(--green));
}

.about-chart-bar:nth-child(6) {
  height: 90%;
  background: linear-gradient(to top, var(--gold-dark), var(--gold));
}

.about-chart-bar:nth-child(7) {
  height: 70%;
  background: linear-gradient(to top, var(--cyan-dark), var(--cyan));
}

.about-chart-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--surface-border);
}

.about-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--surface-border);
}

.about-card-stat {
  text-align: center;
}

.about-card-stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.about-card-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   7. FEATURES SECTION
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#features {
  background: var(--bg-primary);
  position: relative;
}

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 0 0 16px 16px;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Feature card nth-child coloring */
.feature-card:nth-child(1)::before,
.feature-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
}

.feature-card:nth-child(3)::before,
.feature-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.feature-card:nth-child(5)::before,
.feature-card:nth-child(6)::before {
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: var(--surface-hover);
}

.feature-card:nth-child(1):hover,
.feature-card:nth-child(2):hover {
  border-color: rgba(0, 230, 118, 0.3);
  box-shadow: 0 10px 40px rgba(0, 230, 118, 0.08);
}

.feature-card:nth-child(3):hover,
.feature-card:nth-child(4):hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.08);
}

.feature-card:nth-child(5):hover,
.feature-card:nth-child(6):hover {
  border-color: rgba(0, 188, 212, 0.3);
  box-shadow: 0 10px 40px rgba(0, 188, 212, 0.08);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-card:nth-child(1) .feature-icon,
.feature-card:nth-child(2) .feature-icon {
  background: rgba(0, 230, 118, 0.1);
  color: var(--green);
}

.feature-card:nth-child(3) .feature-icon,
.feature-card:nth-child(4) .feature-icon {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
}

.feature-card:nth-child(5) .feature-icon,
.feature-card:nth-child(6) .feature-icon {
  background: rgba(0, 188, 212, 0.1);
  color: var(--cyan);
}

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

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   8. PRICING SECTION (Most Important)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#pricing {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 30%, var(--bg-secondary) 70%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

#pricing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

#pricing::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.01'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.pricing-grid.groups-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 2rem !important;
}

.groups-grid .pricing-card {
  flex: 0 1 360px !important;
  width: 100% !important;
  max-width: 380px !important;
}

.pricing-category-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  margin-top: 4rem;
  position: relative;
}
.pricing-category-title:first-of-type {
  margin-top: 0;
}

.indicator-promo-section {
  text-align: center;
  margin: 4rem auto 2rem auto;
  padding: 3rem 2rem;
  background: rgba(255, 215, 0, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  max-width: 900px;
}
.indicator-promo-title {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 2rem;
}
.indicator-promo-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: right;
  padding: 0;
}
[dir="ltr"] .indicator-promo-features {
  text-align: left;
}
.indicator-promo-features li {
  font-size: 1.1rem;
  color: var(--text-secondary);
}
.indicator-promo-desc {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
}

.pricing-card {
  position: relative;
  background: var(--bg-secondary);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--surface-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 1;
}

/* Gradient border pseudo-element */
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Shimmer effect */
.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.pricing-card:hover::after {
  left: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

/* â”€â”€ SCALPING Card â”€â”€ */
.pricing-card.scalping::before {
  background: linear-gradient(135deg, var(--green), var(--green-dark), transparent, transparent);
}

.pricing-card.scalping:hover {
  border-color: rgba(0, 230, 118, 0.4);
  box-shadow: 0 20px 60px rgba(0, 230, 118, 0.1);
}

.pricing-card.scalping:hover::before {
  opacity: 1;
}

.pricing-card.scalping .card-icon {
  background: rgba(0, 230, 118, 0.15);
  color: var(--green);
}

.pricing-card.scalping .current-price {
  color: var(--green);
}

.pricing-card.scalping .card-cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #000;
}

.pricing-card.scalping .card-cta:hover {
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.3);
}

.pricing-card.scalping .card-badge {
  background: rgba(0, 230, 118, 0.1);
  color: var(--green);
}

/* â”€â”€ VIP Card â”€â”€ */
.pricing-card.vip {
  transform: scale(1.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.08);
}

.pricing-card.vip::before {
  background: linear-gradient(135deg, var(--gold), var(--purple), var(--gold));
  opacity: 0.5;
}

.pricing-card.vip:hover {
  transform: scale(1.05) translateY(-10px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 30px 80px rgba(255, 215, 0, 0.15);
}

.pricing-card.vip:hover::before {
  opacity: 1;
}

.pricing-card.vip .card-icon {
  background: rgba(255, 215, 0, 0.15);
  color: var(--gold);
}

.pricing-card.vip .current-price {
  color: var(--gold);
}

.pricing-card.vip .card-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
}

.pricing-card.vip .card-cta:hover {
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.pricing-card.vip .card-badge {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
}

/* â”€â”€ INDICATOR Card â”€â”€ */
.pricing-card.indicator::before {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark), transparent, transparent);
}

.pricing-card.indicator:hover {
  border-color: rgba(0, 188, 212, 0.4);
  box-shadow: 0 20px 60px rgba(0, 188, 212, 0.1);
}

.pricing-card.indicator:hover::before {
  opacity: 1;
}

.pricing-card.indicator .card-icon {
  background: rgba(0, 188, 212, 0.15);
  color: var(--cyan);
}

.pricing-card.indicator .current-price {
  color: var(--cyan);
}

.pricing-card.indicator .card-cta {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: #000;
}

.pricing-card.indicator .card-cta:hover {
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.3);
}

.pricing-card.indicator .card-badge {
  background: rgba(0, 188, 212, 0.1);
  color: var(--cyan);
}

/* â”€â”€ Popular Badge â”€â”€ */
.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  padding: 0.4rem 1.5rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* â”€â”€ Card Structure â”€â”€ */
.card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: all 0.3s ease;
}

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

.card-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.card-price {
  text-align: center;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--surface-border);
}

.original-price {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  display: block;
}

.current-price {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  line-height: 1.2;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

.discount-badge {
  display: inline-block;
  background: rgba(255, 82, 82, 0.15);
  color: var(--red);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.card-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.card-feature svg {
  color: var(--green);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.card-feature .feature-check {
  color: var(--green);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.card-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  font-family: inherit;
}

.card-cta:hover {
  transform: translateY(-2px);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   9. TESTIMONIALS SECTION
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#testimonials {
  background: var(--bg-primary);
  overflow: hidden;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 -1rem;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 1rem;
}

.testimonial-inner {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-inner::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 5rem;
  color: rgba(255, 215, 0, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

html[data-lang='en'] .testimonial-inner::before {
  right: auto;
  left: 2rem;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.slider-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 215, 0, 0.05);
}

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

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover {
  background: rgba(255, 215, 0, 0.5);
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   10. FAQ SECTION
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#faq {
  background: var(--bg-primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-item.active {
  border-color: rgba(255, 215, 0, 0.3);
  background: var(--surface-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-align: right;
  font-family: inherit;
  gap: 1rem;
  transition: color 0.3s ease;
  line-height: 1.6;
}

html[data-lang='en'] .faq-question {
  text-align: left;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--text-muted);
}

.faq-chevron svg {
  width: 20px;
  height: 20px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

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

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

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   11. CONTACT SECTION
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#contact {
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card.telegram:hover, .contact-card.telegram-card:hover {
  border-color: rgba(0, 136, 204, 0.4);
  box-shadow: 0 15px 40px rgba(0, 136, 204, 0.1);
}

.contact-card.whatsapp:hover, .contact-card.whatsapp-card:hover {
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.1);
}

.contact-card.facebook-card:hover {
  border-color: rgba(24, 119, 242, 0.4);
  box-shadow: 0 15px 40px rgba(24, 119, 242, 0.1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.contact-card.telegram .contact-icon, .contact-card.telegram-card .contact-icon {
  background: rgba(0, 136, 204, 0.1);
  color: #0088cc;
}

.contact-card.whatsapp .contact-icon, .contact-card.whatsapp-card .contact-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.contact-card.facebook-card .contact-icon {
  background: rgba(24, 119, 242, 0.1);
  color: #1877F2;
}

.contact-icon svg {
  width: 35px;
  height: 35px;
}

.contact-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.contact-btn.telegram-btn {
  background: rgba(0, 136, 204, 0.15);
  color: #0088cc;
  border: 1px solid rgba(0, 136, 204, 0.3);
}

.contact-btn.telegram-btn:hover {
  background: rgba(0, 136, 204, 0.25);
  border-color: rgba(0, 136, 204, 0.5);
  transform: translateY(-2px);
}

.contact-btn.whatsapp-btn {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.contact-btn.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   12. FOOTER
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--surface-border);
  padding: 3rem 0 1.5rem;
}

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

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo svg {
  width: 28px;
  height: 28px;
}

.footer-desc {
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.7;
  font-size: 0.9rem;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-primary);
}

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

.footer-link {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: var(--gold);
  transform: translateX(-5px);
}

html[data-lang='en'] .footer-link:hover {
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--surface-border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   13. PAYMENT MODAL
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#paymentModal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3000;
  display: none;
  justify-content: center;
  align-items: center;
}

#paymentModal.active {
  display: flex;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Modal scrollbar */
.modal-content::-webkit-scrollbar {
  width: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.2);
  border-radius: 4px;
}

.modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

html[data-lang='en'] .modal-close {
  left: auto;
  right: 1rem;
}

.modal-close:hover {
  color: var(--text-primary);
  background: var(--surface);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.modal-plan-info {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  border: 1px solid var(--surface-border);
}

.modal-plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.modal-plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.payment-methods {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-option {
  flex: 1;
  background: var(--surface);
  border: 2px solid var(--surface-border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  border-color: rgba(255, 215, 0, 0.3);
  background: var(--surface-hover);
}

.payment-option.active {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.05);
}

.payment-option-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.payment-option-label {
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
}

.payment-details {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--surface-border);
}

.payment-details.hidden {
  display: none;
}

.payment-step {
  margin-bottom: 1rem;
}

.payment-step:last-child {
  margin-bottom: 0;
}

.payment-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

html[data-lang='en'] .payment-step-number {
  margin-left: 0;
  margin-right: 0.5rem;
}

.payment-step-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.wallet-address-container {
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  gap: 0.5rem;
  border: 1px solid var(--surface-border);
  margin-top: 0.5rem;
}

.wallet-address {
  flex: 1;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  word-break: break-all;
  color: var(--text-secondary);
  user-select: all;
  line-height: 1.5;
}

.copy-btn {
  background: rgba(255, 215, 0, 0.15);
  color: var(--gold);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 0.85rem;
  font-family: inherit;
}

.copy-btn:hover {
  background: rgba(255, 215, 0, 0.25);
}

.copy-btn.copied {
  background: rgba(0, 230, 118, 0.15);
  color: var(--green);
}

.qr-placeholder {
  width: 150px;
  height: 150px;
  margin: 1rem auto;
  background: var(--surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--surface-border);
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-direction: column;
  gap: 0.5rem;
}

.qr-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

.payment-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.7;
  padding: 0.75rem;
  background: rgba(255, 82, 82, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 82, 82, 0.1);
}

.modal-contact {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.modal-contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.modal-contact-btn.telegram {
  background: rgba(0, 136, 204, 0.15);
  color: #0088cc;
  border: 1px solid rgba(0, 136, 204, 0.3);
}

.modal-contact-btn.telegram:hover {
  background: rgba(0, 136, 204, 0.25);
}

.modal-contact-btn.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.modal-contact-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
}

.modal-contact-btn svg {
  width: 18px;
  height: 18px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   14. ANIMATIONS
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes borderGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Scroll-triggered animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

.fade-in-delay-5 {
  transition-delay: 0.5s;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   15. RESPONSIVE DESIGN
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â”€â”€ Large tablets / Small desktops â”€â”€ */
@media (max-width: 1024px) {
  .pricing-grid,
  .groups-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .indicator-promo-features {
    grid-template-columns: 1fr;
  }

  .pricing-card.vip {
    transform: none;
    order: -1;
  }

  .pricing-card.vip:hover {
    transform: translateY(-10px);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    order: 1;
  }

  .about-content {
    order: 2;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .hero-stats {
    gap: 2rem;
  }
}

/* â”€â”€ Tablets â”€â”€ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  #mobileMenuBtn {
    display: block;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }

  .stat-number {
    font-size: 2rem;
  }

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

  .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* â”€â”€ Small phones â”€â”€ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .container {
    padding: 0 1rem;
  }

  .nav-container {
    padding: 0.75rem 1rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .current-price {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about-point {
    padding: 0.75rem;
  }

  .about-point-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .testimonial-inner::before {
    font-size: 3rem;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   16. LTR OVERRIDES (English Language)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
html[data-lang='en'] body {
  font-family: var(--font-en);
  direction: ltr;
}

html[data-lang='en'] .faq-question {
  text-align: left;
}

html[data-lang='en'] .about-title {
  text-align: start;
}

html[data-lang='en'] .hero-badge {
  direction: ltr;
}

html[data-lang='en'] .pricing-card {
  direction: ltr;
}

html[data-lang='en'] .card-feature {
  direction: ltr;
}

html[data-lang='en'] .testimonial-inner {
  direction: ltr;
}

html[data-lang='en'] .mobile-menu-links a:hover {
  padding-right: 0;
  padding-left: 1rem;
}

html[data-lang='en'] .modal-close {
  left: auto;
  right: 1rem;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   17. UTILITY CLASSES
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.text-gold {
  color: var(--gold);
}

.text-green {
  color: var(--green);
}

.text-cyan {
  color: var(--cyan);
}

.text-purple {
  color: var(--purple);
}

.text-red {
  color: var(--red);
}

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

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

.text-secondary {
  color: var(--text-secondary);
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   18. PRELOADER (Optional)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--surface-border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   19. BACK TO TOP BUTTON
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

html[data-lang='en'] .back-to-top {
  left: auto;
  right: 2rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}
}

/* -------------------------------------------
   20. HOVER & FOCUS STATES
   ────────────────────────────────────────────────────────────────────────── */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .pricing-card:hover {
    transform: none;
  }

  .pricing-card.vip {
    transform: none;
  }

  .pricing-card.vip:hover {
    transform: none;
  }

  .feature-card:hover {
    transform: none;
  }

  .contact-card:hover {
    transform: none;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   21. HTML CLASS COMPATIBILITY
   (Bridge HTML class names to CSS styles)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Navigation */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-menu-content a {
  display: block;
  padding: 1rem 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--surface-border);
}

.mobile-menu-content a:hover {
  color: var(--gold);
}

.mobile-nav-cta {
  display: flex !important;
  justify-content: center;
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000 !important;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-link.active {
  color: var(--gold);
}

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

/* Hero extras */
.hero-container {
  width: 100%;
}

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

.hero-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 215, 0, 0.04);
  top: 10%;
  right: 10%;
}

.hero-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(124, 77, 255, 0.04);
  bottom: 20%;
  left: 10%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-family: inherit;
  border: none;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

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

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--surface-border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: float 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: fadeInDown 1.5s ease-in-out infinite;
}

/* About section - grid alias */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header {
  text-align: center;
  margin-bottom: 1rem;
}

.about-description {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.about-point-text h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.about-point-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Trading Card Visual */
.trading-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--surface-border);
  position: relative;
  overflow: hidden;
}

.trading-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.pair-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.pair-badge {
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pair-badge-long {
  background: rgba(0, 230, 118, 0.15);
  color: var(--green);
}

.trading-card-profit {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
}

.trading-chart-visual {
  margin: 1rem 0;
  border-radius: 8px;
  overflow: hidden;
}

.trading-card-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--surface-border);
}

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

.detail-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.detail-value {
  font-weight: 700;
  font-size: 0.9rem;
}

.target-value {
  color: var(--green);
}

.stop-value {
  color: var(--red);
}

.trading-card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.about-visual-dots {
  display: none;
}

/* Pricing - HTML class aliases */
.pricing-card-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.scalping-badge {
  background: rgba(0, 230, 118, 0.1);
  color: var(--green);
}

.vip-badge {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
}

.indicator-badge {
  background: rgba(0, 188, 212, 0.1);
  color: var(--cyan);
}

.pricing-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.pricing-card.scalping .pricing-card-icon {
  background: rgba(0, 230, 118, 0.15);
}

.pricing-card.vip .pricing-card-icon {
  background: rgba(255, 215, 0, 0.15);
}

.pricing-card.indicator .pricing-card-icon {
  background: rgba(0, 188, 212, 0.15);
}

.pricing-plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.pricing-price-wrapper {
  text-align: center;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--surface-border);
}

.current-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-features li svg {
  flex-shrink: 0;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  font-family: inherit;
}

.scalping-cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #000;
}

.scalping-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.3);
}

.vip-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
}

.vip-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.indicator-cta {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: #000;
}

.indicator-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.3);
}

/* Testimonials - HTML class aliases */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 215, 0, 0.05);
}

.testimonial-prev {
  right: -0.5rem;
}

.testimonial-next {
  left: -0.5rem;
}

html[data-lang='en'] .testimonial-prev {
  right: auto;
  left: -0.5rem;
}

html[data-lang='en'] .testimonial-next {
  left: auto;
  right: -0.5rem;
}

.testimonials-slider {
  overflow: hidden;
}

.testimonial-card .testimonial-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 1rem;
}

.author-role {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card .testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Payment modal - HTML class aliases */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3000;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.payment-methods-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.payment-options {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-option svg {
  display: block;
  margin: 0 auto 0.5rem;
}

.payment-option span {
  font-weight: 600;
  font-size: 0.9rem;
}

.payment-instructions {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  white-space: pre-wrap;
  line-height: 1.6;
}

.wallet-address-wrapper {
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  border: 1px solid var(--surface-border);
  margin-bottom: 1rem;
}

.wallet-address-wrapper code {
  flex: 1;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  word-break: break-all;
  color: var(--text-secondary);
  user-select: all;
}

.wallet-address-wrapper .copy-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.payment-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: start;
  line-height: 1.7;
  padding: 1rem;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  margin-bottom: 1.5rem;
}

.payment-note svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.payment-contact {
  display: flex;
  gap: 1rem;
}

.payment-contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.payment-contact-btn.telegram-btn {
  background: rgba(0, 136, 204, 0.15);
  color: #0088cc;
  border: 1px solid rgba(0, 136, 204, 0.3);
}

.payment-contact-btn.telegram-btn:hover {
  background: rgba(0, 136, 204, 0.25);
}

.payment-contact-btn.whatsapp-btn {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.payment-contact-btn.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.25);
}

/* Contact section - HTML extras */
.contact-card a.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Footer - HTML class aliases */
.footer-links-section {
  text-align: start;
}

.footer-contact-section {
  text-align: start;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
}

.footer-contact li svg {
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--gold);
}

/* Responsive overrides for HTML classes */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .testimonial-nav {
    display: none;
  }

  .payment-options {
    flex-direction: column;
  }

  .payment-contact {
    flex-direction: column;
  }

  .footer-links-section,
  .footer-contact-section {
    text-align: center;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   22. PRINT STYLES
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media print {
  #navbar,
  .back-to-top,
  #paymentModal,
  .mobile-menu,
  .mobile-menu-overlay,
  #particles-canvas,
  .preloader {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section-title {
    -webkit-text-fill-color: initial;
    background: none;
    color: #000;
  }

  section {
    padding: 2rem 0;
    break-inside: avoid;
  }
}

/* Force Button Styles */
button.pricing-cta { display: block !important; width: 100% !important; padding: 1rem !important; border-radius: 12px !important; border: none !important; font-size: 1.2rem !important; font-weight: 700 !important; cursor: pointer !important; text-align: center !important; font-family: 'Cairo', sans-serif !important; color: #000 !important; }
button.scalping-cta { background: linear-gradient(135deg, #00E676, #00C853) !important; }
button.vip-cta { background: linear-gradient(135deg, #FFD700, #FFC107) !important; }
button.indicator-cta { background: linear-gradient(135deg, #00BCD4, #0097A7) !important; }
