/* Modern CSS Design - 2025 Style */
:root {
/* Professional Gray/Silver Theme Colors */
  --primary: #8B949E;
  --primary-dark: #6E7681;
  --primary-gradient: linear-gradient(135deg, #F6F8FA 0%, #E1E4E8 50%, #D0D7DE 100%);
  --secondary: #D0D7DE;
  --text: #0D1117;
  --text-light: #21262D;
  --text-muted: #656D76;
  --border: #D0D7DE;
  --success: #28A745;
  --error: #DA3633;
  --background: #FFFFFF;
  --surface: #F6F8FA;
  --card-bg: #FFFFFF;
  --glow-primary: rgba(139, 148, 158, 0.15);
  --glow-secondary: rgba(208, 215, 222, 0.1);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Border radius */
  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --radius-lg: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Animation */
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: #FFFFFF;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, #0D1117 0%, #24292F 50%, #0D1117 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  background: transparent;
  border-bottom: 1px solid rgba(208, 215, 222, 0.2);
  position: static;
  width: 100%;
  z-index: 1000;
}


.brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0D1117;
  letter-spacing: -0.025em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header-logo {
  max-width: 48px;
  max-height: 48px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(203, 161, 53, 0.3));
  transition: all 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(203, 161, 53, 0.4));
}

.header-logo-fallback {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-logo-fallback .logo {
  font-size: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-logo-fallback .name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

nav {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

nav a {
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  color: #21262D;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

nav a:hover {
  background: var(--surface);
  color: var(--text);
}

nav a.cta {
  background: linear-gradient(135deg, #24292F 0%, #1C2128 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

nav a.cta:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, #2D333B 0%, #24292F 100%);
  color: #FFFFFF;
}

nav a.cta::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;
}

nav a.cta:hover::before {
  left: 100%;
}

/* Logo Styles */
.hero-logo {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.main-logo {
  max-width: 120px;
  max-height: 120px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(0, 212, 255, 0.3));
}

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

.logo-text {
  font-size: 3rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}

.logo-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Hero Section */
.hero {
  text-align: center;
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
  background: transparent;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}


.hero-animation {
  position: relative;
  z-index: 2;
}

.animated-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.typewriter {
  animation: typewriter 4s steps(120) 0.5s forwards, blink 1s infinite 4.5s;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid var(--primary);
  width: 0;
  max-width: 100%;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
  font-weight: 400;
}

.actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  min-height: 52px;
  letter-spacing: -0.01em;
}

.button.primary {
  background: linear-gradient(135deg, #24292F 0%, #1C2128 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px) saturate(180%);
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.button.primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.15),
    0 16px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, #2D333B 0%, #24292F 100%);
  border-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

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

.button.primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(203, 161, 53, 0.1), rgba(6, 95, 70, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.button.primary:hover::before {
  left: 100%;
}

.button.ghost {
  border: 1px solid rgba(139, 148, 158, 0.3);
  color: var(--text);
  position: relative;
  background: rgba(246, 248, 250, 0.8);
  backdrop-filter: blur(10px) saturate(180%);
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.button.ghost:hover {
  border-color: rgba(36, 41, 47, 0.3);
  color: var(--text);
  background: rgba(246, 248, 250, 1);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-1px) scale(1.01);
}

/* Product Description */
.product-description {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, transparent, var(--surface) 100%);
}

.product-description .container {
  max-width: 1200px;
  margin: 0 auto;
}

.product-block {
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 
    0 4px 20px rgba(13, 17, 23, 0.05),
    0 8px 30px rgba(13, 17, 23, 0.03);
  transition: all 0.3s ease;
}

.product-block:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 8px 30px rgba(13, 17, 23, 0.08),
    0 12px 40px rgba(13, 17, 23, 0.05);
}

.block-title {
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.block-title .icon {
  font-size: 1.2rem;
  padding: var(--space-xs) var(--space-sm);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.audience-segments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.segment {
  padding: var(--space-lg);
  background: linear-gradient(145deg, var(--card-bg) 0%, var(--surface) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.segment:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.segment-title {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.segment-icon {
  font-size: 1.1rem;
  color: var(--primary);
}

.segment-icon img {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
}

.comparison-list {
  margin-top: var(--space-xl);
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.comparison-item:hover {
  background: var(--surface);
}

.comparison-icon {
  font-size: 1.2rem;
  min-width: 24px;
}

.comparison-icon.negative {
  color: var(--error);
}

.comparison-icon.positive {
  color: var(--success);
}

.comparison-content {
  flex: 1;
}

.comparison-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.comparison-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Enhanced What is TMM Styles */
.block-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.key-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.key-feature {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: linear-gradient(145deg, var(--surface) 0%, rgba(246, 248, 250, 0.5) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(208, 215, 222, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.key-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.key-feature:hover::before {
  opacity: 0.05;
}

.key-feature:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 
    0 8px 25px rgba(13, 17, 23, 0.1),
    0 4px 15px rgba(139, 148, 158, 0.15);
}

.key-feature > * {
  position: relative;
  z-index: 2;
}

.feature-icon {
  font-size: 2rem;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 var(--space-xs) 0;
  line-height: 1.3;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.value-proposition {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, 
    rgba(139, 148, 158, 0.1) 0%, 
    rgba(208, 215, 222, 0.05) 50%, 
    rgba(246, 248, 250, 0.8) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 148, 158, 0.2);
  position: relative;
  overflow: hidden;
}

.value-proposition::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 148, 158, 0.1) 0%, transparent 70%);
  opacity: 0.5;
  z-index: 0;
}

.value-proposition p {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

.value-proposition strong {
  color: var(--primary-dark);
  font-weight: 700;
}

/* Modern Carousel Styles */
/* Disable all animations in the TMM block */
.unique-block,
.unique-block * {
  animation: none !important;
}

/* Allow transitions for carousel functionality */
.carousel-track {
  transition: transform 0.5s ease !important;
}

.unique-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: var(--space-lg);
}

.unique-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.unique-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: var(--space-md) auto 0;
  line-height: 1.5;
}

/* Carousel Container */
.carousel-container {
  margin: var(--space-lg) 0;
  min-height: 400px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: relative;
  z-index: 10;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.9);
  transform: scale(1.05);
}

.nav-btn:active {
  background: rgba(0, 0, 0, 0.12);
  transform: scale(0.95);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none !important;
}

.nav-btn:disabled:hover {
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.6);
  transform: none;
}

.nav-btn svg {
  pointer-events: none;
}

.carousel-indicators {
  display: flex;
  gap: 4px;
}

.indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indicator::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.indicator.active::before {
  background: rgba(0, 0, 0, 0.8);
  width: 10px;
  height: 10px;
}

.indicator:not(.active):hover {
  background: rgba(0, 0, 0, 0.05);
}

.indicator:not(.active):hover::before {
  background: rgba(0, 0, 0, 0.5);
  width: 9px;
  height: 9px;
}

.indicator:active {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(0.95);
}

/* Carousel Cards */
.carousel-cards {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: var(--space-md);
}

.comparison-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--space-md);
  opacity: 0;
  display: none;
}

.comparison-card.active {
  opacity: 1;
  display: block;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-content {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex: 1;
}

.card-header h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

.card-number {
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1;
}

.card-navigation {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
}

/* Card Comparison */
.card-comparison {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: var(--space-md);
  height: calc(100% - 100px);
  align-items: start;
}

.comparison-side {
  display: flex;
  flex-direction: column;
}

.side-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.label-text {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
}

.label-badge {
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.label-badge.outdated {
  background: rgba(239, 68, 68, 0.1);
  color: rgba(239, 68, 68, 0.8);
}

.label-badge.premium {
  background: rgba(34, 197, 94, 0.1);
  color: rgba(34, 197, 94, 0.8);
}

.label-badge.complex {
  background: rgba(249, 115, 22, 0.1);
  color: rgba(249, 115, 22, 0.8);
}

.label-badge.intuitive {
  background: rgba(59, 130, 246, 0.1);
  color: rgba(59, 130, 246, 0.8);
}

.label-badge.unreliable {
  background: rgba(239, 68, 68, 0.1);
  color: rgba(239, 68, 68, 0.8);
}

.label-badge.verified {
  background: rgba(34, 197, 94, 0.1);
  color: rgba(34, 197, 94, 0.8);
}

.comparison-content {
  flex: 1;
  padding: var(--space-md);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.traditional .comparison-content {
  border-left: 3px solid rgba(239, 68, 68, 0.4);
}

.tmm .comparison-content {
  border-left: 3px solid rgba(34, 197, 94, 0.4);
}

.comparison-content:hover {
  background: rgba(0, 0, 0, 0.04);
}

.content-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
  opacity: 0.7;
}

.content-icon.tmm-icon {
  opacity: 0.8;
}

.content-icon.problem-icon {
  opacity: 0.5;
}

.comparison-content h4 {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.9);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 600;
  line-height: 1.3;
}

.comparison-content p {
  color: rgba(0, 0, 0, 0.6);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  font-size: 0.85rem;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.stat {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.stat.negative {
  background: rgba(239, 68, 68, 0.1);
  color: rgba(239, 68, 68, 0.8);
}

.stat.positive {
  background: rgba(34, 197, 94, 0.1);
  color: rgba(34, 197, 94, 0.8);
}

/* VS Separator */
.vs-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.vs-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* New Modern Carousel Styles */
.modern-carousel {
  margin-top: var(--space-2xl);
}

/* Navigation Tabs */
.carousel-tabs {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.carousel-tab {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.carousel-tab:hover {
  background: white;
  border-color: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-tab.active {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-icon {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
  display: block;
}

.tab-icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.tab-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  display: block;
}

.tab-subtitle {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
  display: block;
}

.carousel-tab.active .tab-subtitle {
  color: var(--primary);
}

/* Carousel Viewport */
.carousel-viewport {
  overflow: hidden;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--border);
}

.carousel-track {
  display: flex;
  transform: translateX(0);
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: var(--space-lg);
}

.carousel-slide.active {
  opacity: 1;
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-xl);
  align-items: stretch;
}

.comparison-column {
  display: flex;
  flex-direction: column;
}

.column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.column-header h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--text);
}

.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.outdated {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.status-badge.complex {
  background: rgba(251, 146, 60, 0.1);
  color: #ea580c;
}

.status-badge.unreliable {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.status-badge.premium {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.status-badge.intuitive {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.status-badge.verified {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

/* Visual Elements */
.problem-visual,
.solution-visual {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: var(--space-md);
}

.chaos-icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
  font-weight: 300;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #dc2626;
  opacity: 0.8;
}

.ai-icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
  font-weight: 300;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #16a34a;
  opacity: 0.8;
}

.chaos-lines {
  display: none;
}

.chaos-line {
  display: none;
}


/* Comparison Content */
.comparison-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 var(--space-sm) 0;
  color: var(--text);
}

.comparison-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 var(--space-lg) 0;
}

.metrics-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.metric {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: 8px;
  font-size: 0.9rem;
}

.metric.negative {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.1);
}

.metric.negative .metric-icon {
  color: #dc2626;
}

.metric.positive {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.1);
}

.metric.positive .metric-icon {
  color: #16a34a;
}

.metric-icon {
  font-size: 1rem;
  flex-shrink: 0;
  font-weight: 700;
  width: 20px;
  text-align: center;
}

.metric-text {
  flex: 1;
  font-weight: 500;
}

/* Comparison Divider */
.comparison-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--border);
  position: relative;
}

/* Lines removed for cleaner design */

/* Progress Bar */
.carousel-progress {
  margin-top: var(--space-md);
  padding: 0 var(--space-md);
}

.progress-track {
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  width: 33.33%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .carousel-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  
  .carousel-tab {
    max-width: 100%;
    min-width: auto;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .comparison-divider {
    grid-row: 2;
    padding: var(--space-lg) 0;
  }
  
  .vs-circle::before,
  .vs-circle::after {
    width: 50px;
  }
  
  .vs-circle::before {
    right: 60px;
  }
  
  .vs-circle::after {
    left: 60px;
  }
  
  .comparison-column.tmm {
    grid-row: 3;
  }
}

/* Unique Footer */
.unique-footer {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 2px solid rgba(139, 148, 158, 0.1);
  text-align: center;
}

.competitive-advantage h3 {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: var(--space-xl);
  background: linear-gradient(135deg, var(--text) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg);
  background: linear-gradient(145deg, var(--card-bg) 0%, var(--surface) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 148, 158, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.advantage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantage-item:hover::before {
  opacity: 0.05;
}

.advantage-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(139, 148, 158, 0.15);
}

.advantage-item > * {
  position: relative;
  z-index: 1;
}

.advantage-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 0 10px rgba(139, 148, 158, 0.2));
}

.advantage-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Features Grid */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.features {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  padding: 0;
  width: 100%;
}

.card {
  background: linear-gradient(145deg, #FFFFFF 0%, #FAFBFC 100%);
  padding: var(--space-lg);
  border-radius: 18px;
  border: 1px solid rgba(208, 215, 222, 0.2);
  box-shadow: 
    0 2px 8px rgba(13, 17, 23, 0.03),
    0 8px 24px rgba(13, 17, 23, 0.04),
    0 16px 32px rgba(13, 17, 23, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px) saturate(110%);
  min-height: auto;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.card:hover::before {
  opacity: 0.1;
}

.card:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: 
    0 4px 20px rgba(13, 17, 23, 0.06),
    0 12px 40px rgba(13, 17, 23, 0.08),
    0 24px 64px rgba(13, 17, 23, 0.04),
    inset 0 2px 0 rgba(255, 255, 255, 1),
    0 0 0 1px rgba(139, 148, 158, 0.15);
  border-color: rgba(139, 148, 158, 0.3);
  background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
}

.card > * {
  position: relative;
  z-index: 2;
}

.card-icon {
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: var(--space-md);
  display: inline-block;
  text-align: center;
  color: #0D1117;
  letter-spacing: 0.5px;
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid rgba(139, 148, 158, 0.2);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(135deg, rgba(246, 248, 250, 0.8), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 
    0 2px 8px rgba(13, 17, 23, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.card:hover .card-glow {
  opacity: 0.1;
}

/* Form Styles */
.whitelist {
  padding: var(--space-xl) var(--space-md);
  max-width: 600px;
  margin: 0 auto;
}

.form-card {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group.checkbox {
  margin-bottom: var(--space-md);
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--text);
}

input, select, textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

input.error, select.error, textarea.error {
  border-color: var(--error);
}

.checkbox label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
}

.checkbox input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.help-text {
  display: block;
  color: var(--text-light);
  font-size: 0.875rem;
  margin-top: var(--space-xs);
}

.error-msg {
  display: block;
  color: var(--error);
  font-size: 0.875rem;
  margin-top: var(--space-xs);
}

.success-msg {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
  border: 2px solid var(--success);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.success-msg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0.05;
  z-index: 0;
}

.success-msg > * {
  position: relative;
  z-index: 1;
}

.success-icon {
  font-size: 3rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: var(--space-md);
  background: var(--success);
  color: var(--background);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.success-msg h3 {
  color: var(--success);
  margin-bottom: var(--space-md);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.success-actions {
  margin-top: var(--space-lg);
}

.social-share {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.social-share p {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
}

.share-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

.share-btn {
  padding: var(--space-xs) var(--space-md);
  background: var(--surface);
  color: var(--text-light);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.share-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px var(--glow-primary);
}

/* Whitelist Cards (Uiverse Style) */
.whitelist-cards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  max-width: 400px;
  margin: 0 auto;
}

.whitelist-card {
  width: 100%;
  min-height: 320px;
  padding: var(--space-xl);
  background: white;
  border: 2px solid var(--border);
  border-radius: 20px;
  display: none;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.whitelist-card.active {
  display: flex;
  animation: cardSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.whitelist-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0.03;
  z-index: 0;
}

.whitelist-card > * {
  position: relative;
  z-index: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.step-indicator {
  background: var(--primary);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.card-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
  margin: 0;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.card-content {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-light);
  text-align: center;
  margin: var(--space-sm) 0 var(--space-md);
}

.card-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.card-form input,
.card-form select,
.card-form textarea {
  outline: 0;
  background: var(--background);
  border: 2px solid var(--border);
  padding: var(--space-sm) var(--space-md);
  border-radius: 14px;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.card-form input:focus,
.card-form select:focus,
.card-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--glow-primary);
  background: var(--card-bg);
}

.card-form input::placeholder,
.card-form textarea::placeholder {
  color: var(--text-muted);
}

.card-form textarea {
  resize: vertical;
  min-height: 80px;
}

.card-button {
  border: 0;
  background: var(--primary-gradient);
  color: white;
  padding: var(--space-sm) var(--space-lg);
  border-radius: 14px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--glow-primary);
}

.card-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px var(--glow-primary);
}

.card-button::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: left 0.6s;
}

.card-button:hover::before {
  left: 100%;
}

.step-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-top: auto;
}

.prev-step {
  background: var(--surface) !important;
  color: var(--text-light) !important;
  border: 2px solid var(--border) !important;
  box-shadow: none !important;
}

.prev-step:hover {
  background: var(--border) !important;
  color: var(--text) !important;
}

.submit-btn {
  background: linear-gradient(135deg, var(--success), var(--primary)) !important;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3) !important;
}

.submit-btn:hover {
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4) !important;
}

/* Custom Checkbox */
.checkbox-group {
  margin: var(--space-sm) 0;
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--primary-gradient);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* Error Messages */
.whitelist-card .error-msg {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: -var(--space-sm);
  padding-left: var(--space-sm);
  min-height: 1rem;
}

/* Animations */
@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Enhanced Hero Styles */
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-props {
  margin: var(--space-lg) 0;
}

.prop {
  color: var(--text-light);
  font-size: 0.95rem;
  padding: var(--space-sm);
  background: rgba(0, 212, 255, 0.05);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}

.hero-incentive {
  margin-top: var(--space-xl);
  text-align: center;
}

.incentive-text {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(0, 255, 136, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 255, 136, 0.2);
  display: inline-block;
}

.incentive-text strong {
  color: var(--success);
}

/* Enhanced CTA Styles */
.cta-urgent {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-lg) var(--space-xl) !important;
}

.cta-main {
  font-size: 1.1rem;
  font-weight: 700;
}

.cta-sub {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Feature Points */
.feature-points {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
}

.feature-points li {
  color: var(--text-light);
  font-size: 0.875rem;
  padding: var(--space-xs) var(--space-sm);
  border-left: 3px solid rgba(139, 148, 158, 0.6);
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
  background: linear-gradient(90deg, rgba(139, 148, 158, 0.04), rgba(246, 248, 250, 0.8));
  border-radius: 0 8px 8px 0;
  position: relative;
  transition: all 0.2s ease;
}

.feature-points li:hover {
  background: linear-gradient(90deg, rgba(139, 148, 158, 0.08), rgba(246, 248, 250, 1));
  border-left-color: rgba(139, 148, 158, 0.8);
  transform: translateX(4px);
}

/* Why TMM Section */
.why-tmm {
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(to bottom, var(--surface), var(--background));
}

.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.why-card {
  background: var(--card-bg);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.why-icon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(0, 212, 255, 0.1);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  display: inline-block;
  margin-bottom: var(--space-md);
}

/* Roadmap Section */
.roadmap {
  padding: var(--space-2xl) var(--space-md);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding: var(--space-lg) 0 var(--space-lg) var(--space-2xl);
}

.timeline-marker {
  position: absolute;
  left: 12px;
  top: var(--space-lg);
  width: 16px;
  height: 16px;
  background: var(--surface);
  border: 3px solid var(--border);
  border-radius: 50%;
  transition: var(--transition);
}

.timeline-item.current .timeline-marker {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.timeline-content h3 {
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.timeline-content p {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.timeline-status {
  font-size: 0.8rem;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius);
  font-weight: 600;
}

.timeline-item.current .timeline-status {
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
}

.timeline-status {
  background: var(--surface);
  color: var(--text-muted);
}

/* Final CTA Section */
.final-cta {
  padding: var(--space-2xl) var(--space-md);
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  text-align: center;
}

.cta-content h2 {
  margin-bottom: var(--space-md);
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Footer */
.footer {
  background: var(--background);
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--border);
  width: 100%;
  margin: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--space-md);
}

.footer-section {
  text-align: left;
}

.footer-section h4 {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  text-align: left;
}

.footer-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: var(--space-sm);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-sm) * 0.75);
  align-items: flex-start;
}

.footer-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
  text-align: left;
  width: auto;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-sm) * 0.75);
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.social-link:hover {
  color: var(--primary);
}

.social-icon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--border);
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  min-width: 40px;
  text-align: center;
}

.newsletter-signup {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.newsletter-input {
  flex: 1;
  padding: var(--space-sm);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: var(--primary-dark);
}

.newsletter-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-md) 0;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--primary);
}

/* Whitelist page specific styles */
.whitelist-hero {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding: var(--space-lg) 0;
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -15px, 0);
  }
  70% {
    transform: translate3d(0, -7px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}



.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-logo {
  max-width: 40px;
  max-height: 40px;
  width: auto;
  height: auto;
}

.footer-logo-fallback {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-logo-fallback .logo {
  font-size: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo-fallback .name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.footer-socials {
  display: flex;
  gap: var(--space-lg);
}

.social-link {
  color: var(--text-light);
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
}

.social-link:hover {
  color: var(--primary);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.copyright {
  text-align: center;
  color: var(--text-muted);
  margin: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
  }
}

@keyframes text-glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 30px rgba(107, 115, 255, 0.5);
  }
}


.hero, .card, .form-card {
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  text-align: center;
  color: #0D1117;
  margin-bottom: calc(var(--space-xl) + 1rem);
  position: relative;
  padding-bottom: var(--space-lg);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #8B949E 50%, transparent 100%);
  border-radius: 2px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
  }
  
  nav {
    gap: var(--space-md);
  }
  
  .main-logo {
    max-width: 80px;
    max-height: 80px;
  }
  
  .logo-text {
    font-size: 2rem;
  }
  
  .logo-subtitle {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
  
  .hero {
    padding: var(--space-xl) var(--space-md);
  }
  
  .actions {
    flex-direction: column;
    align-items: center;
  }
  
  .button {
    width: 100%;
    max-width: 280px;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .form-card {
    padding: var(--space-lg);
  }
  
  .whitelist {
    padding: var(--space-lg) var(--space-md);
  }
  
  /* Card Form Mobile */
  .whitelist-cards-container {
    max-width: 100%;
    padding: 0 var(--space-sm);
  }
  
  .whitelist-card {
    min-height: 280px;
    padding: var(--space-lg);
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .card-content {
    font-size: 0.85rem;
  }
  
  .step-buttons {
    flex-direction: column;
  }
  
  .step-buttons .prev-step,
  .step-buttons .next-step,
  .step-buttons .submit-btn {
    width: 100%;
  }
  
  /* Mobile Hero Optimizations */
  .hero {
    min-height: calc(100vh - 140px);
    padding: var(--space-md) var(--space-md);
  }
  
  .animated-text {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .value-props {
    margin: var(--space-md) 0;
  }
  
  .prop {
    font-size: 0.85rem;
    text-align: center;
  }
  
  .cta-urgent {
    padding: var(--space-md) var(--space-lg) !important;
  }
  
  .cta-main {
    font-size: 1rem;
  }
  
  .cta-sub {
    font-size: 0.8rem;
  }
  
  .incentive-text {
    font-size: 0.85rem;
    padding: var(--space-sm);
  }
  
  /* Mobile Product Description */
  .product-description {
    padding: var(--space-xl) 0;
  }
  
  .product-block {
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
  }
  
  .block-title {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }
  
  .audience-segments {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .segment {
    padding: var(--space-md);
  }
  
  .segment-title {
    font-size: 1.1rem;
  }
  
  .comparison-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
    padding: var(--space-md);
  }
  
  .comparison-icon {
    align-self: flex-start;
  }
  
  /* Mobile Enhanced What is TMM */
  .lead-text {
    font-size: 1.1rem;
  }
  
  .key-features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .key-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md);
  }
  
  .feature-icon {
    margin-bottom: var(--space-sm);
  }
  
  .value-proposition {
    padding: var(--space-lg);
  }
  
  .value-proposition p {
    font-size: 1rem;
  }
  
  /* Mobile Revolutionary Why TMM */
  .comparison-container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .vs-divider {
    order: 2;
    min-height: 80px;
    margin: var(--space-lg) 0;
  }
  
  .vs-circle {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
  
  .divider-line {
    display: none;
  }
  
  .traditional-side {
    order: 1;
  }
  
  .tmm-side {
    order: 3;
  }
  
  .side-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .problem-card,
  .solution-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md);
  }
  
  .problem-card:hover,
  .solution-card:hover {
    transform: translateY(-3px);
  }
  
  .problem-stats,
  .solution-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .advantage-number {
    font-size: 2rem;
  }
  
  .advantage-text {
    font-size: 0.8rem;
  }
  
  /* Mobile Carousel */
  .carousel-container {
    min-height: 450px;
  }
  
  .carousel-cards {
    height: auto;
    min-height: 400px;
    overflow: visible;
  }
  
  .comparison-card {
    position: relative;
    height: auto;
    min-height: 400px;
    padding: var(--space-md);
  }
  
  .card-header {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .header-content {
    justify-content: center;
    gap: var(--space-sm);
  }
  
  .card-navigation {
    justify-content: center;
    gap: var(--space-xs);
    padding: 4px 8px;
  }
  
  .nav-btn {
    width: 36px;
    height: 36px;
  }
  
  .nav-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .indicator {
    width: 28px;
    height: 28px;
  }
  
  .card-comparison {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    height: auto;
  }
  
  .vs-separator {
    order: 2;
    height: 40px;
    margin: var(--space-sm) 0;
  }
  
  .vs-badge {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
  
  .traditional {
    order: 1;
  }
  
  .tmm {
    order: 3;
  }
  
  .side-label {
    margin-bottom: var(--space-sm);
    justify-content: center;
    gap: var(--space-xs);
  }
  
  .label-text {
    font-size: 0.9rem;
  }
  
  .comparison-content {
    padding: var(--space-sm);
    text-align: center;
  }
  
  .content-icon {
    font-size: 1.5rem;
  }
  
  .comparison-content h4 {
    font-size: 1rem;
  }
  
  .comparison-content p {
    font-size: 0.8rem;
  }
  
  .stats-row {
    justify-content: center;
  }
  
  .stat {
    font-size: 0.6rem;
    padding: 1px 4px;
  }
  
  /* Mobile Feature Cards */
  .features {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .feature-points {
    margin-top: var(--space-sm);
  }
  
  .feature-points li {
    font-size: 0.8rem;
  }
  
  /* Mobile Why TMM */
  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .why-card {
    padding: var(--space-lg);
  }
  
  /* Mobile Roadmap */
  .timeline::before {
    left: 15px;
  }
  
  .timeline-item {
    padding-left: var(--space-xl);
  }
  
  .timeline-marker {
    left: 7px;
    width: 14px;
    height: 14px;
  }
  
  /* Mobile Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .newsletter-signup {
    flex-direction: column;
  }
  
  .newsletter-input {
    margin-bottom: var(--space-sm);
  }
  
  .footer-socials {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-md);
  }
}

/* High contrast mode support */
/* Interactive Elements Styles */
.floating-shape {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary-gradient);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-up 4s ease-in-out infinite;
  z-index: 0;
}


/* Modal Styles - Removed (cards no longer clickable) */
/*
.feature-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-modal.show .modal-content {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border);
  background: var(--primary-gradient);
  color: white;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-body {
  padding: var(--space-lg);
}

.modal-body p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.modal-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-xl);
  text-align: center;
}

.preview-placeholder {
  opacity: 0.7;
}

.preview-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 0 20px var(--glow-primary));
  animation: pulse-glow 2s ease-in-out infinite;
}

.preview-placeholder p {
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}
*/

/* Enhanced Animation Keyframes */

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .typewriter {
    animation: none;
    border-right: none;
  }
  
  .floating-shape,
  .particle-canvas {
    display: none;
  }
}

@media (prefers-contrast: high) {
  :root {
    --border: #000;
    --text-light: var(--text);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Donate Modal Styles */
.donate-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.donate-modal.show {
  opacity: 1;
  visibility: visible;
}

.donate-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.donate-modal.show .donate-content {
  transform: scale(1) translateY(0);
}

.donate-body {
  padding: var(--space-lg);
}

.donate-intro {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.donate-intro p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.donate-intro ul {
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.donate-intro li {
  padding: var(--space-xs) 0;
  color: var(--text-light);
  font-size: 1rem;
}

.donate-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.stat-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: var(--space-md);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 12px rgba(139, 148, 158, 0.2);
}

.stat-title {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: var(--space-xs);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.progress-container {
  margin-bottom: var(--space-xl);
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: var(--surface);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--success) 0%, #4ade80 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.progress-text {
  text-align: center;
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-light);
}

.donate-form {
  background: var(--surface);
  padding: var(--space-lg);
  border-radius: var(--radius);
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--text);
}

.amount-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

#donateAmount {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  padding-right: 60px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  transition: border-color 0.2s ease;
}

#donateAmount:focus {
  outline: none;
  border-color: var(--primary);
}

.currency-label {
  position: absolute;
  right: var(--space-sm);
  background: var(--primary);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.quick-amounts {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.quick-amount {
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--border);
  background: white;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.quick-amount:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-1px);
}

.wallet-info {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: var(--space-sm);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
}

.wallet-address {
  font-size: 0.9rem;
  color: var(--success);
  word-break: break-all;
}

.donate-btn {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: all 0.2s ease;
  margin-bottom: var(--space-md);
}

.donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 148, 158, 0.3);
}

.donate-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-icon {
  font-size: 1.2rem;
}

.donate-message {
  text-align: center;
  margin-bottom: var(--space-md);
  min-height: 20px;
}

.donate-message.success {
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  padding: var(--space-sm);
  border-radius: var(--radius);
}

.donate-message.error {
  color: var(--error);
  background: rgba(239, 68, 68, 0.1);
  padding: var(--space-sm);
  border-radius: var(--radius);
}

.payment-info {
  text-align: center;
  margin-top: var(--space-md);
}

.payment-info p {
  margin-bottom: var(--space-xs);
  color: var(--text-light);
  font-size: 0.9rem;
}

.network-badges {
  margin-bottom: var(--space-md);
}

.network-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.network-badge.ethereum {
  background: rgba(98, 126, 234, 0.1);
  color: #627eea;
  border: 1px solid rgba(98, 126, 234, 0.3);
}

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

.security-icon {
  font-size: 1rem;
}

.recent-donations {
  background: var(--surface);
  padding: var(--space-lg);
  border-radius: var(--radius);
}

.recent-donations h4 {
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--text);
}

.donations-list {
  max-height: 200px;
  overflow-y: auto;
}

.donation-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

.donation-item:last-child {
  border-bottom: none;
}

.donation-address {
  font-size: 0.9rem;
  color: var(--text-light);
  font-family: monospace;
}

.donation-amount {
  font-weight: 600;
  color: var(--success);
}

.support-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: white !important;
}

.support-btn:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
  transform: translateY(-1px);
}

/* Donate Page Styles - New Layout */
.donate-page {
  min-height: 100vh;
}

.donate-hero {
  text-align: center;
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--primary-gradient));
  color: white;
  margin-bottom: var(--space-2xl);
}

.donate-hero h1 {
  margin-bottom: var(--space-md);
  font-size: 2.5rem;
}

.donate-hero .subtitle {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.3rem;
  opacity: 0.95;
  line-height: 1.6;
}

.donate-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.donate-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.donate-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* Cards */
.info-card, .form-card, .donations-card, .rewards-card, .thank-you-compact {
  background: var(--card-bg);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.info-card h2, .form-card h2, .donations-card h3, .rewards-card h2 {
  color: var(--text);
  margin-bottom: var(--space-md);
}

/* Impact List */
.impact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.impact-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.impact-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.impact-item strong {
  display: block;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.impact-item p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Rewards Section */
.rewards-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
  border-color: rgba(255, 193, 7, 0.3);
}

.rewards-highlight {
  display: flex;
  justify-content: center;
  margin: var(--space-md) 0;
}

.reward-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  color: #8b4513;
  padding: var(--space-sm) var(--space-lg);
  border-radius: 25px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.rewards-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.reward-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.reward-bullet {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.rewards-note {
  background: rgba(59, 130, 246, 0.1);
  padding: var(--space-md);
  border-radius: var(--radius);
  margin-top: var(--space-lg);
  border-left: 4px solid var(--primary);
}

.rewards-note p {
  margin: 0;
  color: var(--primary);
  font-size: 0.9rem;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.stat-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(139, 148, 158, 0.2);
}

.stat-icon {
  font-size: 2rem;
  opacity: 0.9;
}

.stat-content .stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.stat-content .stat-title {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Compact Form */
.form-compact {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.amount-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.amount-section label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.quick-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xs);
}

.quick-amount {
  padding: var(--space-sm);
  border: 2px solid var(--border);
  background: white;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.quick-amount:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
}

.donate-btn-main {
  width: 100%;
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: all 0.3s ease;
}

.donate-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 148, 158, 0.3);
}

.donate-btn-main:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.payment-info-compact {
  text-align: center;
}

.network-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.network-badge.tron {
  background: rgba(255, 0, 0, 0.1);
  color: #dc2626;
  border: 1px solid rgba(255, 0, 0, 0.3);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
}

.security-text {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Thank You Compact */
.thank-you-compact {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  border-color: rgba(34, 197, 94, 0.3);
  text-align: center;
}

.thank-you-compact h3 {
  color: var(--success);
  margin-bottom: var(--space-sm);
}

.thank-you-compact p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Donation Address Section */
.donation-address-section {
  margin-top: var(--space-lg);
}

.address-card {
  background: linear-gradient(135deg, 
    var(--primary) 0%, 
    var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: white;
  text-align: center;
}

.address-card h3 {
  margin: 0 0 var(--space-md);
  font-size: 1.3rem;
  font-weight: 600;
}

.address-instruction {
  margin-bottom: var(--space-lg);
  font-size: 1rem;
  opacity: 0.9;
}

.address-display {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.address-text {
  flex: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  word-break: break-all;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-sm);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.copy-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  color: white;
  padding: var(--space-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9rem;
  white-space: nowrap;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.copy-btn.copied {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.5);
}

.copy-btn.copied .copy-text::after {
  content: ' \2713';
}

.qr-code {
  margin: var(--space-lg) 0;
  display: flex;
  justify-content: center;
}

.qr-code canvas {
  border-radius: var(--radius);
  background: white;
  padding: var(--space-sm);
}

.address-warning {
  background: rgba(255, 152, 0, 0.2);
  border: 1px solid rgba(255, 152, 0, 0.4);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
  font-size: 0.9rem;
}

.address-warning p {
  margin: 0;
}

.transaction-status {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

.transaction-status.confirmed {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.4);
  color: #22c55e;
}

.transaction-status.confirmed .status-text {
  opacity: 1;
  font-weight: 500;
}

/* Donations List */
.donations-list {
  max-height: 300px;
  overflow-y: auto;
}

.donation-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

.donation-item:last-child {
  border-bottom: none;
}

.donation-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.donation-address {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.donation-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.donation-amount {
  font-weight: 700;
  color: var(--success);
  font-size: 1rem;
}

.no-donations {
  text-align: center;
  padding: var(--space-lg);
  color: var(--text-light);
}

.no-donations p:first-child {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

/* ============================================
   CORPORATE DONATION PAGE STYLES
   Professional, serious, corporate design
   Inspired by enterprise fintech platforms
   ============================================ */

.donate-page-corporate {
  min-height: 100vh;
  background: var(--background);
  position: relative;
  overflow-x: hidden;
}

/* ============================================
   CORPORATE HERO SECTION
   ============================================ */

.corporate-hero {
  position: relative;
  padding: 100px 0 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-background-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, rgba(208, 215, 222, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(208, 215, 222, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 900px;
  margin: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-indicator {
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.title-accent {
  color: var(--primary);
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 600px;
  font-weight: 400;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.metric-item {
  text-align: left;
}

.metric-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-separator {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ============================================
   CORPORATE FORM SECTION
   ============================================ */

.corporate-form-section {
  padding: 80px 0;
  background: var(--background);
}

/* Main Form Layout */
.form-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.corporate-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

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

.form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.form-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 400;
}

/* Investment Tiers */
.investment-selector {
  margin-bottom: 32px;
}

.tier-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.tier-option {
  position: relative;
  padding: 24px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  background: var(--card-bg);
}

.tier-option:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.tier-option.selected {
  border-color: var(--primary);
  background: var(--surface);
}

.tier-option.recommended {
  border-color: var(--primary);
  background: var(--surface);
  position: relative;
}

.tier-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 0 var(--radius) 0 var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tier-header {
  margin-bottom: 8px;
}

.tier-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.tier-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tier-benefit {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Custom Investment Input */
.custom-investment {
  margin-top: 24px;
}

.custom-input-wrapper {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: var(--transition);
}

.custom-input-wrapper:focus-within {
  border-color: var(--primary);
  background: var(--card-bg);
  box-shadow: 0 0 0 3px rgba(139, 148, 158, 0.1);
}

.input-currency,
.input-denomination {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 1rem;
}

.input-currency {
  margin-right: 8px;
}

.input-denomination {
  margin-left: 12px;
  font-size: 0.875rem;
}

#donateAmount {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  outline: none;
}

#donateAmount::placeholder {
  color: var(--text-muted);
  font-weight: 500;
}

/* Payment Details */
.payment-details {
  margin: 32px 0;
  animation: slideIn 0.4s ease-out;
}

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

.payment-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.payment-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.payment-icon {
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.payment-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.payment-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.address-container {
  margin-bottom: 20px;
}

.address-field {
  margin-bottom: 16px;
}

.address-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.address-display {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.address-text {
  flex: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--text);
  word-break: break-all;
  background: none;
  border: none;
  outline: none;
}

.copy-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.copy-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.copy-button.copied {
  background: var(--success);
  transform: scale(1.05);
}

.copy-button.copied:hover {
  background: var(--success);
}

/* Transaction Status */
.transaction-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px 0;
}

.status-indicator {
  position: relative;
  width: 16px;
  height: 16px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

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

.transaction-status.confirmed .status-dot {
  background: var(--success);
  animation: none;
}

.transaction-status.confirmed .status-text {
  color: var(--success);
  font-weight: 500;
}

/* Network Specifications */
.network-specifications {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.spec-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

/* Corporate Button */
.corporate-btn {
  width: 100%;
  height: 48px;
  background: var(--text);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.corporate-btn:hover {
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.corporate-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Investment Sidebar */
.investment-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefits-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.benefits-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-indicator {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.benefit-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Recent Contributors */
.recent-contributors {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
}

.contributors-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.contributors-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Security Section */
.security-section {
  padding: 60px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.security-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.security-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.security-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.security-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.security-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

/* Form Messages */
.form-message {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
}

.form-message.success {
  background: rgba(40, 167, 69, 0.1);
  color: var(--success);
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-message.error {
  background: rgba(218, 54, 51, 0.1);
  color: var(--error);
  border: 1px solid rgba(218, 54, 51, 0.2);
}

.form-message.info {
  background: rgba(139, 148, 158, 0.1);
  color: var(--primary);
  border: 1px solid rgba(139, 148, 158, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .investment-sidebar {
    order: -1;
  }
  
  .hero-metrics {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .corporate-hero {
    padding: 60px 0 40px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-metrics {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .tier-options {
    grid-template-columns: 1fr;
  }
  
  .corporate-form-card {
    padding: 32px 24px;
  }
  
  .benefits-card {
    padding: 24px;
  }
  
  .security-features {
    grid-template-columns: 1fr;
  }
  
  .network-specifications {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .corporate-form-section {
    padding: 40px 0;
  }
  
  .form-layout {
    gap: 24px;
  }
  
  .corporate-form-card,
  .benefits-card {
    padding: 20px;
  }
  
  .address-display {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .copy-button {
    align-self: center;
  }
}

.form-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Main Form Card */
.premium-form-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 20px 25px -5px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.premium-form-card:hover {
  box-shadow: 
    0 8px 25px -5px rgba(0, 0, 0, 0.1),
    0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-title {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.form-subtitle {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Amount Selector */
.amount-selector {
  margin-bottom: 40px;
}

.amount-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.amount-option {
  position: relative;
  padding: 24px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
}

.amount-option:hover {
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(102, 126, 234, 0.15);
}

.amount-option.selected {
  border-color: #667eea;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  transform: translateY(-2px);
}

.amount-option.featured {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-4px);
}

.amount-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.amount-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.amount-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 4px;
  opacity: 0.9;
}

.amount-benefit {
  font-size: 0.75rem;
  opacity: 0.7;
  line-height: 1.3;
}

.amount-option.featured .amount-value,
.amount-option.featured .amount-label,
.amount-option.featured .amount-benefit {
  color: inherit;
}

/* Custom Amount Input */
.custom-amount {
  margin-top: 24px;
}

.amount-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

.amount-input-wrapper:focus-within {
  border-color: #667eea;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-prefix,
.input-suffix {
  font-family: var(--font-mono);
  font-weight: 600;
  color: #6b7280;
  font-size: 1.125rem;
}

.input-prefix {
  margin-right: 8px;
}

.input-suffix {
  margin-left: 8px;
}

#donateAmount {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  outline: none;
}

#donateAmount::placeholder {
  color: #9ca3af;
  font-weight: 500;
}

/* ============================================
   ADDRESS GENERATION SECTION
   ============================================ */

.address-generation {
  margin: 32px 0;
  animation: slideIn 0.5s ease-out;
}

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

.address-card-premium {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 32px;
  color: white;
  position: relative;
  overflow: hidden;
}

.address-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

.address-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.address-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.address-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.address-amount {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  opacity: 0.9;
}

.address-display-premium {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.address-text-premium {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  word-break: break-all;
  line-height: 1.4;
}

.copy-button-premium {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.copy-button-premium:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.copy-button-premium:active {
  transform: translateY(0);
}

/* Transaction Monitor */
.transaction-monitor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.monitor-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.pulse-ring {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: pulse-ring-animation 2s infinite;
}

.pulse-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-dot-animation 2s infinite;
}

@keyframes pulse-ring-animation {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse-dot-animation {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.monitor-text {
  font-size: 0.875rem;
  opacity: 0.9;
}

.network-info-premium {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.network-badge-premium,
.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

/* ============================================
   PREMIUM BUTTON
   ============================================ */

.generate-btn-premium {
  position: relative;
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.btn-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: all 0.3s ease;
}

.generate-btn-premium:hover .btn-gradient {
  transform: scale(1.05);
  filter: saturate(1.2) brightness(1.1);
}

.generate-btn-premium:active .btn-gradient {
  transform: scale(0.98);
}

.btn-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  color: white;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   BENEFITS SIDEBAR
   ============================================ */

.benefits-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefits-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.benefits-title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f0f2ff 0%, #e0e7ff 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.benefit-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Recent Supporters */
.recent-supporters {
  background: #f9fafb;
  border-radius: 16px;
  padding: 24px;
}

.supporters-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.supporters-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
  padding: 60px 0;
  background: #f9fafb;
}

.trust-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.trust-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.trust-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.trust-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.trust-icon {
  font-size: 1.25rem;
  opacity: 0.8;
}

.trust-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .benefits-sidebar {
    order: -1;
  }
  
  .hero-stats {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .premium-hero {
    padding: 80px 0 60px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .amount-options {
    grid-template-columns: 1fr;
  }
  
  .premium-form-card {
    padding: 24px;
  }
  
  .benefits-card {
    padding: 24px;
  }
  
  .trust-features {
    grid-template-columns: 1fr;
  }
  
  .address-card-premium {
    padding: 24px;
  }
  
  .network-info-premium {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .premium-form-section {
    padding: 40px 0;
  }
  
  .form-layout {
    gap: 24px;
  }
  
  .premium-form-card,
  .benefits-card {
    padding: 20px;
  }
  
  .address-display-premium {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .copy-button-premium {
    align-self: center;
  }
}

/* Form Message Styles */
.form-message {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.form-message.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #d1fae5;
}

.form-message.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-message.info {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #dbeafe;
}

/* Mobile responsiveness for new donate page layout */
@media (max-width: 1024px) {
  .donate-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .donate-right {
    order: -1;
  }
}

@media (max-width: 768px) {
  .donate-hero {
    padding: var(--space-xl) 0;
  }
  
  .donate-hero h1 {
    font-size: 2rem;
  }
  
  .donate-hero .subtitle {
    font-size: 1.1rem;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .stat-card {
    padding: var(--space-md);
  }
  
  .stat-icon {
    font-size: 1.5rem;
  }
  
  .stat-content .stat-value {
    font-size: 1.4rem;
  }
  
  .quick-amounts {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impact-list {
    gap: var(--space-sm);
  }
  
  .impact-item {
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .rewards-list {
    gap: var(--space-xs);
  }
  
  .reward-item {
    align-items: center;
  }
  
  .donation-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
    padding: var(--space-sm);
  }
  
  .network-info {
    flex-direction: column;
    gap: var(--space-xs);
  }
}

@media (max-width: 480px) {
  .donate-hero h1 {
    font-size: 1.8rem;
  }
  
  .donate-hero .subtitle {
    font-size: 1rem;
  }
  
  .info-card, .form-card, .donations-card, .rewards-card, .thank-you-compact {
    padding: var(--space-lg);
  }
  
  .quick-amounts {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .donate-btn-main {
    font-size: 1rem;
    padding: var(--space-md);
  }
}

/* Remove old modal styles that are no longer needed */
.donate-modal {
  display: none !important;
}

/* ============================================
   DONATION FORM STYLES
   ============================================ */

/* Trust indicators */
.trust-indicators {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9rem;
  color: var(--text-light);
}

.trust-icon {
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--primary);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  min-width: 60px;
  text-align: center;
}

/* Donation form */
.donation-form {
  margin-top: var(--space-xl);
}

.form-field {
  margin-bottom: var(--space-lg);
}

.field-label {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.field-input {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.field-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.field-hint {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: var(--space-xs);
}

/* Amount input */
.amount-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.amount-input {
  padding-right: 80px !important;
}

.amount-currency {
  position: absolute;
  right: var(--space-md);
  color: var(--text-light);
  font-weight: 600;
  pointer-events: none;
}

/* Network selector */
.network-selector {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.network-option {
  display: flex;
  align-items: center;
  padding: var(--space-lg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  cursor: pointer;
  transition: all 0.3s ease;
  gap: var(--space-md);
  justify-content: flex-start;
}

.network-logo {
  flex-shrink: 0;
}

.currency-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.network-option:hover {
  border-color: var(--primary);
  background: var(--surface);
}

.network-option.active {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
}

.network-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.network-name {
  font-weight: 600;
  color: var(--text);
}

.network-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

.network-badge {
  background: var(--primary);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Donate button */
.donate-btn {
  width: 100%;
  color: white;
  border: none;
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--primary-gradient);
}

.donate-btn.usdt-gradient {
  background: linear-gradient(135deg, #26a17b 0%, #50c878 25%, #90ee90 50%, #50c878 75%, #26a17b 100%);
  box-shadow: 0 4px 15px rgba(38, 161, 123, 0.3);
}

.donate-btn.usdc-gradient {
  background: linear-gradient(135deg, #2775ca 0%, #4a90e2 25%, #87ceeb 50%, #4a90e2 75%, #2775ca 100%);
  box-shadow: 0 4px 15px rgba(39, 117, 202, 0.3);
}

.donate-btn:hover {
  transform: translateY(-2px);
}

.donate-btn.usdt-gradient:hover {
  box-shadow: 0 8px 25px rgba(38, 161, 123, 0.4);
}

.donate-btn.usdc-gradient:hover {
  box-shadow: 0 8px 25px rgba(39, 117, 202, 0.4);
}

.donate-btn:not(.usdt-gradient):not(.usdc-gradient):hover {
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}

.donate-btn:active {
  transform: translateY(0);
}



/* Security notice */
.security-notice {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.security-icon {
  font-size: 1.2rem;
  margin-top: 2px;
}

.security-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.privacy-link {
  color: var(--primary);
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Confirmation Modal */
.confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
}

.confirmation-modal.show {
  display: flex;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.modal-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1001;
}

.confirmation-modal.show .modal-content {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border);
  background: var(--primary-gradient);
  color: white;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-body {
  padding: var(--space-lg);
}

.confirmation-details {
  margin-bottom: var(--space-lg);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  min-height: 40px;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: var(--text-light);
}

.detail-value {
  font-weight: 600;
  color: var(--text);
}

.confirmation-warning {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: var(--radius);
}

.warning-icon {
  font-size: 1.2rem;
  margin-top: 2px;
}

.warning-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-top: 1px solid var(--border);
}

.btn-secondary {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--border);
  background: var(--background);
  color: var(--text);
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--text-light);
  background: var(--surface);
}

.btn-primary {
  flex: 2;
  padding: var(--space-md) var(--space-lg);
  border: none;
  background: var(--primary-gradient);
  color: white;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

/* Payment actions */
.payment-actions {
  margin-top: var(--space-lg);
  text-align: center;
}

.funds-sent-btn {
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  color: white;
  border: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-sm);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
  width: 100%;
}

.funds-sent-btn .btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.funds-sent-btn .btn-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.funds-sent-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
  background: linear-gradient(135deg, #059669 0%, var(--success) 100%);
}

.funds-sent-btn:active {
  transform: translateY(0);
}

.action-hint {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: var(--space-xs);
}

/* Update benefit indicators */
.benefit-indicator {
  background: var(--primary);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 50px;
  text-align: center;
  flex-shrink: 0;
}

.benefit-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-title {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
  text-align: center;
}

/* Update security icon */
.security-icon {
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--primary);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  min-width: 60px;
  text-align: center;
  margin-top: 2px;
}

/* Update warning icon */
.warning-icon {
  font-size: 0.8rem;
  font-weight: 600;
  background: #ffc107;
  color: #000;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  min-width: 70px;
  text-align: center;
  margin-top: 2px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .trust-indicators {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .network-option {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .modal-content {
    width: 95%;
    margin: var(--space-md);
  }

  .modal-actions {
    flex-direction: column;
  }

  .currency-logo {
    width: 24px;
    height: 24px;
  }
}

/* Thank you message */
.thank-you-message {
  margin-top: var(--space-xl);
  padding: 0;
  background: transparent;
  border-radius: var(--radius-lg);
  animation: slideInUp 0.5s ease-out;
  position: relative;
}

.thank-you-content {
  background: linear-gradient(135deg, #059669 0%, #10b981 25%, #34d399 50%, #10b981 75%, #059669 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(5, 150, 105, 0.3);
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}

.thank-you-icon {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.thank-you-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.thank-you-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  opacity: 0.95;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.thank-you-benefits {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.thank-you-benefits p {
  margin-bottom: var(--space-md);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
}

.thank-you-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.thank-you-benefits li {
  padding: var(--space-sm) 0;
  position: relative;
  padding-left: var(--space-lg);
  font-size: 1rem;
  line-height: 1.6;
}

.thank-you-benefits li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: var(--space-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: bold;
  font-size: 1.1rem;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.thank-you-footer {
  font-style: italic;
  opacity: 0.9;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

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

/* Success Modal Styles */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
}

.success-modal.show {
  display: flex;
  opacity: 1;
}

.success-content {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  max-width: 600px;
  width: 90%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.success-modal.show .success-content {
  transform: scale(1) translateY(0);
}

.success-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.success-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.success-body {
  padding: var(--space-xl);
}

.success-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 var(--space-lg) 0;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.success-message {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  text-align: center;
  opacity: 0.95;
}

.success-next-steps {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.next-steps-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 var(--space-md) 0;
  color: white;
}

.next-steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.next-step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.step-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-text {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.95;
}

.success-footer {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.9;
  font-style: italic;
}

/* Mobile responsiveness for success modal */
@media (max-width: 768px) {
  .success-content {
    margin: var(--space-md);
    width: calc(100% - 2 * var(--space-md));
  }

  .success-title {
    font-size: 1.6rem;
  }

  .success-message {
    font-size: 1rem;
  }

  .success-body {
    padding: var(--space-lg);
  }
}

