/**
 * Theme Styles - Pixel-perfect based on Screenshots
 * Version: 1.2.0
 */

/* ============================================
   Exact Colors from Screenshots
   ============================================ */

:root {
  /* Primary Green Colors */
  --green-primary: #00ffcc;
  --green-secondary: #00e08a;
  --green-dark: #00cc99;
  
  /* Cyan/Blue Colors */
  --cyan-primary: #00d4ff;
  --cyan-secondary: #00b8e0;
  
  /* Purple/Accent Colors */
  --purple-primary: #a855f7;
  --purple-secondary: #9333ea;
  
  /* Background Colors */
  --bg-dark: #0a0e1a;
  --bg-card: #1a1f2e;
  --bg-card-hover: #202630;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #718096;
  
  /* Border Colors */
  --border-color: #2d3748;
  --border-glow: rgba(0, 255, 204, 0.3);
}

/* ============================================
   Header - Exact Match Screenshot 3
   ============================================ */

.site-header-exact {
  position: relative;
  z-index: 1000;
}

.navbar-exact {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.navbar-container-exact {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-inner-exact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  gap: 2rem;
}

/* Logo */
.site-branding-exact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Custom Logo Styles - Browser Compatible */
.custom-logo {
  max-height: 40px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.custom-logo-link {
  display: block !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

.logo-icon-exact {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--cyan-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon-exact span {
  color: #0a0e1a;
  font-weight: 800;
  font-size: 0.875rem;
  font-family: 'Orbitron', sans-serif;
}

.site-title-exact {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Desktop Navigation */
.desktop-nav-exact {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  min-width: 0; /* Prevent overflow */
}

@media (max-width: 768px) {
  .desktop-nav-exact {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .desktop-nav-exact {
    display: flex !important;
  }
}

/* Chrome/Safari specific fixes */
@supports (-webkit-appearance: none) {
  .nav-menu-exact {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  
  .nav-menu-exact li {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
  }
}

.nav-menu-exact {
  display: flex !important;
  align-items: center;
  gap: 2rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: nowrap !important;
}

/* Force menu items to display inline - Chrome fix */
.nav-menu-exact li {
  margin: 0 !important;
  position: relative !important;
  display: list-item !important;
}

/* Ensure proper link styling across browsers */
.nav-menu-exact a {
  font-size: 0.875rem !important;
  color: var(--text-secondary) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
  font-weight: 500 !important;
  display: block !important;
}

.nav-menu-exact a:hover {
  color: var(--green-primary) !important;
}

/* Dropdown Menu Styles for nav-menu-exact */
.nav-menu-exact {
  position: relative;
}

.nav-menu-exact .menu-item {
  position: relative;
}

.nav-menu-exact .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--background-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0.5rem 0;
}

.nav-menu-exact .menu-item:hover .sub-menu,
.nav-menu-exact .menu-item.focus .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu-exact .sub-menu li {
  display: block;
  width: 100%;
}

.nav-menu-exact .sub-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0;
}

.nav-menu-exact .sub-menu a:hover {
  background: var(--background-secondary);
  color: var(--green-primary);
}

/* Dropdown Arrow Indicator */
.nav-menu-exact .menu-item-has-children > a::after {
  content: "▼";
  margin-left: 0.5rem;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-menu-exact .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* CTA Buttons */
.navbar-cta-exact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .navbar-cta-exact {
    display: none !important;
  }
}

.btn-nav-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-nav-login:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.btn-nav-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0a0e1a;
  background: var(--green-primary);
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
}

.btn-nav-primary:hover {
  background: var(--green-secondary);
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.4);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle-exact {
  display: flex;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 769px) {
  .mobile-menu-toggle-exact {
    display: none !important;
  }
}

/* Mobile Menu */
.mobile-menu-exact {
  display: none !important;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
  background: var(--header-bg, rgba(10, 14, 26, 0.95));
  margin-top: 1px;
}

.mobile-menu-exact.active {
  display: block !important;
}

@media (min-width: 769px) {
  .mobile-menu-exact {
    display: none !important;
  }
}

.mobile-nav-menu-exact {
  list-style: none !important;
  margin: 0 0 1rem 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.mobile-nav-menu-exact li {
  margin: 0 !important;
  display: list-item !important;
}

.mobile-nav-menu-exact a {
  font-size: 0.875rem !important;
  color: var(--text-secondary) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
  display: block !important;
  padding: 0.75rem 1rem !important;
  border-radius: 0.375rem !important;
}

.mobile-nav-menu-exact a:hover {
  color: var(--green-primary) !important;
  background: rgba(var(--green-primary-rgb), 0.1) !important;
}

.mobile-cta-exact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.mobile-cta-exact .btn-nav-login,
.mobile-cta-exact .btn-nav-primary {
  width: 100%;
  justify-content: center;
}

/* ============================================
   Hero Section - Exact Match Screenshot 3
   ============================================ */

.hero-section-safetradebot {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0a0e1a 100%);
  overflow: hidden;
}

.hero-section-safetradebot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Subtiles Karomuster */
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    /* Originale Radial Glows */
    radial-gradient(circle at 20% 30%, rgba(0, 255, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%;
  pointer-events: none;
}

.hero-section-safetradebot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 255, 204, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-content h1 .highlight-green {
  color: var(--green-primary);
  text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.hero-content .hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0e1a;
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-secondary) 100%);
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 
    0 0 20px rgba(0, 255, 204, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

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

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

.btn-hero-primary:hover {
  box-shadow: 
    0 0 30px rgba(0, 255, 204, 0.6),
    0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(26, 31, 46, 0.8);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.1);
}

.btn-hero-secondary:hover {
  border-color: var(--green-primary);
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.3);
  background: rgba(0, 255, 204, 0.1);
  transform: translateY(-2px);
}
  font-weight: 600;
  color: var(--cyan-primary);
  background: transparent;
  border: 2px solid var(--cyan-primary);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-hero-secondary:hover {
  background: var(--cyan-primary);
  color: #0a0e1a;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .hero-features-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  background: rgba(0, 255, 204, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(0, 255, 204, 0.1);
  transition: all 0.3s ease;
}

.hero-feature-item:hover {
  background: rgba(0, 255, 204, 0.1);
  border-color: rgba(0, 255, 204, 0.3);
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
}

.hero-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--green-primary);
  flex-shrink: 0;
}

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

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--green-primary);
  flex-shrink: 0;
}

.hero-image-wrapper {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-dashboard-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-floating-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: rgba(26, 31, 46, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glow);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.3);
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-floating-badge-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-floating-badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(0, 255, 204, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.25rem;
}

.hero-floating-badge-text {
  display: flex;
  flex-direction: column;
}

.hero-floating-badge-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-floating-badge-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-primary);
}

.hero-active-bots {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: rgba(26, 31, 46, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glow);
  border-radius: 0.75rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-active-bots-dots {
  display: flex;
  gap: -0.25rem;
}

.hero-active-bots-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--green-primary);
  animation: pulse 2s ease-in-out infinite;
}

.hero-active-bots-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-active-bots-dot:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-active-bots-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ============================================
   Features Section - Exact Match Screenshot 1
   ============================================ */

.features-section-main {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #0a0e1a, #1a1f2e, #0a0e1a);
  position: relative;
}

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

.features-section-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.features-section-header h2 .gradient-text-green {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

.feature-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card-main:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 255, 204, 0.2);
}

.feature-card-main:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid;
}

.feature-icon-wrapper.primary {
  background: rgba(0, 255, 204, 0.1);
  border-color: rgba(0, 255, 204, 0.3);
}

.feature-icon-wrapper.secondary {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}

.feature-icon-wrapper.accent {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
}

.feature-icon-wrapper svg {
  width: 1.75rem;
  height: 1.75rem;
}

.feature-icon-wrapper.primary svg {
  color: var(--green-primary);
}

.feature-icon-wrapper.secondary svg {
  color: var(--cyan-primary);
}

.feature-icon-wrapper.accent svg {
  color: var(--purple-primary);
}

.feature-card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============================================
   Stats Section - Exact Match Screenshot 1
   ============================================ */

.stats-section-main {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.stats-grid-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

.stat-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card-main:hover {
  border-color: var(--border-glow);
  box-shadow: 0 10px 40px rgba(0, 255, 204, 0.15);
  transform: translateY(-4px);
}

.stat-icon-main {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid rgba(0, 255, 204, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon-main svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--green-primary);
}

.stat-value-main {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label-main {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.stat-description-main {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   3 Steps Section - Exact Match Screenshot 2
   ============================================ */

.steps-section-main {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #0a0e1a, #1a1f2e, #0a0e1a);
  position: relative;
}

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

.steps-section-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.steps-section-header h2 .gradient-text-green {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.steps-section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.steps-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

@media (max-width: 1024px) {
  .steps-grid-main {
    grid-template-columns: 1fr;
  }
}

.steps-grid-main::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  display: none;
}

@media (min-width: 1024px) {
  .steps-grid-main::before {
    display: block;
  }
}

.step-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.step-card-main:hover {
  border-color: var(--border-glow);
  box-shadow: 0 10px 40px rgba(0, 255, 204, 0.15);
  transform: translateY(-4px);
}

.step-number-badge {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  color: #0a0e1a;
  box-shadow: 0 4px 20px rgba(0, 255, 204, 0.4);
}

.step-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(45, 55, 72, 0.5);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.step-card-main:hover .step-icon-wrapper {
  background: rgba(0, 255, 204, 0.1);
  border-color: var(--border-glow);
}

.step-icon-wrapper svg {
  width: 2rem;
  height: 2rem;
  color: var(--green-primary);
}

.step-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============================================
   CTA Section - Exact Match Screenshot 2
   ============================================ */

.cta-section-main {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #0a0e1a, #1a1f2e, #0a0e1a);
  position: relative;
}

.cta-card-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(0, 255, 204, 0.05) 0%, transparent 50%),
    linear-gradient(225deg, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content-main {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content-main h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cta-content-main h2 .gradient-text-green {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content-main p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons-main {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.trust-badges-main {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.trust-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green-primary);
}

/* ============================================
   Footer - Exact Match Screenshot 2/3
   ============================================ */

.footer-main {
  background: #0a0e1a;
  border-top: 1px solid #2d3748;
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  min-width: 0; /* Verhindert Overflow */
}

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

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

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

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

.footer-brand {
  max-width: 300px;
  min-width: 0;
}

.footer-column {
  min-width: 0;
  word-wrap: break-word;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--cyan-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0e1a;
  font-weight: 800;
  font-size: 0.875rem;
}

.footer-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-brand-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link,
.social-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(45, 55, 72, 0.5);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover,
.social-icon:hover {
  border-color: var(--border-glow);
  color: var(--green-primary);
  background: rgba(0, 255, 204, 0.1);
}

/* Social Icons Component */
.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons.header-social-icons {
  gap: 0.5rem;
}

.social-icons.footer-social-links {
  gap: 0.75rem;
}

/* ===== ELEMENTOR TEMPLATE CREATIVE DESIGN ===== */

/* Main Elementor Content Area */
.elementor-main-content {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
}

/* Background Effects Container */
.elementor-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

/* Grid Pattern Background */
.elementor-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(0, 255, 204, 0.15) 1px, transparent 0);
  background-size: 80px 80px;
  background-position: -40px -40px;
  animation: gridFloat 20s ease-in-out infinite;
}

/* Gradient Overlay */
.elementor-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, 
    rgba(0, 255, 204, 0.05) 0%, 
    rgba(59, 130, 246, 0.05) 35%, 
    transparent 70%);
  animation: gradientShift 15s ease-in-out infinite alternate;
}

/* Animated Glow Orbs */
.elementor-glow-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.glow-orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 204, 0.4), transparent 70%);
  top: 10%;
  left: -10%;
  animation: floatOrb1 25s infinite;
}

.glow-orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
  top: 60%;
  right: -5%;
  animation: floatOrb2 30s infinite;
}

.glow-orb-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent 70%);
  bottom: 20%;
  left: 50%;
  animation: floatOrb3 22s infinite;
}

/* Elementor Content Wrapper */
.elementor-content-wrapper {
  position: relative;
  z-index: 2;
  min-height: 50vh;
}

/* Enhanced Fallback Content Styling */
.fallback-content-container {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.content-glass-card {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.content-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 204, 0.5) 50%, 
    transparent 100%);
}

/* Gradient Text for Titles */
.gradient-text {
  background: linear-gradient(135deg, 
    #00ffcc 0%, 
    #3b82f6 50%, 
    #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: 'Orbitron', sans-serif;
}

/* Animated Title Underline */
.title-underline {
  height: 4px;
  width: 100px;
  background: linear-gradient(90deg, #00ffcc, #3b82f6);
  border-radius: 2px;
  margin-bottom: 2rem;
  animation: expandLine 3s ease-out;
}

/* Enhanced Content Typography */
.crypto-prose {
  color: rgba(241, 245, 249, 0.9);
  line-height: 1.8;
  font-size: 1.125rem;
}

.crypto-prose h1, .crypto-prose h2, .crypto-prose h3 {
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
}

.crypto-prose p {
  margin-bottom: 1.5rem;
}

.crypto-prose a {
  color: #00ffcc;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 255, 204, 0.3);
  transition: all 0.3s ease;
}

.crypto-prose a:hover {
  border-bottom-color: #00ffcc;
  color: #ffffff;
}

/* Enhanced Pagination */
.crypto-pagination {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 204, 0.2);
}

.crypto-pagination a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 0.5rem;
  color: #00ffcc;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.crypto-pagination a:hover {
  background: rgba(0, 255, 204, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 255, 204, 0.3);
}

/* Animations */
@keyframes gridFloat {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.15;
  }
  25% { 
    transform: translate(10px, -5px) rotate(1deg);
    opacity: 0.25;
  }
  50% { 
    transform: translate(-5px, 10px) rotate(-0.5deg);
    opacity: 0.2;
  }
  75% { 
    transform: translate(-10px, -5px) rotate(0.5deg);
    opacity: 0.15;
  }
}

@keyframes gradientShift {
  0% { opacity: 0.05; transform: scale(1); }
  50% { opacity: 0.15; transform: scale(1.1); }
  100% { opacity: 0.05; transform: scale(1); }
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.1); }
  50% { transform: translate(-20px, 30px) scale(0.9); }
  75% { transform: translate(20px, 10px) scale(1.05); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30% { transform: translate(-40px, -15px) scale(1.15); }
  60% { transform: translate(25px, -25px) scale(0.85); }
  90% { transform: translate(-10px, 20px) scale(1.1); }
}

@keyframes floatOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  20% { transform: translate(-25px, 15px) scale(1.2); }
  40% { transform: translate(15px, -30px) scale(0.8); }
  60% { transform: translate(35px, 10px) scale(1.1); }
  80% { transform: translate(-15px, -20px) scale(0.95); }
}

@keyframes expandLine {
  0% { width: 0; }
  100% { width: 100px; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .fallback-content-container {
    padding: 2rem 1rem;
  }
  
  .content-glass-card {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
  }
  
  .gradient-text {
    font-size: 2rem;
  }
  
  .glow-orb {
    filter: blur(20px);
  }
  
  .glow-orb-1 { width: 200px; height: 200px; }
  .glow-orb-2 { width: 150px; height: 150px; }
  .glow-orb-3 { width: 100px; height: 100px; }
}

.footer-column h4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.footer-column ul,
.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li,
.footer-menu-list li {
  margin-bottom: 1rem;
}

.footer-column ul li a,
.footer-menu-list li a {
  font-size: 0.875rem;
  color: #8892b0;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 400;
}

.footer-column ul li a:hover,
.footer-menu-list li a:hover {
  color: #64ffda;
}

.footer-disclaimer {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.75;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-copyright {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  background: rgba(15, 23, 42, 0.5);
}

.footer-copyright-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  text-align: left;
}

.footer-copyright p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
}

.footer-copyright a {
  color: var(--green-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.footer-copyright a:hover {
  color: #ffffff;
  border-bottom-color: var(--green-primary);
}

.footer-security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.375rem 0.75rem;
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.footer-security-badge:hover {
  background: rgba(0, 255, 204, 0.15);
  border-color: rgba(0, 255, 204, 0.3);
}

/* Mobile responsive */
@media (min-width: 768px) {
  .footer-copyright-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================
   Animations
   ============================================ */

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

@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 40px rgba(0, 255, 204, 0.6);
  }
}

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