/* Premium Prop Firm Design System */
:root {
  /* Core Brand Colors */
  --midnight-void: #0a0b1a;
  --royal-sapphire: #1a1fff;
  --imperial-purple: #2d0a5a;
  --emerald-luxury: #00cc99;
  --gold-premium: #ffd700;
  --platinum-elite: #f0f0f0;
  --onyx-dark: #0d0d1a;
  --slate-premium: #1a1a2e;
  --charcoal-rich: #2d2d44;
  
  /* Gradient Systems */
  --gradient-hero: linear-gradient(135deg, var(--midnight-void) 0%, var(--royal-sapphire) 100%);
  --gradient-section-01: linear-gradient(135deg, var(--slate-premium) 0%, var(--charcoal-rich) 100%);
  --gradient-section-02: linear-gradient(135deg, var(--midnight-void) 0%, var(--royal-sapphire) 100%);
  --gradient-card: linear-gradient(135deg, var(--onyx-dark) 0%, var(--slate-premium) 100%);
  --gradient-button-primary: linear-gradient(135deg, var(--royal-sapphire) 0%, var(--imperial-purple) 100%);
  --gradient-button-gold: linear-gradient(135deg, var(--gold-premium) 0%, #ffaa00 100%);
  
  /* Typography System */
  --font-display: 'Clash Display', 'Unica One', 'Helvetica Neue', sans-serif;
  --font-heading: 'Clash Display', 'Unica One', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-mono: 'Space Grotesk', 'Fira Code', 'Monaco', monospace;
  
  /* Spacing System */
  --spacing-3xs: 0.25rem;
  --spacing-2xs: 0.5rem;
  --spacing-xs: 0.75rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --spacing-4xl: 8rem;
  
  /* Shadow System */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  --shadow-2xl: 0 50px 100px rgba(0, 0, 0, 0.3);
  
  /* Border Radius System */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 50%;
  
  /* Transition System */
  --transition-fast: 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  --transition-medium: 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  --transition-slow: 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
  
  /* Z-Index System */
  --z-negative: -1;
  --z-0: 0;
  --z-1: 10;
  --z-2: 20;
  --z-3: 30;
  --z-4: 40;
  --z-5: 50;
  --z-6: 60;
  --z-7: 70;
  --z-8: 80;
  --z-9: 90;
  --z-10: 100;
  --z-11: 110;
  --z-max: 9999;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--midnight-void);
  color: var(--platinum-elite);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

/* Container System */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.container-narrow {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--platinum-elite);
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-md);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #c2c2d6;
  line-height: 1.7;
}

/* Navigation System */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 11, 26, 0.95);
  backdrop-filter: blur(20px);
  z-index: var(--z-10);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  padding: var(--spacing-sm) 0;
  background: rgba(10, 11, 26, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.logo a {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--emerald-luxury);
  text-decoration: none;
  letter-spacing: -0.04em;
  position: relative;
  padding-left: 1.75rem;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--emerald-luxury), var(--gold-premium));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo a:hover {
  color: var(--gold-premium);
  transform: scale(1.05);
}

.logo a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: var(--emerald-luxury);
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px var(--emerald-luxury);
  transition: all var(--transition-fast);
}

.logo a:hover::before {
  background: var(--gold-premium);
  box-shadow: 0 0 20px var(--gold-premium);
  transform: translateY(-50%) scale(1.2);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-xl);
}

.nav-links a {
  color: var(--platinum-elite);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  position: relative;
  padding: var(--spacing-2xs) 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--emerald-luxury);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-luxury);
  transition: width var(--transition-medium);
}

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

/* Mobile menu toggle - hidden by default on desktop */
.mobile-menu-toggle {
  display: none;
}

/* Show navigation links by default on desktop */
.navbar .nav-links {
  display: flex;
}

/* Hide mobile-only elements on desktop */
.navbar .mobile-only {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-medium);
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: var(--z-1);
  min-height: 56px;
  min-width: 180px;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-button-primary);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
  z-index: var(--z-negative);
}

.btn-primary:hover::before {
  left: 100%;
}

.hero-tilted {
  transform: rotate(-3deg);
  transition: transform var(--transition-medium);
}

.hero-tilted:hover {
  transform: rotate(-3deg) translateY(-4px);
}

.btn-secondary {
  background: transparent;
  color: var(--platinum-elite);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gradient-button-gold);
  color: var(--midnight-void);
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

/* Completely Redesigned Hero Section - Premium Prop Firm */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: #000000;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 5rem;
  margin-bottom: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 204, 153, 0.1) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(26, 31, 255, 0.1) 0%, transparent 25%),
    radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
  z-index: 1;
}

.hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(10, 11, 26, 0.95) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 11, 26, 0.95) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-preheading {
  font-family: 'Space Grotesk', monospace;
  font-size: 1rem;
  font-weight: 600;
  color: #00cc99;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 204, 153, 0.1);
  border-radius: 30px;
  border: 1px solid rgba(0, 204, 153, 0.2);
}

.hero-preheading::before {
  content: '◆';
  color: #00cc99;
  margin-right: 0.75rem;
}

.hero-preheading::after {
  content: '◆';
  color: #00cc99;
  margin-left: 0.75rem;
}

.hero-main-heading {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.75rem;
  background: linear-gradient(90deg, #ffffff 0%, #a0a0ff 50%, #00ffaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  text-shadow: 0 0 30px rgba(0, 204, 153, 0.2);
}

.hero-subheading {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #b0b0c0;
  line-height: 1.5;
  font-weight: 400;
}

.hero-cta-container {
  display: flex;
  gap: 1.75rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Tilt effect for the "Get Funded in 47 Seconds" button */
.hero-tilted {
  transform: rotate(-3deg);
  transition: all 0.3s ease;
}

.hero-tilted:hover {
  transform: rotate(-3deg) translateY(-4px);
}

.hero-counter-section {
  display: flex;
  gap: 3rem;
  margin: 0 auto 4rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
}

.counter-item {
  text-align: center;
  min-width: 200px;
}

.counter-number {
  font-family: 'Space Grotesk', monospace;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.counter-label {
  font-size: 1.1rem;
  color: #9090b0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual-showcase {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(100, 100, 200, 0.2);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  background: linear-gradient(145deg, #0a0b1a 0%, #12132a 100%);
  z-index: 3;
}

.showcase-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(100, 100, 200, 0.15);
  background: rgba(15, 15, 35, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.showcase-title {
  color: #f0f0f0;
  font-size: 1.25rem;
  font-weight: 600;
}

.showcase-controls {
  display: flex;
  gap: 0.75rem;
}

.control-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5555;
}

.control-button:nth-child(2) {
  background: #ffcc00;
}

.control-button:nth-child(3) {
  background: #00cc66;
}

.showcase-content {
  padding: 2rem;
  height: calc(100% - 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.showcase-panel {
  background: rgba(20, 20, 40, 0.6);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(100, 100, 200, 0.1);
}

.panel-title {
  color: #00cc99;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.panel-title::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #00cc99;
  border-radius: 50%;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.metric-item {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.metric-value {
  font-family: 'Space Grotesk', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00cc99;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.85rem;
  color: #9090b0;
}

.chart-container {
  grid-column: 1 / -1;
  height: 150px;
  background: linear-gradient(90deg, transparent, rgba(0, 204, 153, 0.1), transparent);
  border-radius: 12px;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff5555, #ffcc00, #00cc66, #00cc99);
  border-radius: 3px;
  transform: translateY(-50%);
}

.chart-points {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.chart-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #00cc99;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px #00cc99;
}

.chart-point:nth-child(1) { top: 60%; left: 10%; }
.chart-point:nth-child(2) { top: 40%; left: 25%; }
.chart-point:nth-child(3) { top: 50%; left: 40%; }
.chart-point:nth-child(4) { top: 30%; left: 55%; }
.chart-point:nth-child(5) { top: 45%; left: 70%; }
.chart-point:nth-child(6) { top: 25%; left: 85%; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .showcase-content {
    grid-template-columns: 1fr;
  }
  
  .hero-main-heading {
    font-size: 3.5rem;
  }
  
  .hero-visual-showcase {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .hero-preheading {
    font-size: 0.85rem;
    padding: 0.4rem 1.25rem;
  }
  
  .hero-main-heading {
    font-size: 2.75rem;
  }
  
  .hero-subheading {
    font-size: 1.25rem;
  }
  
  .hero-cta-container {
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .hero-counter-section {
    flex-direction: column;
    gap: 2rem;
  }
  
  .counter-item {
    min-width: 100%;
  }
  
  .hero-visual-showcase {
    height: 500px;
  }
  
  .showcase-content {
    padding: 1.25rem;
  }
  
  .account-size-btn.popular::after {
    top: -6px;
    right: -6px;
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
  }
}

@media (max-width: 480px) {
  .hero-main-heading {
    font-size: 2.25rem;
  }
  
  .hero-subheading {
    font-size: 1.1rem;
  }
  
  .counter-number {
    font-size: 2.25rem;
  }
  
  .hero-visual-showcase {
    height: 400px;
  }
  
  .chart-point:nth-child(6) {
    display: none;
  }
  
  .account-size-btn.popular::after {
    top: -5px;
    right: -5px;
    font-size: 0.5rem;
    padding: 0.15rem 0.3rem;
  }
}

/* Features Section - Completely Revamped */
#features {
  padding: 8rem 0;
  background: linear-gradient(165deg, #0f0f23 0%, #1a1a3a 100%);
  position: relative;
  margin-top: 0;
  border-top: 1px solid rgba(100, 100, 200, 0.1);
  overflow: hidden;
}

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 15% 25%, rgba(0, 204, 153, 0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 75%, rgba(26, 31, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
  z-index: 1;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

#features .container {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
  position: relative;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #ffffff 0%, #a0a0ff 50%, #00ffaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00cc99, #1a1fff, #ffd700);
  border-radius: 2px;
}

.section-subheading {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #b0b0c0;
  max-width: 750px;
  margin: 2rem auto 0;
  text-align: center;
  line-height: 1.7;
  font-weight: 400;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.75rem;
  margin-top: 3rem;
}

.feature-card {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.85) 0%, rgba(25, 25, 50, 0.85) 100%);
  border-radius: 24px;
  padding: 2.75rem;
  border: 1px solid rgba(100, 100, 200, 0.2);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(15px);
  box-shadow: 
    0 25px 45px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 2;
  perspective: 1000px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00cc99, #1a1fff, #ffd700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 3;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 204, 153, 0.05) 0%, transparent 30%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-20px) scale(1.03) rotateY(5deg);
  border-color: rgba(100, 100, 200, 0.4);
  box-shadow: 
    0 35px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

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

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon-container {
  width: 100px;
  height: 100px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  animation: float 3s ease-in-out infinite;
}

.feature-icon-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1fff 0%, #2d0a5a 100%);
  border-radius: 28px;
  z-index: -1;
  box-shadow: 0 15px 30px rgba(26, 31, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-icon-container::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a35 100%);
  border-radius: 23px;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card:hover .feature-icon-container::before {
  box-shadow: 0 20px 40px rgba(26, 31, 255, 0.6);
  transform: scale(1.05);
}

.feature-card:hover .feature-icon-container::after {
  transform: scale(0.95);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: #00cc99;
  filter: drop-shadow(0 0 10px rgba(0, 204, 153, 0.6));
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 15px rgba(0, 204, 153, 0.9));
  color: #ffffff;
}

.feature-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.85rem;
  font-weight: 700;
  color: #f0f0f0;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 1rem;
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00cc99, transparent);
  border-radius: 2px;
}

.feature-card p {
  margin-bottom: 0;
  flex-grow: 1;
  color: #b8b8d0;
  line-height: 1.75;
  font-size: 1.1rem;
  font-weight: 400;
}

.feature-stats {
  display: flex;
  gap: 1.75rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(100, 100, 200, 0.15);
}

.stat-box {
  flex: 1;
  text-align: center;
}

.stat-value {
  font-family: 'Space Grotesk', monospace;
  font-size: 1.75rem;
  font-weight: 700;
  color: #00cc99;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
  text-shadow: 0 0 10px rgba(0, 204, 153, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .stat-value {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(0, 204, 153, 0.6);
  transform: translateY(-3px);
}

.stat-label {
  font-size: 0.95rem;
  color: #9090b0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.feature-card:hover .feature-icon {
  transform: scale(1.15);
  text-shadow: 0 0 30px rgba(0, 204, 153, 0.9);
  color: #ffffff;
}

.feature-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.85rem;
  font-weight: 700;
  color: #f0f0f0;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 1rem;
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00cc99, transparent);
  border-radius: 2px;
}

.feature-card p {
  margin-bottom: 0;
  flex-grow: 1;
  color: #b8b8d0;
  line-height: 1.75;
  font-size: 1.1rem;
  font-weight: 400;
}

.feature-stats {
  display: flex;
  gap: 1.75rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(100, 100, 200, 0.15);
}

.stat-box {
  flex: 1;
  text-align: center;
}

.stat-value {
  font-family: 'Space Grotesk', monospace;
  font-size: 1.75rem;
  font-weight: 700;
  color: #00cc99;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
  text-shadow: 0 0 10px rgba(0, 204, 153, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .stat-value {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(0, 204, 153, 0.6);
  transform: translateY(-3px);
}

.stat-label {
  font-size: 0.95rem;
  color: #9090b0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive enhancements */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.25rem;
  }
  
  .feature-card {
    padding: 2.25rem;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .feature-icon-container {
    width: 80px;
    height: 80px;
    margin-bottom: 1.75rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .feature-card h3 {
    font-size: 1.65rem;
  }
  
  .feature-stats {
    flex-direction: column;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .feature-card {
    padding: 1.75rem;
  }
  
  .feature-icon-container {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
}

/* Account Tiers Section */
#account-tiers {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a0b1a 0%, #1a1fff 100%);
  position: relative;
  margin-top: 0;
  border-top: 1px solid rgba(100, 100, 200, 0.1);
  overflow: hidden;
}

#account-tiers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 15% 25%, rgba(0, 204, 153, 0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 75%, rgba(26, 31, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
  z-index: 1;
  animation: gradientShift 15s ease infinite;
}

#account-tiers::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(0, 204, 153, 0.1) 3px, transparent 3px),
    radial-gradient(circle at 70% 80%, rgba(26, 31, 255, 0.1) 2px, transparent 2px),
    radial-gradient(circle at 40% 10%, rgba(255, 215, 0, 0.08) 2px, transparent 2px),
    radial-gradient(circle at 85% 40%, rgba(0, 204, 153, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 15% 70%, rgba(26, 31, 255, 0.08) 3px, transparent 3px);
  background-size: 120px 120px;
  z-index: 0;
  animation: particlesFloat 25s linear infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes particlesFloat {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(15px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

.mt5-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(26, 31, 255, 0.2);
    box-shadow: 0 0 10px rgba(26, 31, 255, 0.5);
    z-index: 1;
    animation: float 18s infinite ease-in-out;
}

.mt5-particle:nth-child(1) {
    width: 10px;
    height: 10px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.mt5-particle:nth-child(2) {
    width: 14px;
    height: 14px;
    top: 30%;
    right: 20%;
    background: rgba(0, 204, 153, 0.2);
    box-shadow: 0 0 10px rgba(0, 204, 153, 0.5);
    animation-delay: -3s;
}

.mt5-particle:nth-child(3) {
    width: 8px;
    height: 8px;
    bottom: 25%;
    left: 25%;
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation-delay: -6s;
}

.mt5-particle:nth-child(4) {
    width: 12px;
    height: 12px;
    bottom: 35%;
    right: 30%;
    animation-delay: -9s;
}

.mt5-particle:nth-child(5) {
    width: 9px;
    height: 9px;
    top: 45%;
    left: 35%;
    background: rgba(0, 204, 153, 0.2);
    box-shadow: 0 0 10px rgba(0, 204, 153, 0.5);
    animation-delay: -12s;
}

.mt5-particle:nth-child(6) {
    width: 11px;
    height: 11px;
    bottom: 15%;
    right: 15%;
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation-delay: -15s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-25px) translateX(15px) rotate(90deg);
    }
    50% {
        transform: translateY(-50px) translateX(0) rotate(180deg);
    }
    75% {
        transform: translateY(-25px) translateX(-15px) rotate(270deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

#account-tiers .container {
  position: relative;
  z-index: 2;
}

.account-sizes-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto 3rem;
  width: 100%;
  max-width: 1200px;
  overflow-x: auto;
  padding: 1rem;
  position: relative;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}

.account-sizes-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.account-size-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.7) 0%, rgba(25, 25, 50, 0.7) 100%);
  border: none;
}

.account-size-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.7) 0%, rgba(25, 25, 50, 0.7) 100%);
  border: none;
  color: #b0b0c0;
  cursor: pointer;
  position: relative;
  z-index: 2;
  border-radius: 16px;
  backdrop-filter: blur(5px);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  /* Add glow effect on right edge */
  border-right: 2px solid rgba(26, 31, 255, 0.3);
  box-shadow: 
    8px 0 25px -5px rgba(26, 31, 255, 0.4),
    0 6px 20px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  min-width: 100px;
  min-height: 100px;
}

.account-size-btn .outer-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid;
  border-color: #6B7280;
  margin-bottom: 1rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 12px rgba(107, 114, 128, 0.4);
}

.account-size-btn .inner-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 3;
}

.account-size-btn:hover {
  background: linear-gradient(145deg, rgba(25, 25, 50, 0.8) 0%, rgba(35, 35, 70, 0.8) 100%);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  color: #e0e0e0;
}

.account-size-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 31, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 16px;
}

.account-size-btn:hover::before {
  opacity: 0.3;
}

.account-size-btn.active {
  color: #f0f0f0;
  background: linear-gradient(145deg, rgba(26, 31, 255, 0.3) 0%, rgba(45, 10, 90, 0.3) 100%);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  /* Enhanced glow effect on right edge when active */
  border-right: 2px solid rgba(26, 31, 255, 0.8);
  box-shadow: 
    12px 0 35px -5px rgba(26, 31, 255, 0.7),
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.account-size-btn.active .outer-ring {
  border-color: #1a1fff;
  background-color: #1a1fff;
  box-shadow: 0 0 30px rgba(26, 31, 255, 0.8);
  transform: scale(1.15);
}

.account-size-btn.active .inner-dot {
  background-color: #f0f0f0;
  transform: scale(1);
}

.account-size-btn .label {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  font-weight: 600;
  font-size: 1.2rem;
}

.account-size-btn.active .label {
  font-weight: 700;
  transform: scale(1.1);
}

.account-size-btn.active::before {
  opacity: 0.5;
}

.account-size-btn:hover:not(.active) .outer-ring {
  border-color: #9090b0;
  transform: scale(1.05);
}

/* Popular account size styles */
.account-size-btn.popular {
  background: linear-gradient(145deg, rgba(0, 204, 153, 0.2) 0%, rgba(0, 150, 120, 0.2) 100%);
  border-right: 2px solid rgba(0, 204, 153, 0.5);
  box-shadow: 
    12px 0 30px -5px rgba(0, 204, 153, 0.5),
    0 8px 25px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(0, 204, 153, 0.1);
  transform: scale(1.1);
  min-width: 120px;
  min-height: 120px;
}

.account-size-btn.popular::after {
  content: 'POPULAR';
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #0a0b1a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.account-size-btn.popular:hover {
  background: linear-gradient(145deg, rgba(0, 204, 153, 0.3) 0%, rgba(0, 150, 120, 0.3) 100%);
  box-shadow: 
    15px 0 35px -5px rgba(0, 204, 153, 0.7),
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(0, 204, 153, 0.2);
  transform: scale(1.15) translateY(-5px);
}

.account-size-btn.popular .label {
  color: #00cc99;
  font-weight: 700;
  font-size: 1.3rem;
}

.account-size-btn.popular .outer-ring {
  border-color: #00cc99;
  box-shadow: 0 0 15px rgba(0, 204, 153, 0.6);
}

.account-size-btn.popular.active {
  background: linear-gradient(145deg, rgba(0, 204, 153, 0.4) 0%, rgba(0, 150, 120, 0.4) 100%);
  border-right: 2px solid rgba(0, 204, 153, 0.8);
  box-shadow: 
    15px 0 40px -5px rgba(0, 204, 153, 0.8),
    0 12px 35px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(0, 204, 153, 0.3);
}

.account-size-btn.popular.active .outer-ring {
  border-color: #00ffaa;
  background-color: #00ffaa;
  box-shadow: 0 0 35px rgba(0, 204, 153, 1);
}

.account-details-card {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.7) 0%, rgba(25, 25, 50, 0.7) 100%);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(100, 100, 200, 0.15);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(20px);
  box-shadow: 
    0 25px 45px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 25px rgba(26, 31, 255, 0.15);
  width: 100%;
  max-width: 900px;
  margin: 0 auto 3rem;
  position: relative;
  overflow: hidden;
  z-index: 2;
  /* Add glow effect on top edge */
  border-top: 3px solid rgba(26, 31, 255, 0.5);
  box-shadow: 
    0 -8px 20px -5px rgba(26, 31, 255, 0.4),
    0 25px 45px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.account-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.account-size-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: #f0f0f0;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.account-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 204, 153, 0.15);
  color: #00cc99;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(0, 204, 153, 0.25);
}

.badge-icon {
  font-size: 1.25rem;
  color: #00cc99;
}

.account-pricing {
  margin-bottom: 2.5rem;
}

.pricing-label {
  font-size: 1rem;
  color: #9090b0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-amount {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 800;
  color: #f0f0f0;
  letter-spacing: -0.04em;
  margin-bottom: 0;
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 204, 153, 0.3);
}

.btn-full-width {
  width: 100%;
  min-height: 60px;
  font-size: 1.2rem;
}

.account-features-section {
  display: flex;
  flex-direction: column;
}

.features-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #f0f0f0;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 1rem;
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #00cc99, #1a1fff, #ffd700);
  border-radius: 2px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(100, 100, 200, 0.15);
}

.feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-label {
  font-size: 1.05rem;
  color: #b8b8d0;
  font-weight: 500;
}

.feature-value {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: #f0f0f0;
  letter-spacing: -0.02em;
}

.feature-check {
  font-size: 1.5rem;
  color: #00cc99;
  text-shadow: 0 0 10px rgba(0, 204, 153, 0.4);
}

.tier-info {
    text-align: center;
    background: rgba(0, 0, 0, 0.35);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
}

.tier-info p {
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.tier-info p:last-child {
    margin-bottom: 0;
}

.tier-info strong {
    color: var(--emerald-luxury);
}

/* Responsive Design for Account Section */
@media (max-width: 992px) {
    .account-details-grid {
        grid-template-columns: 1fr;
    }
    
    .account-info-section {
        order: 2;
    }
    
    .account-features-section {
        order: 1;
    }
    
    .account-sizes-container {
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .account-details-card {
        padding: 1.5rem;
    }
    
    .account-size-title {
        font-size: 1.5rem;
    }
    
    .pricing-amount {
        font-size: 2rem;
    }
    
    .account-sizes-container {
        gap: 1rem;
        max-width: 100%;
        justify-content: flex-start;
    }
    
    .account-size-btn {
        padding: 0.4rem;
        font-size: 0.75rem;
        min-width: 70px;
    }
    
    .account-size-btn.popular {
        transform: scale(1.05);
        min-width: 75px;
        min-height: 75px;
    }
    
    .account-size-btn.popular::after {
        top: -6px;
        right: -6px;
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
    
    .account-size-btn .outer-ring {
        width: 20px;
        height: 20px;
    }
    
    .account-size-btn .inner-dot {
        width: 8px;
        height: 8px;
    }
    
    .account-size-btn .label {
        font-size: 0.8rem;
    }
    
    .account-size-btn.popular .label {
        font-size: 0.85rem;
    }
    
    .btn-full-width {
        min-height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .account-size-title {
        font-size: 1.65rem;
    }
    
    .pricing-amount {
        font-size: 2.5rem;
    }
    
    .features-title {
        font-size: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .account-details-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .account-details-card {
        padding: 1.25rem;
    }
    
    .account-size-title {
        font-size: 1.5rem;
    }
    
    .pricing-amount {
        font-size: 2.25rem;
    }
    
    .account-sizes-container {
        padding: 0.5rem;
        justify-content: flex-start;
    }
    
    .account-size-btn {
        padding: 0.5rem;
    }
    
    .account-size-btn.popular {
        transform: scale(1.05);
        min-width: 70px;
        min-height: 70px;
    }
    
    .account-size-btn.popular::after {
        top: -5px;
        right: -5px;
        font-size: 0.5rem;
        padding: 0.15rem 0.3rem;
    }
    
    .account-size-btn .outer-ring {
        width: 22px;
        height: 22px;
        margin-bottom: 0.5rem;
    }
    
    .account-size-btn .inner-dot {
        width: 8px;
        height: 8px;
    }
    
    .account-size-btn.popular .outer-ring {
        width: 24px;
        height: 24px;
    }
}

/* Account Tiers Section */
#account-tiers {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a0b1a 0%, #1a1fff 100%);
  position: relative;
  margin-top: 0;
  border-top: 1px solid rgba(100, 100, 200, 0.1);
  overflow: hidden;
}

/* Mobile pricing section - visible only on mobile */
.mobile-pricing-section {
  display: none;
}

/* Desktop pricing section - visible only on desktop */
.desktop-pricing-section {
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  /* Hide desktop pricing section on mobile */
  .desktop-pricing-section {
    display: none;
  }
  
  /* Show mobile pricing section on mobile */
  .mobile-pricing-section {
    display: block;
    margin: 2rem auto;
  }
  
  .account-details-grid {
    gap: 2rem;
  }
  
  .account-size-title {
    font-size: 2rem;
  }
  
  .pricing-amount {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .mobile-pricing-section {
    margin: 1.5rem auto;
  }
  
  .account-selection-container {
    padding: 80px 1rem 2.5rem;
  }
  
  .account-title {
    font-size: 2.5rem;
  }
  
  .account-details-card {
    padding: 1.75rem;
  }
  
  .account-size-title {
    font-size: 1.75rem;
  }
  
  .pricing-amount {
    font-size: 2.75rem;
  }
  
  .account-sizes-container {
    gap: 1rem;
    padding: 1rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    justify-content: flex-start;
  }
  
  .account-size-btn {
    padding: 1rem 0.75rem;
    min-width: 80px;
  }
  
  .account-size-btn .outer-ring {
    width: 32px;
    height: 32px;
  }
  
  .account-size-btn .inner-dot {
    width: 14px;
    height: 14px;
  }
  
  .account-size-btn .label {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  
  .btn-large, .btn-full-width {
    min-height: 50px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .mobile-pricing-section {
    margin: 1.25rem auto;
  }
  
  .account-title {
    font-size: 2.25rem;
  }
  
  .account-size-title {
    font-size: 1.65rem;
  }
  
  .pricing-amount {
    font-size: 2.5rem;
  }
  
  .features-title {
    font-size: 1.5rem;
  }
  
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .account-details-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .mobile-pricing-section {
    margin: 1rem auto;
  }
  
  .account-selection-container {
    padding: 70px 0.75rem 2rem;
  }
  
  .account-title {
    font-size: 2rem;
  }
  
  .account-details-card {
    padding: 1.25rem;
  }
  
  .account-size-title {
    font-size: 1.5rem;
  }
  
  .pricing-amount {
    font-size: 2.25rem;
  }
  
  .account-sizes-container {
    padding: 1rem 0.5rem;
    gap: 0.75rem;
  }
  
  .account-size-btn {
    padding: 1rem 0.5rem;
    min-width: 70px;
  }
  
  .account-size-btn .outer-ring {
    width: 28px;
    height: 28px;
    margin-bottom: 0.5rem;
  }
  
  .account-size-btn .inner-dot {
    width: 12px;
    height: 12px;
  }
  
  .account-size-btn .label {
    font-size: 0.9rem;
  }
}

/* MT5 Platform Section */
#mt5-platform {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0b1a 0%, #1a1fff 100%);
    position: relative;
    margin-top: 0;
    border-top: 1px solid rgba(100, 100, 200, 0.1);
    overflow: hidden;
}

#mt5-platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(0, 204, 153, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 75%, rgba(26, 31, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
    z-index: 1;
    animation: gradientShift 15s ease infinite;
}

#mt5-platform::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 204, 153, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 70% 80%, rgba(26, 31, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 10%, rgba(255, 215, 0, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 85% 40%, rgba(0, 204, 153, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 15% 70%, rgba(26, 31, 255, 0.08) 3px, transparent 3px);
    background-size: 120px 120px;
    z-index: 0;
    animation: particlesFloat 25s linear infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes particlesFloat {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(15px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

.mt5-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(26, 31, 255, 0.2);
    box-shadow: 0 0 10px rgba(26, 31, 255, 0.5);
    z-index: 1;
    animation: float 18s infinite ease-in-out;
}

#mt5-platform .container {
    position: relative;
    z-index: 2;
}

.mt5-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.mt5-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mt5-feature-card {
    background: linear-gradient(145deg, rgba(15, 15, 35, 0.7) 0%, rgba(25, 25, 50, 0.7) 100%);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(100, 100, 200, 0.15);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
    /* Add glow effect on top edge */
    border-top: 3px solid rgba(26, 31, 255, 0.5);
    box-shadow: 
        0 -8px 20px -5px rgba(26, 31, 255, 0.4),
        0 25px 45px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.mt5-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 204, 153, 0.1) 0%, transparent 40%);
    opacity: 0.3;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.mt5-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        transparent 30%, 
        rgba(0, 204, 153, 0.03) 100%);
    opacity: 0.2;
    z-index: -1;
}

.mt5-feature-card:hover::before {
    opacity: 0.5;
}

.mt5-feature-card:hover {
    border-color: rgba(100, 100, 200, 0.3);
    box-shadow: 
        0 -12px 30px -5px rgba(26, 31, 255, 0.6),
        0 35px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    border-top: 3px solid rgba(26, 31, 255, 0.8);
}

.mt5-feature-card .feature-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mt5-feature-card .feature-icon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* Discount Banner */
.discount-banner {
  background: linear-gradient(135deg, rgba(0, 204, 153, 0.15) 0%, rgba(26, 31, 255, 0.15) 100%);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem auto 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 204, 153, 0.3);
  max-width: 900px;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3),
                inset 0 0 0 1px rgba(0, 204, 153, 0.3);
  }
  100% {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  }
}

.discount-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.discount-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.discount-text {
  background: rgba(0, 0, 0, 0.5);
  color: #ffd700;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.discount-percent {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.discount-description h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #f0f0f0;
  margin-bottom: 0.5rem;
}

.discount-description p {
  color: #b8b8d0;
  margin: 0;
  font-size: 1.1rem;
}

.discount-description strong {
  color: #00cc99;
  font-weight: 700;
}

.btn-discount {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #0a0b1a;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 12px;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
  min-height: 56px;
}

.btn-discount:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.btn-discount:active {
  transform: translateY(1px);
}

.btn-discount::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: 0.5s;
}

.btn-discount:hover::before {
  left: 100%;
}

.btn-discount-inline {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #0a0b1a;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 1rem;
}

.btn-discount-inline:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6);
}

.btn-discount-inline:active {
  transform: translateY(1px);
}

.btn-discount-inline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: 0.5s;
}

.btn-discount-inline:hover::before {
  left: 100%;
}

.btn-discount-inline.applied {
  background: linear-gradient(135deg, #00cc99 0%, #00997a 100%);
  box-shadow: 0 3px 10px rgba(0, 204, 153, 0.4);
}

.btn-discount-inline.applied:hover {
  box-shadow: 0 5px 15px rgba(0, 204, 153, 0.6);
}

.copy-code {
  color: #ffd700;
  text-decoration: underline;
}

.copy-feedback {
  color: #ffd700;
  font-weight: bold;
}

.discount-ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  transform: rotate(45deg);
  z-index: 1;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.discount-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
}

.discount-applied .discount-banner {
  background: linear-gradient(135deg, rgba(0, 204, 153, 0.25) 0%, rgba(26, 31, 255, 0.25) 100%);
  border: 1px solid rgba(0, 204, 153, 0.5);
  animation: none;
}

.discount-applied .btn-discount {
  background: linear-gradient(135deg, #00cc99 0%, #00997a 100%);
  box-shadow: 0 5px 15px rgba(0, 204, 153, 0.4);
}

.discount-applied .btn-discount:hover {
  box-shadow: 0 8px 20px rgba(0, 204, 153, 0.6);
}

/* Pricing Elements */
.account-pricing {
  position: relative;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.discount-applied .account-pricing {
  background: rgba(0, 204, 153, 0.1);
  border: 1px solid rgba(0, 204, 153, 0.3);
  box-shadow: 0 0 20px rgba(0, 204, 153, 0.2);
}

.pricing-label {
  font-size: 1rem;
  color: #9090b0;
  margin-bottom: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.pricing-amount {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 800;
  color: #f0f0f0;
  letter-spacing: -0.04em;
  margin-bottom: 0;
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 204, 153, 0.3);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.original-price {
  position: relative;
  display: block;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.discounted-price {
  color: #00cc99;
  font-size: 3.5rem;
  margin: 0.5rem 0;
  text-shadow: 0 0 20px rgba(0, 204, 153, 0.5);
  display: none;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.discount-savings {
  color: #00cc99;
  font-weight: 600;
  margin-top: 1rem;
  font-size: 1.2rem;
  text-align: center;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.savings-amount {
  font-weight: 700;
  font-size: 1.4rem;
}

.discount-badge-price {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #0a0b1a;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  transform: scale(0);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 3;
  display: block;
}

/* Discount applied styles */
.discount-applied .original-price {
  color: #ff6b6b;
  font-size: 2rem;
  text-decoration: line-through;
}

.discount-applied .discounted-price,
.discount-applied .discount-savings {
  display: block;
  opacity: 1;
  transform: scale(1) translateY(0);
}

.discount-applied .discounted-price {
  animation: popIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}

.discount-applied .discount-savings {
  animation: popIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
}

.discount-applied .discount-badge-price {
  transform: scale(1);
  opacity: 1;
  animation: bounce 1s ease infinite;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  70% {
    transform: translateY(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(-5px);
  }
}

/* Enhanced discount applied styles */
.discount-applied .account-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 204, 153, 0.1) 0px, transparent 50px),
    radial-gradient(circle at 80% 70%, rgba(26, 31, 255, 0.1) 0px, transparent 50px);
  z-index: -1;
  border-radius: 16px;
}

.discount-applied .pricing-amount {
  color: #00ffaa;
  text-shadow: 0 0 30px rgba(0, 204, 153, 0.6);
}

/* Responsive adjustments for discount banner */
@media (max-width: 768px) {
  .discount-content {
    flex-direction: column;
    text-align: center;
  }
  
  .discount-description h3 {
    font-size: 1.3rem;
  }
  
  .discount-percent {
    font-size: 2rem;
  }
  
  .btn-discount {
    width: 100%;
  }
  
  .discount-ribbon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .discount-banner {
    padding: 1.5rem;
  }
  
  .discount-percent {
    font-size: 1.75rem;
  }
  
  .discount-description h3 {
    font-size: 1.2rem;
  }
  
  .discount-description p {
    font-size: 1rem;
  }
  
  .btn-discount {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

.mt5-feature-card .feature-icon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1fff 0%, #2d0a5a 100%);
    border-radius: 24px;
    z-index: -1;
    box-shadow: 0 15px 30px rgba(26, 31, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mt5-feature-card .feature-icon-container::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a35 100%);
    border-radius: 19px;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mt5-feature-card:hover .feature-icon-container::before {
    box-shadow: 0 20px 40px rgba(26, 31, 255, 0.6);
    transform: scale(1.05);
}

.mt5-feature-card:hover .feature-icon-container::after {
    transform: scale(0.95);
}

.mt5-feature-card .feature-icon {
    width: 40px;
    height: 40px;
    color: #00cc99;
}

.account-details-card {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.7) 0%, rgba(25, 25, 50, 0.7) 100%);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(100, 100, 200, 0.15);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(20px);
  box-shadow: 
    0 25px 45px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 25px rgba(26, 31, 255, 0.15);
  width: 100%;
  max-width: 900px;
  margin: 0 auto 3rem;
  position: relative;
  overflow: hidden;
  z-index: 2;
  /* Add glow effect on top edge */
  border-top: 3px solid rgba(26, 31, 255, 0.5);
  box-shadow: 
    0 -8px 20px -5px rgba(26, 31, 255, 0.4),
    0 25px 45px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.account-details-card.updated {
  animation: cardUpdate 0.6s ease-out;
}

@keyframes cardUpdate {
  0% { transform: translateY(10px); opacity: 0.8; }
  50% { transform: translateY(-5px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

.account-details-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 204, 153, 0.1) 0%, transparent 40%);
  opacity: 0.3;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.account-details-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, 
    rgba(255, 215, 0, 0.05) 0%, 
    transparent 30%, 
    rgba(0, 204, 153, 0.03) 100%);
  opacity: 0.2;
  z-index: -1;
}

.account-details-card:hover::before {
  opacity: 0.5;
}

.account-details-card:hover {
  border-color: rgba(100, 100, 200, 0.3);
  box-shadow: 
    0 -12px 30px -5px rgba(26, 31, 255, 0.6),
    0 35px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
  border-top: 3px solid rgba(26, 31, 255, 0.8);
}

.mt5-feature-card .feature-icon {
    width: 40px;
    height: 40px;
    color: #00cc99;
    filter: drop-shadow(0 0 10px rgba(0, 204, 153, 0.6));
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}

.mt5-feature-card:hover .feature-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px rgba(0, 204, 153, 0.9));
    color: #ffffff;
}

.mt5-feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0f0f0;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 0.75rem;
}

.mt5-feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #00cc99, transparent);
    border-radius: 2px;
}

.mt5-feature-card p {
    margin-bottom: 0;
    color: #b8b8d0;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

.mt5-platform-showcase {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(100, 100, 200, 0.2);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    background: linear-gradient(145deg, #0a0b10 0%, #12132a 100%);
    z-index: 3;
    height: fit-content;
}

.showcase-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(100, 100, 200, 0.15);
    background: rgba(15, 15, 35, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcase-title {
    color: #f0f0f0;
    font-size: 1.25rem;
    font-weight: 600;
}

.showcase-controls {
    display: flex;
    gap: 0.75rem;
}

.control-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5555;
}

.control-button:nth-child(2) {
    background: #ffcc00;
}

.control-button:nth-child(3) {
    background: #00cc66;
}

.showcase-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.platform-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(100, 100, 200, 0.1);
}

.feature-label {
    font-size: 0.9rem;
    color: #9090b0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: #00cc99;
    letter-spacing: -0.02em;
    text-shadow: 0 0 10px rgba(0, 204, 153, 0.3);
}

.platform-cta {
    background: rgba(26, 31, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(26, 31, 255, 0.25);
}

.platform-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.platform-cta p {
    color: #b8b8d0;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Responsive Design for MT5 Section */
@media (max-width: 992px) {
    .mt5-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mt5-platform-showcase {
        max-width: 100%;
    }
    
    .platform-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #mt5-platform {
        padding: 4rem 0;
    }
    
    .mt5-feature-card {
        padding: 1.75rem;
    }
    
    .mt5-feature-card .feature-icon-container {
        width: 70px;
        height: 70px;
    }
    
    .mt5-feature-card h3 {
        font-size: 1.35rem;
    }
    
    .showcase-content {
        padding: 1.5rem;
    }
    
    .platform-cta {
        padding: 1.5rem;
    }
    
    .platform-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    #mt5-platform {
        padding: 3rem 0;
    }
    
    .mt5-feature-card {
        padding: 1.5rem;
    }
    
    .mt5-feature-card .feature-icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }
    
    .mt5-feature-card .feature-icon {
        width: 32px;
        height: 32px;
    }
    
    .mt5-feature-card h3 {
        font-size: 1.25rem;
    }
    
    .showcase-content {
        padding: 1.25rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-value {
        font-size: 1.1rem;
    }
    
    .platform-cta {
        padding: 1.25rem;
    }
    
    .platform-cta h3 {
        font-size: 1.35rem;
    }
}

/* Testimonials Section */
#testimonials {
  padding: var(--spacing-4xl) 0;
  background: var(--gradient-section-01);
  position: relative;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(0, 204, 153, 0.15) 0%, transparent 40%);
  z-index: var(--z-1);
}

#testimonials .container {
  position: relative;
  z-index: var(--z-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.testimonial-card {
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-medium);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: var(--shadow-xl);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: var(--gradient-button-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.75rem;
  color: white;
  margin-right: var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.testimonial-info h4 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-3xs);
}

.testimonial-location {
  color: #a0a0c0;
  font-size: 1rem;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.testimonial-stats {
  display: flex;
  gap: var(--spacing-xl);
}

.stat-value {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--emerald-luxury);
  font-size: 1.5rem;
}

.stat-label {
  color: #a0a0c0;
  font-size: 0.95rem;
}

/* Video Reviews Section */
.video-reviews-section {
    padding: 4rem 0;
    background: linear-gradient(165deg, #0f0f23 0%, #1a1a3a 100%);
    position: relative;
    border-top: 1px solid rgba(100, 100, 200, 0.1);
    overflow: hidden;
}

.video-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(0, 204, 153, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 75%, rgba(26, 31, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
    z-index: 1;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.video-reviews-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 204, 153, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(26, 31, 255, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 60% 10%, rgba(0, 204, 153, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 90% 30%, rgba(26, 31, 255, 0.08) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: 0;
    animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

.video-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 204, 153, 0.2);
    box-shadow: 0 0 10px rgba(0, 204, 153, 0.5);
    z-index: 1;
    animation: float 15s infinite ease-in-out;
}

.video-particle:nth-child(1) {
    width: 8px;
    height: 8px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.video-particle:nth-child(2) {
    width: 12px;
    height: 12px;
    top: 25%;
    right: 15%;
    background: rgba(26, 31, 255, 0.2);
    box-shadow: 0 0 10px rgba(26, 31, 255, 0.5);
    animation-delay: -2s;
}

.video-particle:nth-child(3) {
    width: 6px;
    height: 6px;
    bottom: 20%;
    left: 20%;
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation-delay: -4s;
}

.video-particle:nth-child(4) {
    width: 10px;
    height: 10px;
    bottom: 30%;
    right: 25%;
    animation-delay: -6s;
}

.video-particle:nth-child(5) {
    width: 7px;
    height: 7px;
    top: 40%;
    left: 30%;
    background: rgba(26, 31, 255, 0.2);
    box-shadow: 0 0 10px rgba(26, 31, 255, 0.5);
    animation-delay: -8s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(-40px) translateX(0) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) translateX(-10px) rotate(270deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

.video-reviews-section .container {
    position: relative;
    z-index: 2;
}

.video-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 1rem auto 0;
    overflow: hidden;
}

.video-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1rem;
    padding: 0.1rem 0;
}

.video-slide {
    min-width: calc(33.333% - 0.67rem);
    scroll-snap-align: start;
}

.video-card {
    background: linear-gradient(145deg, rgba(15, 15, 35, 0.7) 0%, rgba(25, 25, 50, 0.7) 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(100, 100, 200, 0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(12px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(0, 204, 153, 0.1);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    /* Add glow effect on left edge */
    border-left: 2px solid rgba(0, 204, 153, 0.5);
    box-shadow: 
        -5px 0 15px -5px rgba(0, 204, 153, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 204, 153, 0.1) 0%, transparent 40%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.video-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        rgba(26, 31, 255, 0.05) 0%, 
        transparent 30%, 
        rgba(255, 215, 0, 0.03) 100%);
    opacity: 0.2;
    z-index: -1;
}

.video-card:hover::before {
    opacity: 0.5;
}

.video-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(100, 100, 200, 0.3);
    box-shadow: 
        -8px 0 25px -5px rgba(0, 204, 153, 0.6),
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    border-left: 2px solid rgba(0, 204, 153, 0.8);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177%; /* 9:16 aspect ratio (standard vertical video) */
    background: #000;
    overflow: hidden;
}

.rm-mp4 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.rm-video-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.rm-bigplay {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    backdrop-filter: blur(6px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    z-index: 10;
}

.rm-bigplay span {
    font-size: 0.8rem;
    margin-left: 0.1rem;
}

.rm-controls {
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 5px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
    backdrop-filter: blur(6px);
    z-index: 10;
}

.rm-ctl {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border: 0;
    cursor: pointer;
    border-radius: 4px;
    color: #fff;
    background: transparent;
    font-size: 0.65rem;
}

.rm-ctl:hover {
    background: rgba(255, 255, 255, 0.12);
}

.rm-playpause .icon-pause {
    display: none;
}

.rm-mute .icon-mute {
    display: none;
}

.rm-progress {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
    outline: none;
    cursor: pointer;
}

.rm-progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.rm-progress::-moz-range-thumb {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    border: none;
}

.rm-time {
    font-size: 8px;
    color: #f1f4ff;
    white-space: nowrap;
    opacity: 0.9;
}

.rm-volume {
    width: 35px;
    min-width: 25px;
    -webkit-appearance: none;
    appearance: none;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
    outline: none;
    cursor: pointer;
}

.rm-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.rm-volume::-moz-range-thumb {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    border: none;
}

.video-info {
    padding: 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-info h3 {
    font-family: 'Clash Display', 'Unica One', 'Helvetica Neue', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.video-info p {
    color: #b8b8d0;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-size: 0.75rem;
    flex: 1;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: #9090b0;
}

.video-date, .video-views {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.video-date::before, .video-views::before {
    content: '•';
    color: #00cc99;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 31, 255, 0.7);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: rgba(26, 31, 255, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 0.25rem;
}

.next-btn {
    right: 0.25rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.indicator.active {
    background: #00cc99;
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .video-slide {
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 768px) {
    .video-reviews-section {
        padding: 1.5rem 0;
    }
    
    .video-wrapper {
        padding-top: 177%; /* Maintain 9:16 aspect ratio */
    }
    
    .video-info {
        padding: 0.6rem;
    }
    
    .video-info h3 {
        font-size: 0.8rem;
    }
    
    .carousel-nav {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .rm-time {
        display: none;
    }
    
    .rm-volume {
        width: 30px;
    }
    
    .video-slide {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .video-reviews-section {
        padding: 1.25rem 0;
    }
    
    .video-info {
        padding: 0.5rem;
    }
    
    .video-info h3 {
        font-size: 0.75rem;
    }
    
    .carousel-nav {
        display: none;
    }
}

/* CTA Section */
#cta {
  padding: var(--spacing-4xl) 0;
  background: var(--gradient-section-02);
  text-align: center;
  position: relative;
}

#cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15) 0%, transparent 40%);
  z-index: var(--z-1);
}

#cta .container {
  position: relative;
  z-index: var(--z-2);
  max-width: 800px;
}

.cta-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--spacing-sm);
}

.cta-subheading {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  margin-bottom: var(--spacing-xl);
  color: #c2c2d6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: #000;
  padding: var(--spacing-4xl) 0 var(--spacing-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-logo h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--emerald-luxury);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.04em;
  position: relative;
  padding-left: 2rem;
}

.footer-logo h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  background: var(--emerald-luxury);
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px var(--emerald-luxury);
}

.footer-logo p {
  color: #a0a0c0;
  max-width: 300px;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.footer-links h4 {
  font-size: 1.35rem;
  margin-bottom: var(--spacing-lg);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--emerald-luxury);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: #a0a0c0;
  text-decoration: none;
  transition: all var(--transition-fast);
  font-size: 1.05rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--emerald-luxury);
  padding-left: 5px;
  transform: translateX(3px);
}

.social-icons {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.social-icons a {
  color: #a0a0c0;
  font-size: 1.5rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
}

.social-icons a:hover {
  color: var(--emerald-luxury);
  background: rgba(0, 204, 153, 0.1);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a0a0c0;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content {
    gap: var(--spacing-2xl);
  }
  
  .dashboard-mockup {
    max-width: 500px;
    height: 420px;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
  
  .hero-text {
    padding-right: 0;
    text-align: center;
  }
  
  .hero-buttons, .hero-stats {
    justify-content: center;
  }
  
  .hero-image {
    grid-row: 1;
  }
  
  .stat-item {
    min-width: 180px;
  }
  
  .features-grid, .testimonials-grid, .tiers-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .tier-card.popular {
    transform: scale(1);
  }
  
  .popular-badge {
    display: none;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .btn {
    width: 100%;
  }
  
  /* Mobile Navigation */
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--platinum-elite);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: var(--z-11);
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 11, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: var(--z-9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links.active {
    transform: translateY(0);
  }
  
  /* Hide navigation links by default on mobile */
  .navbar .nav-links {
    display: none;
  }
  
  .navbar .nav-links.active {
    display: flex;
  }
  
  /* Show mobile-only elements on mobile */
  .navbar .mobile-only {
    display: block;
    width: 100%;
    margin-top: var(--spacing-md);
    padding: 0 var(--spacing-xl);
  }
  
  .navbar .mobile-only .btn-primary {
    width: 100%;
    margin: 0;
  }
  
  /* Hide desktop-only elements on mobile */
  .navbar .desktop-only {
    display: none;
  }
  
  /* Adjust header layout for mobile */
  .navbar .container {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .nav-links {
    gap: var(--spacing-md);
  }
  
  .hero-content {
    padding: 0 var(--spacing-md);
  }
  
  .hero-heading {
    font-size: 2.5rem;
  }
  
  .hero-subheading {
    font-size: 1.125rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  .feature-card, .testimonial-card {
    padding: var(--spacing-lg);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-logo h3 {
    font-size: 2rem;
  }
  
  #features, #account-tiers, #testimonials, #cta {
    padding: var(--spacing-3xl) 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .hero-content {
    padding: 0 var(--spacing-sm);
  }
  
  #hero {
    padding-top: 160px;
  }
  
  .hero-heading {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .btn {
    min-height: 50px;
    min-width: auto;
  }
  
  .dashboard-mockup {
    height: 350px;
  }
  
  .chart-placeholder {
    height: 180px;
  }
  
  .features-grid, .testimonials-grid, .tiers-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-avatar {
    margin-right: 0;
    margin-bottom: var(--spacing-md);
  }
  
  .testimonial-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  /* Mobile Navigation */
  .nav-links {
    top: 70px;
  }
}