/* CSS Variables for Futuristic Theme */
:root {
  /* Core Colors */
  --primary-blue: #0066ff;
  --secondary-blue: #4d94ff;
  --accent-orange: #ff6b35;
  --light-orange: #ff8c5a;
  
  /* Dark Mode (Default) */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: rgba(17, 17, 17, 0.8);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: rgba(0, 102, 255, 0.2);
  --shadow-light: rgba(0, 0, 0, 0.3);
  --shadow-medium: rgba(0, 0, 0, 0.5);
  --glow-primary: rgba(0, 102, 255, 0.6);
  --glow-orange: rgba(255, 107, 53, 0.6);
}

[data-theme="light"] {
  /* Light Mode */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #e2e8f0;
  --bg-card: rgba(255, 255, 255, 0.7);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border-color: rgba(0, 102, 255, 0.1);
  --shadow-light: rgba(0, 102, 255, 0.1);
  --shadow-medium: rgba(0, 102, 255, 0.2);
  --glow-primary: rgba(0, 102, 255, 0.4);
  --glow-orange: rgba(255, 107, 53, 0.4);
}

[data-theme="dark"] {
  /* Dark Mode (Explicit) */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: rgba(17, 17, 17, 0.8);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: rgba(0, 102, 255, 0.2);
  --shadow-light: rgba(0, 0, 0, 0.3);
  --shadow-medium: rgba(0, 0, 0, 0.5);
  --glow-primary: rgba(0, 102, 255, 0.6);
  --glow-orange: rgba(255, 107, 53, 0.6);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Simplified Background Animation */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 25% 25%, var(--glow-primary) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, var(--glow-orange) 0%, transparent 50%);
  opacity: 0.03;
  z-index: -2;
  animation: ambientFloat 20s ease-in-out infinite;
}

@keyframes ambientFloat {
  0%, 100% { 
    transform: translateY(0px) scale(1); 
    opacity: 0.03;
  }
  50% { 
    transform: translateY(-20px) scale(1.05); 
    opacity: 0.05;
  }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .navbar {
  background: rgba(10, 10, 10, 0.7);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo h2 {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.nav-menu a:hover {
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  padding-top: 120px;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
  padding-top: 120px; /* Account for navbar height + extra space */
  padding-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(1px);
}

[data-theme="dark"] .hero-image-bg img {
  opacity: 0.1;
  filter: blur(1px) brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1) 0%,
    rgba(255, 107, 53, 0.1) 100%
  );
}

/* Hero Code Snippet */
.hero-code-snippet {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  opacity: 0.8;
}

.code-window {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.code-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-dots {
  display: flex;
  gap: 0.5rem;
}

.code-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}

.code-dots span:nth-child(2) {
  background: #ffbd2e;
}

.code-dots span:nth-child(3) {
  background: #28ca42;
}

.code-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-family: 'Monaco', 'Menlo', monospace;
}

.code-content {
  padding: 1rem;
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
}

.code-line {
  margin-bottom: 0.5rem;
}

.code-keyword {
  color: #ff79c6;
}

.code-variable {
  color: #8be9fd;
}

.code-operator {
  color: #ff79c6;
}

.code-function {
  color: #50fa7b;
}

.code-string {
  color: #f1fa8c;
}

.code-comment {
  color: #6272a4;
  font-style: italic;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 40%, var(--glow-primary) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, var(--glow-orange) 50%, transparent 60%);
  opacity: 0.08;
  animation: heroFlow 15s ease-in-out infinite;
  z-index: -1;
}

@keyframes heroFlow {
  0%, 100% { transform: translateX(-50%) translateY(-50%); }
  50% { transform: translateX(50%) translateY(50%); }
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 20px 30px, var(--primary-blue), transparent),
    radial-gradient(1px 1px at 40px 70px, var(--accent-orange), transparent);
  background-repeat: repeat;
  background-size: 80px 80px;
  opacity: 0.2;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-50px); }
}

.hero-container {
  max-width: 800px;
  padding: 0 2rem;
  animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(20px);
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 5px 20px var(--shadow-light); }
  50% { box-shadow: 0 8px 25px var(--glow-primary); }
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.title-line {
  display: block;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Enhanced Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.5rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  min-width: 200px;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  box-shadow: 0 10px 40px var(--shadow-medium);
}

.btn-primary .btn-glow {
  background: linear-gradient(135deg, var(--glow-primary), var(--glow-primary));
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px var(--glow-primary);
}

.btn-primary:hover .btn-glow {
  opacity: 0.3;
}

.btn-secondary {
  background: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
  backdrop-filter: blur(20px);
}

.btn-secondary .btn-glow {
  background: var(--accent-orange);
}

.btn-secondary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px var(--glow-orange);
}

.btn-secondary:hover .btn-glow {
  opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, var(--primary-blue), transparent);
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--primary-blue);
  border-bottom: 2px solid var(--primary-blue);
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Section Badges */
.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(20px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Journey Section */
.journey {
  padding: 5rem 0;
  position: relative;
  background: var(--bg-secondary);
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 20%, var(--glow-primary) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, var(--glow-orange) 0%, transparent 50%);
  opacity: 0.03;
  z-index: -1;
}

.journey-header {
  text-align: center;
  margin-bottom: 3rem;
}

.journey h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.journey-intro {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Ecosystem Visual */
.ecosystem-visual {
  position: relative;
  margin: 3rem 0;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecosystem-center {
  position: absolute;
  z-index: 2;
}

.center-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 20px 60px var(--glow-primary);
  animation: centerPulse 4s ease-in-out infinite;
}

@keyframes centerPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 15px 40px var(--glow-primary); }
  50% { transform: scale(1.02); box-shadow: 0 20px 50px var(--glow-primary); }
}

.ecosystem-nodes {
  position: relative;
  width: 400px;
  height: 400px;
}

.ecosystem-node {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.ecosystem-node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.ecosystem-node:nth-child(2) { top: 25%; right: 0; }
.ecosystem-node:nth-child(3) { bottom: 25%; right: 0; }
.ecosystem-node:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.ecosystem-node:nth-child(5) { top: 25%; left: 0; }

.ecosystem-node:hover {
  transform: translateX(-50%) translateY(-8px);
  border-color: var(--primary-blue);
  box-shadow: 0 20px 40px var(--glow-primary);
}

.ecosystem-node:nth-child(2):hover,
.ecosystem-node:nth-child(3):hover,
.ecosystem-node:nth-child(5):hover {
  transform: translateY(-8px);
}

.node-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.ecosystem-node span {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-secondary);
}

/* Mission Grid */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.mission-card {
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mission-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.8) 0%,
    rgba(255, 107, 53, 0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover .mission-overlay {
  opacity: 1;
}

.mission-card:hover .mission-image img {
  transform: scale(1.1);
}

.mission-content {
  padding: 2rem;
  text-align: center;
  flex: 1;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--glow-primary), transparent);
  transition: left 0.6s ease;
  opacity: 0.1;
}

.mission-card:hover::before {
  left: 100%;
}

.mission-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: 0 30px 60px var(--shadow-medium);
}

.mission-icon {
  font-size: 3rem;
  color: white;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover .mission-icon {
  transform: scale(1);
}

.mission-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.mission-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.05rem;
}

/* Products Section */
.products {
  padding: 5rem 0;
  background: var(--bg-primary);
  position: relative;
}

.products-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 40%, var(--glow-primary) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, var(--glow-orange) 50%, transparent 60%);
  opacity: 0.02;
  z-index: -1;
}

.products-header {
  text-align: center;
  margin-bottom: 3rem;
}

.products h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products-intro {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.products-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.product-spotlight {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem;
  background: var(--bg-card);
  border-radius: 32px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-spotlight:nth-child(even) {
  grid-template-columns: 2fr 1fr;
}

.product-spotlight:nth-child(even) .product-visual {
  order: 2;
}

.product-spotlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px var(--shadow-medium);
  border-color: var(--primary-blue);
}

.product-visual {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
}

.product-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.7) 0%,
    rgba(255, 107, 53, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-spotlight:hover .product-image-overlay {
  opacity: 1;
}

.product-spotlight:hover .product-image img {
  transform: scale(1.1);
}

.product-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
  animation: productGlow 3s ease-in-out infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes productGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.product-icon-large {
  font-size: 4rem;
  z-index: 2;
  position: relative;
  color: white;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-spotlight:hover .product-icon-large {
  transform: scale(1);
}

.product-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-details h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.product-details p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.feature-tag {
  padding: 0.5rem 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Innovation Pipeline */
.innovation-pipeline {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 24px;
  border: 2px dashed var(--border-color);
  backdrop-filter: blur(20px);
  text-align: center;
}

.pipeline-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.pipeline-header p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.pipeline-items {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pipeline-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--bg-primary);
  border-radius: 30px;
  border: 1px solid var(--border-color);
  font-weight: 500;
  color: var(--text-secondary);
}

.pipeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  animation: pipelinePulse 2s ease-in-out infinite;
}

@keyframes pipelinePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* Community Section */
.community {
  padding: 5rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.community-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 70%, var(--glow-primary) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, var(--glow-orange) 0%, transparent 50%);
  opacity: 0.04;
  z-index: -1;
}

.community-header {
  text-align: center;
  margin-bottom: 3rem;
}

.community h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.community-intro {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.community-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.community-card {
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.community-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.community-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.8) 0%,
    rgba(0, 102, 255, 0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.community-card:hover .community-image-overlay {
  opacity: 1;
}

.community-card:hover .community-image img {
  transform: scale(1.1);
}

.community-content {
  padding: 2rem;
  text-align: center;
  flex: 1;
}

.community-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--glow-orange), transparent);
  transition: left 0.6s ease;
  opacity: 0.1;
}

.community-card:hover::before {
  left: 100%;
}

.community-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-orange);
  box-shadow: 0 30px 60px var(--glow-orange);
}

.community-icon {
  font-size: 3rem;
  color: white;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.community-card:hover .community-icon {
  transform: scale(1);
}

.community-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.community-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.05rem;
}

.community-cta {
  text-align: center;
}

.community-btn {
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  font-style: italic;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), var(--accent-orange), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  align-items: center;
  text-align: center;
}

.footer-brand h3 {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact a {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--light-orange);
  text-shadow: 0 0 10px var(--glow-orange);
}

/* Theme Toggle */
.theme-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 30px var(--shadow-medium);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px var(--glow-primary);
}

.theme-icon {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

[data-theme="dark"] .theme-icon {
  transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .product-spotlight {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  
  .product-spotlight:nth-child(even) .product-visual {
    order: 0;
  }
  
  .product-visual {
    height: 250px;
  }
  
  .ecosystem-visual {
    height: 400px;
  }
  
  .ecosystem-nodes {
    width: 300px;
    height: 300px;
  }
  
  .ecosystem-node {
    width: 80px;
    height: 80px;
  }
  
  .center-logo {
    width: 100px;
    height: 100px;
    font-size: 1rem;
  }
  
  .mission-image,
  .community-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hero {
    padding-top: 100px;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    min-height: 100vh;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .mission-grid,
  .community-features {
    grid-template-columns: 1fr;
  }
  
  .mission-image,
  .community-image {
    height: 150px;
  }
  
  .mission-content,
  .community-content {
    padding: 1.5rem;
  }
  
  .product-visual {
    height: 200px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .theme-toggle {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .ecosystem-visual {
    height: 300px;
  }
  
  .ecosystem-nodes {
    width: 250px;
    height: 250px;
  }
  
  .ecosystem-node {
    width: 60px;
    height: 60px;
  }
  
  .node-icon {
    font-size: 1.5rem;
  }
  
  .ecosystem-node span {
    font-size: 0.65rem;
  }
  
  .center-logo {
    width: 80px;
    height: 80px;
    font-size: 0.9rem;
  }
  
  .pipeline-items {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-code-snippet {
    margin-top: 2rem;
  }
  
  .code-window {
    max-width: 300px;
  }
  
  .code-content {
    padding: 0.75rem;
    font-size: 0.75rem;
  }
}

/* Smooth Animations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--secondary-blue), var(--light-orange));
}

/* Selection */
::selection {
  background: var(--glow-primary);
  color: white;
}

::-moz-selection {
  background: var(--glow-primary);
  color: white;
}

/* Focus States */
.btn:focus,
.theme-toggle:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Loading States */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 2s infinite;
}/* Com
munity Contact Styling */
.community-contact {
  margin-top: 1.5rem;
  text-align: center;
}

.community-contact p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

.community-contact a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.community-contact a:hover {
  color: var(--secondary-blue);
  text-decoration: underline;
}

/* Footer Contact Enhancement */
.footer-contact p {
  margin: 0.25rem 0;
}

.footer-contact a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--secondary-blue);
  text-decoration: underline;
}/* Cont
act Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
  padding: 6rem 0 2rem 0;
  margin-top: 80px;
}

.contact-hero-content {
  max-width: 700px;
  padding: 0 2rem;
  animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.contact-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.5;
}

/* Contact Content */
.contact-content {
  padding: 5rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Form */
.contact-form-section {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--glow-primary), transparent);
  transition: left 0.6s ease;
  opacity: 0.05;
}

.contact-form-section:hover::before {
  left: 100%;
}

.form-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.input-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--glow-primary), var(--glow-orange));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.form-group input:focus + .input-glow,
.form-group select:focus + .input-glow,
.form-group textarea:focus + .input-glow {
  opacity: 0.1;
}

.form-submit {
  margin-top: 1rem;
  width: 100%;
  justify-self: center;
}

/* Contact Information */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--glow-orange), transparent);
  transition: left 0.6s ease;
  opacity: 0.05;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.contact-card.highlight {
  border: 2px solid var(--accent-orange);
  background: linear-gradient(135deg, var(--bg-card), rgba(255, 107, 53, 0.05));
}

.contact-card.highlight:hover {
  border-color: var(--light-orange);
  box-shadow: 0 20px 40px var(--glow-orange);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contact-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--secondary-blue);
  text-shadow: 0 0 10px var(--glow-primary);
}

.location-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 0 !important;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  padding: 0.5rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--glow-primary);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 10px 30px var(--shadow-light);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 102, 255, 0.05);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--accent-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Active Navigation Link */
.nav-menu a.active {
  color: var(--primary-blue);
}

.nav-menu a.active::after {
  width: 100%;
}

/* Contact Page Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info-section {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 60vh;
  }
  
  .contact-form-section {
    padding: 2rem 1.5rem;
  }
  
  .contact-card {
    padding: 2rem 1.5rem;
  }
  
  .social-links {
    flex-direction: column;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-answer p {
    padding: 0 1.5rem 1.25rem;
  }
}/*
 Social Icons */
.social-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-links a:hover .social-icon,
.social-link:hover .social-icon {
  transform: scale(1.2);
}

/* WhatsApp specific styling */
a[href*="whatsapp"] .social-icon {
  color: #25D366;
}

a[href*="linkedin"] .social-icon {
  color: #0077B5;
}

a[href*="twitter"] .social-icon {
  color: #1DA1F2;
}

a[href*="youtube"] .social-icon {
  color: #FF0000;
}

/* Contact page specific phone number styling */
.community-contact a[href^="tel:"] {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.community-contact a[href^="tel:"]:hover {
  color: var(--light-orange);
  text-shadow: 0 0 10px var(--glow-orange);
}

.community-contact a[href^="tel:"]::before {
  content: "📞 ";
  margin-right: 0.25rem;
}

/* Email styling */
a[href^="mailto:"]::before {
  content: "📧 ";
  margin-right: 0.25rem;
}

/* Ensure proper spacing for all pages */
.hero,
.contact-hero,
.services-hero {
  padding-top: 120px;
  margin-top: 0;
}

@media (max-width: 768px) {
  .hero,
  .contact-hero,
  .services-hero {
    padding-top: 100px;
  }
  
  .social-icon {
    font-size: 1rem;
    margin-right: 0.25rem;
  }
}/* 
Professional Enhancements */

/* Partners Section */
.partners-section {
  padding: 3rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.partners-header {
  text-align: center;
  margin-bottom: 2rem;
}

.partners-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  opacity: 0.7;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.logo-placeholder {
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--glow-primary), transparent);
  transition: left 0.6s ease;
  opacity: 0.05;
}

.testimonial-card:hover::before {
  left: 100%;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-blue);
  box-shadow: 0 25px 50px var(--shadow-medium);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  opacity: 0.3;
  margin-bottom: 1rem;
  font-family: serif;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-placeholder {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  color: white;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.newsletter-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.newsletter-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.newsletter-privacy {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

/* Professional Loading Animation */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Professional Hover Effects */
.professional-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.professional-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Professional Elements */
@media (max-width: 1024px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .newsletter-form .form-group {
    flex-direction: column;
  }
  
  .newsletter-form button {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
}/*
 Professional Notification System */
.professional-notification {
    font-family: 'Inter', sans-serif;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    font-weight: 500;
    font-size: 0.95rem;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-info {
    border-left: 4px solid var(--primary-blue);
}

/* Professional Loading States */
.professional-loaded {
    opacity: 1;
}

.professional-loaded .hero-container {
    animation: professionalFadeIn 1s ease-out;
}

@keyframes professionalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Professional Focus States */
.newsletter-form input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    border-color: var(--primary-blue);
}

/* Professional Button States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Professional Typography Enhancements */
.section-badge {
    font-weight: 600;
    font-size: 0.8rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Professional Accessibility */
@media (prefers-reduced-motion: reduce) {
    .stat-number,
    .testimonial-card,
    .partner-logo,
    .professional-notification {
        animation: none !important;
        transition: none !important;
    }
}

/* Professional Print Styles */
@media print {
    .navbar,
    .theme-toggle,
    .hero-bg-animation,
    .hero-particles,
    .newsletter-section {
        display: none !important;
    }
    
    .hero {
        padding-top: 2rem;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Professional High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --shadow-light: rgba(0, 0, 0, 0.5);
        --shadow-medium: rgba(0, 0, 0, 0.7);
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}/* Restruct
ured Website Styles */

/* Hero Value Props */
.hero-value-props {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.value-prop:hover {
  transform: translateY(-2px);
  border-color: var(--primary-blue);
  box-shadow: 0 10px 20px var(--shadow-light);
}

.prop-icon {
  font-size: 1.2rem;
}

.value-prop span {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

/* About Section (formerly Journey) */
.about-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-intro {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Business Model Grid */
.business-model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin: 4rem 0;
}

.business-model-card {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  border: 2px solid var(--border-color);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.business-model-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--glow-primary), transparent);
  transition: left 0.6s ease;
  opacity: 0.05;
}

.business-model-card:hover::before {
  left: 100%;
}

.software-card {
  border-color: var(--primary-blue);
}

.software-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px var(--glow-primary);
  border-color: var(--secondary-blue);
}

.venture-card {
  border-color: var(--accent-orange);
}

.venture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px var(--glow-orange);
  border-color: var(--light-orange);
}

.model-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.business-model-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.business-model-card p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.model-features {
  list-style: none;
  padding: 0;
}

.model-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.model-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.venture-card .model-features li::before {
  color: var(--accent-orange);
}

/* Value Proposition Flow */
.value-proposition {
  margin: 4rem 0;
  text-align: center;
}

.value-prop-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.value-prop-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.value-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.flow-step {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  max-width: 250px;
  transition: all 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: 0 15px 30px var(--shadow-medium);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.flow-arrow {
  font-size: 2rem;
  color: var(--primary-blue);
  font-weight: bold;
}

/* Software Section */
.software-section {
  padding: 5rem 0;
  background: var(--bg-primary);
  position: relative;
}

.software-header {
  text-align: center;
  margin-bottom: 4rem;
}

.software-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.software-intro {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Ventures Section */
.ventures-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.ventures-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ventures-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-orange), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ventures-intro {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
}

.venture-service {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.venture-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--glow-orange), transparent);
  transition: left 0.6s ease;
  opacity: 0.05;
}

.venture-service:hover::before {
  left: 100%;
}

.venture-service:hover {
  transform: translateY(-8px);
  border-color: var(--accent-orange);
  box-shadow: 0 25px 50px var(--glow-orange);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.venture-service h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.venture-service p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.4rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: bold;
}

/* Investment Focus */
.investment-focus {
  text-align: center;
  margin: 4rem 0;
}

.investment-focus h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.focus-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.focus-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.focus-area:hover {
  transform: translateY(-3px);
  border-color: var(--accent-orange);
  box-shadow: 0 10px 20px var(--shadow-light);
}

.focus-icon {
  font-size: 1.5rem;
}

.focus-area span:last-child {
  font-weight: 600;
  color: var(--text-primary);
}

/* Venture CTA */
.venture-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
}

.venture-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.venture-cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
  .business-model-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .value-flow {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
  
  .ventures-grid {
    grid-template-columns: 1fr;
  }
  
  .focus-areas {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-value-props {
    flex-direction: column;
    align-items: center;
  }
  
  .business-model-card {
    padding: 2rem 1.5rem;
  }
  
  .focus-areas {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}/*
 Unified Ecosystem Design Styles */

/* Hero Ecosystem Flow */
.ecosystem-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
  padding: 2rem;
  background: rgba(0, 102, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
}

.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  min-width: 100px;
}

.flow-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: 0 10px 30px var(--glow-primary);
}

.flow-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.flow-item span {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
  text-align: center;
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--primary-blue);
  font-weight: bold;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Ecosystem Section */
.ecosystem-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.ecosystem-header {
  text-align: center;
  margin-bottom: 5rem;
}

.ecosystem-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ecosystem-intro {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Ecosystem Pillars */
.ecosystem-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin: 5rem 0;
}

.pillar-card {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  border: 2px solid var(--border-color);
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pillar-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--glow-primary) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.build-pillar:hover .pillar-glow {
  background: radial-gradient(circle at center, var(--glow-primary) 0%, transparent 70%);
  opacity: 0.1;
}

.invest-pillar:hover .pillar-glow {
  background: radial-gradient(circle at center, var(--glow-orange) 0%, transparent 70%);
  opacity: 0.1;
}

.connect-pillar:hover .pillar-glow {
  background: radial-gradient(circle at center, var(--secondary-blue) 0%, transparent 70%);
  opacity: 0.1;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-blue);
  box-shadow: 0 25px 50px var(--shadow-medium);
}

.pillar-icon {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  display: block;
  text-align: center;
}

.pillar-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-align: center;
}

.pillar-card p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: center;
}

.pillar-features {
  list-style: none;
  padding: 0;
}

.pillar-features li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.pillar-features li:last-child {
  border-bottom: none;
}

.pillar-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Ecosystem Flow Visual */
.ecosystem-flow-section {
  margin: 6rem 0;
  text-align: center;
}

.flow-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.flow-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
}

.ecosystem-flow-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(255, 107, 53, 0.05));
  border-radius: 30px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
}

.flow-step-large {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  max-width: 200px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--glow-primary) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.flow-step-large:hover .step-glow {
  opacity: 0.15;
}

.flow-step-large:hover {
  transform: translateY(-6px);
  border-color: var(--primary-blue);
  box-shadow: 0 20px 40px var(--glow-primary);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.flow-step-large h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.flow-step-large p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.flow-connector {
  position: relative;
  width: 60px;
  height: 4px;
}

.connector-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  border-radius: 2px;
}

.connector-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 4px;
  background: var(--accent-orange);
  border-radius: 2px;
  animation: connectorFlow 3s ease-in-out infinite;
}

@keyframes connectorFlow {
  0% { left: 0; opacity: 1; }
  100% { left: calc(100% - 8px); opacity: 0.3; }
}

/* Code Section */
.code-section {
  padding: 4rem 0;
  background: var(--bg-primary);
  text-align: center;
}

.code-window {
  max-width: 600px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
}

.code-header {
  background: #2d2d2d;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.code-dots {
  display: flex;
  gap: 0.5rem;
}

.code-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f56;
}

.code-dots span:nth-child(2) {
  background: #ffbd2e;
}

.code-dots span:nth-child(3) {
  background: #27ca3f;
}

.code-title {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.code-content {
  padding: 2rem;
  text-align: left;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  line-height: 1.8;
}

.code-line {
  margin-bottom: 0.5rem;
}

.code-comment { color: #6a9955; }
.code-keyword { color: #569cd6; }
.code-variable { color: #9cdcfe; }
.code-operator { color: #d4d4d4; }
.code-function { color: #dcdcaa; }
.code-bracket { color: #ffd700; }

/* Impact Section */
.impact-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.impact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.impact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.stat-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--glow-primary) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}

.stat-item:hover .stat-glow {
  opacity: 0.1;
}

/* Trusted Section */
.trusted-section {
  padding: 3rem 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trusted-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.trusted-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  opacity: 0.8;
}

.trusted-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  transition: all 0.4s ease;
  position: relative;
}

.logo-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--glow-primary) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 8px;
}

.trusted-logo:hover .logo-glow {
  opacity: 0.15;
}

.trusted-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Responsive Design for Ecosystem */
@media (max-width: 1024px) {
  .ecosystem-flow {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
  
  .ecosystem-flow-visual {
    flex-direction: column;
    gap: 2rem;
  }
  
  .flow-connector {
    width: 4px;
    height: 60px;
  }
  
  .connector-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-orange));
  }
  
  .connector-pulse {
    width: 4px;
    height: 8px;
    animation: connectorFlowVertical 3s ease-in-out infinite;
  }
  
  @keyframes connectorFlowVertical {
    0% { top: 0; opacity: 1; }
    100% { top: calc(100% - 8px); opacity: 0.3; }
  }
}

@media (max-width: 768px) {
  .ecosystem-pillars {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pillar-card {
    padding: 2rem 1.5rem;
  }
  
  .ecosystem-flow {
    padding: 1.5rem;
  }
  
  .flow-item {
    min-width: 80px;
    padding: 0.75rem;
  }
  
  .ecosystem-flow-visual {
    padding: 2rem 1rem;
  }
  
  .flow-step-large {
    max-width: 180px;
    padding: 2rem 1.5rem;
  }
}/* Enhance
d Theme Toggle Functionality */
.theme-toggle:active {
  transform: scale(0.95);
}

.theme-toggle .theme-icon {
  transition: transform 0.3s ease;
  display: block;
  line-height: 1;
}

/* Ensure smooth theme transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Theme toggle visibility fix */
.theme-toggle {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Debug styles for theme toggle */
.theme-toggle[data-initialized="true"] {
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Ensure theme toggle works on all pages */
body {
  --theme-toggle-visible: 1;
}

/* Theme-specific adjustments */
[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --text-primary: #0f172a;
  --text-secondary: #475569;
}

[data-theme="dark"] {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
}

/* Force theme toggle to be visible */
#themeToggle {
  display: flex !important;
  position: fixed !important;
  z-index: 99999 !important;
}/*
 Font Awesome Icon Enhancements */
.theme-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.flow-icon i,
.pillar-icon i,
.step-icon i,
.mission-icon i,
.product-icon-large i,
.community-icon i,
.contact-icon i {
  display: block;
  width: 100%;
  text-align: center;
}

/* Social Icon Styling */
.social-icon i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

/* Specific icon colors */
.fab.fa-linkedin {
  color: #0077B5;
}

.fab.fa-x-twitter {
  color: #1DA1F2;
}

.fab.fa-youtube {
  color: #FF0000;
}

.fab.fa-whatsapp {
  color: #25D366;
}

/* Icon hover effects */
.social-icon:hover i {
  transform: scale(1.1);
}

/* Theme toggle icon rotation */
[data-theme="dark"] .theme-icon {
  transform: rotate(180deg);
}

/* Ensure icons are properly sized */
.pillar-icon,
.step-icon,
.mission-icon,
.product-icon-large,
.community-icon,
.contact-icon {
  font-size: inherit;
}

.pillar-icon i,
.step-icon i,
.mission-icon i,
.product-icon-large i,
.community-icon i,
.contact-icon i {
  font-size: inherit;
}/* En
hanced Theme Toggle Debugging */
[data-theme="light"] {
  --bg-primary: #ffffff !important;
  --bg-secondary: #f8fafc !important;
  --text-primary: #0f172a !important;
  --text-secondary: #475569 !important;
}

[data-theme="dark"] {
  --bg-primary: #0a0a0a !important;
  --bg-secondary: #111111 !important;
  --text-primary: #f8fafc !important;
  --text-secondary: #cbd5e1 !important;
}

/* Force theme toggle visibility and functionality */
.theme-toggle {
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange)) !important;
  border: none !important;
  color: white !important;
  font-size: 1.5rem !important;
  cursor: pointer !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.theme-toggle:hover {
  transform: translateY(-3px) scale(1.1) !important;
}

/* Debug indicator */
.theme-toggle::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: debugPulse 2s infinite;
}

@keyframes debugPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Theme transition for body */
body {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
}

/* Ensure theme changes are visible */
.navbar {
  background: var(--bg-primary) !important;
  color: var(--text-primary) !important;
}

/* Button E
xpansion Fix */
.btn {
  max-width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Prevent button expansion on hover/click */
.btn:hover,
.btn:active,
.btn:focus {
  max-width: 100% !important;
  width: auto !important;
  box-sizing: border-box !important;
}

/* Override any scaling that might cause expansion */
.btn:hover {
  transform: translateY(-2px) !important;
}

.btn:active {
  transform: scale(0.98) translateY(0px) !important;
}

/* Ensure theme toggle doesn't expand */
.theme-toggle:hover {
  transform: translateY(-2px) !important;
}

.theme-toggle:active {
  transform: scale(0.95) !important;
}

/* Fix for any card hover effects that might expand */
.mission-card:hover,
.product-spotlight:hover,
.community-card:hover,
.testimonial-card:hover,
.pillar-card:hover {
  transform: translateY(-5px) !important;
}

/* Prevent any element from scaling beyond reasonable limits */
* {
  max-width: 100%;
  box-sizing: border-box;
}

*:hover {
  transform: none;
}

/* Re-enable specific hover effects without scaling */
.btn-primary:hover {
  transform: translateY(-2px) !important;
}

.btn-secondary:hover {
  transform: translateY(-2px) !important;
}

/* Ensure buttons maintain their size */
.hero-buttons .btn,
.community-cta .btn,
.cta-buttons .btn {
  flex-shrink: 0;
  min-width: 200px;
  max-width: 300px;
}

/* Mobile button fixes */
@media (max-width: 768px) {
  .btn {
    width: 100%;
    max-width: 100%;
  }
  
  .hero-buttons .btn,
  .community-cta .btn,
  .cta-buttons .btn {
    min-width: auto;
    max-width: 100%;
  }
}/* 
Navbar Theme Toggle */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.theme-toggle-nav:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px var(--glow-primary);
}

.theme-toggle-nav .theme-icon {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

[data-theme="dark"] .theme-toggle-nav .theme-icon {
  transform: rotate(180deg);
}

/* WhatsApp Chat Button */
.whatsapp-chat {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 10000;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-chat:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
  color: white;
  text-decoration: none;
}

.whatsapp-chat:active {
  transform: scale(0.95);
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

/* WhatsApp Chat Tooltip */
.whatsapp-chat::before {
  content: 'Chat with us';
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-chat:hover::before {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-controls {
    display: none;
  }
  
  .whatsapp-chat {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .whatsapp-chat::before {
    display: none;
  }
}

/* Mobile navbar adjustments */
@media (max-width: 768px) {
  .nav-container {
    position: relative;
  }
  

}

/* Remove old theme toggle styles */
.theme-toggle {
  display: none !important;
}

/* Ensure WhatsApp button is always visible */
.whatsapp-chat {
  display: flex !important;
  position: fixed !important;
  z-index: 99999 !important;
}/* 
Enhanced WhatsApp Chat Button */
.whatsapp-chat i {
  font-size: 1.8rem;
  color: white;
  transition: transform 0.3s ease;
}

.whatsapp-chat:hover i {
  transform: scale(1.1);
  color: white;
}

/* Ensure WhatsApp icon is always visible */
.whatsapp-chat .fab.fa-whatsapp {
  display: block !important;
  font-size: 1.8rem !important;
  color: white !important;
}

/* Enhanced Theme Toggle Functionality */
.theme-toggle-nav,
#themeToggleNav {
  cursor: pointer !important;
  pointer-events: auto !important;
  user-select: none;
}

.theme-toggle-nav:active,
#themeToggleNav:active {
  transform: scale(0.9) !important;
}

/* Ensure theme toggle is clickable */
.nav-controls {
  pointer-events: auto;
  z-index: 1000;
}

.nav-controls button {
  pointer-events: auto;
  cursor: pointer;
}

/* Debug styles for theme toggle */
.theme-toggle-nav {
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.theme-toggle-nav:hover {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Ensure navbar doesn't interfere with theme toggle */
.navbar {
  pointer-events: auto;
}

.nav-container {
  pointer-events: auto;
}

/* WhatsApp chat button improvements */
.whatsapp-chat {
  text-decoration: none !important;
  outline: none;
}

.whatsapp-chat:focus {
  outline: 2px solid rgba(37, 211, 102, 0.5);
  outline-offset: 2px;
}

/* Make sure Font Awesome icons load properly */
.fab,
.fas {
  font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free" !important;
  font-weight: 900;
}

.fab.fa-whatsapp::before {
  content: "\f232" !important;
}

.fas.fa-moon::before {
  content: "\f186" !important;
}

.fas.fa-sun::before {
  content: "\f185" !important;
}

/* Additional mobile theme toggle fix */
@media (max-width: 768px) {
  .nav-container {
    position: relative;
  }
  

}/
* Force Theme Changes to be Immediate and Visible */
body {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
}

.navbar {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
}

/* Ensure all sections use theme colors */
.hero,
.ecosystem-section,
.products-section,
.impact-section,
.community,
.testimonials-section,
.newsletter-section,
.footer {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
}

.journey,
.about-section,
.trusted-section {
  background-color: var(--bg-secondary) !important;
}

/* Force theme variables to override any conflicting styles */
[data-theme="light"] {
  --bg-primary: #ffffff !important;
  --bg-secondary: #f8fafc !important;
  --text-primary: #0f172a !important;
  --text-secondary: #475569 !important;
}

[data-theme="dark"] {
  --bg-primary: #0a0a0a !important;
  --bg-secondary: #111111 !important;
  --text-primary: #f8fafc !important;
  --text-secondary: #cbd5e1 !important;
}

/* Ensure theme toggle button is always visible and functional */
.theme-toggle-nav {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange)) !important;
  color: white !important;
  border: none !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}



/* Active navbar link styling */
.nav-menu a.active {
  color: var(--primary-blue) !important;
  font-weight: 600;
}

.nav-menu a.active::after {
  width: 100% !important;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange)) !important;
}/* Force i
mmediate theme changes */
html[data-theme="dark"] {
  --bg-primary: #0a0a0a !important;
  --bg-secondary: #111111 !important;
  --text-primary: #f8fafc !important;
  --text-secondary: #cbd5e1 !important;
}

html[data-theme="light"] {
  --bg-primary: #ffffff !important;
  --bg-secondary: #f8fafc !important;
  --text-primary: #0f172a !important;
  --text-secondary: #475569 !important;
}

/* Ensure body responds immediately */
html[data-theme="dark"] body {
  background-color: #0a0a0a !important;
  color: #f8fafc !important;
}

html[data-theme="light"] body {
  background-color: #ffffff !important;
  color: #0f172a !important;
}

/* Ensure navbar responds immediately */
html[data-theme="dark"] .navbar {
  background: rgba(10, 10, 10, 0.9) !important;
  color: #f8fafc !important;
}

html[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #0f172a !important;
}

/* Theme toggle button visibility */
.theme-toggle-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border: none !important;
  background: transparent !important;
  cursor: pointer !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.theme-toggle-nav:hover {
  background: var(--bg-secondary) !important;
  transform: scale(1.1) !important;
}

.theme-icon {
  font-size: 1.2rem !important;
  color: var(--text-primary) !important;
  transition: all 0.3s ease !important;
}/*
 ===== MOBILE OPTIMIZATION ===== */

/* Enhanced Mobile Navbar */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
    backdrop-filter: blur(20px);
  }
  
  .nav-container {
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-logo img {
    height: 35px;
    width: auto;
  }
  
  /* Hide navigation menu on mobile, show hamburger instead */
  .nav-menu {
    display: none;
  }
  
  /* Keep theme toggle visible and properly positioned */
  .nav-controls {
    display: flex !important;
    align-items: center;
  }
  
  .theme-toggle-nav {
    width: 35px !important;
    height: 35px !important;
    border-radius: 8px !important;
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
  }
  
  .theme-toggle-nav:hover {
    background: var(--bg-tertiary) !important;
    transform: scale(1.05) !important;
  }
  
  .theme-icon {
    font-size: 1rem !important;
  }
}

/* Mobile Hero Section */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-container {
    padding: 0 1rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .ecosystem-flow {
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Mobile Sections */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .section-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
  
  h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* Mobile Grid Layouts */
@media (max-width: 768px) {
  .ecosystem-pillars,
  .mission-grid,
  .testimonials-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .products-showcase {
    flex-direction: column;
    gap: 2rem;
  }
  
  .product-spotlight {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .community-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Mobile Cards */
@media (max-width: 768px) {
  .pillar-card,
  .mission-card,
  .testimonial-card,
  .community-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Mobile Forms */
@media (max-width: 768px) {
  .newsletter-form,
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  input,
  textarea,
  select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.75rem;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .newsletter-form input {
    width: 100%;
  }
  
  .newsletter-form button {
    width: 100%;
  }
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .social-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
  .whatsapp-chat {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
  /* Reduce animations on mobile for better performance */
  .hero-bg-animation,
  .hero-particles {
    display: none;
  }
  
  /* Simplify hover effects */
  .btn:hover,
  .pillar-card:hover,
  .mission-card:hover {
    transform: none;
  }
  
  /* Optimize images */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* Mobile Navigation Enhancement */
@media (max-width: 768px) {
  /* Add mobile menu toggle if needed in future */
  .mobile-menu-toggle {
    display: none; /* Hidden for now since nav items are external links */
  }
  
  /* Ensure proper spacing */
  .nav-container {
    min-height: 60px;
  }
  
  /* Better touch targets */
  .theme-toggle-nav {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Tablet Responsive (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .ecosystem-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-showcase {
    gap: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .section-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 0 0.75rem;
  }
}/* ===== M
OBILE MENU STYLES ===== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: var(--bg-secondary);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Content */
.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--bg-primary);
  border-left: 1px solid var(--border-color);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
  height: 30px;
  width: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: var(--bg-secondary);
}

/* Mobile Navigation Links */
.mobile-nav {
  padding: 1rem 0;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  background: var(--bg-secondary);
  border-left-color: var(--primary-blue);
  color: var(--primary-blue);
}

.mobile-nav-link.active {
  background: var(--bg-secondary);
  border-left-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* Show mobile menu toggle on mobile */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
  }
  
  /* Adjust nav controls spacing */
  .nav-controls {
    gap: 0.5rem;
  }
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
  .mobile-menu-overlay {
    display: none;
  }
}