/* ===== Base Styles ===== */
:root {
    --primary: #6a11cb;
    --secondary: #2575fc;
    --accent: #ff3e9d;
    --text: #2d3748;
    --light: #f8f9fa;
    --dark: #212529;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
  }
  
  /* ===== Typography ===== */
  h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
  }
  
  h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .highlight {
    color: #ffeb3b;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }

  /* ===== Navigation Bar ===== */
.navbar {
    background: rgba(26, 26, 46, 0.9); /* Semi-transparent dark */
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo span {
    color: var(--primary); 
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary); /* Highlight with your --primary color */
}

  
  /* ===== Hero Section ===== */
  .hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--light);
    transform: skewY(-2deg);
    z-index: 1;
  }
  
  /* ===== CTA Button ===== */
  .cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 1.5rem;
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }
  
  /* ===== How It Works ===== */
  .how-it-works {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .step {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 2rem;
    margin: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .step:hover {
    transform: translateY(-10px);
  }
  
  .number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
  }
  
  /* ===== Demo Section ===== */
  .demo {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, var(--light), white);
  }
  
  .demo-box {
    text-align: center;
    padding: 2rem;
    margin: 0 auto;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.simple-demo {
  padding: 2rem;
  text-align: center;
}

.simple-demo-box {
  background: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.simple-demo-box h2 {
  margin-bottom: 1rem;
}

.simple-demo-box p {
  color: #666;
  line-height: 1.5;
}

  /* ===== Responsive Design ===== */
  @media (max-width: 768px) {
    .how-it-works {
      flex-direction: column;
    }
    
    h1 {
      font-size: 2.5rem;
    }
    
    .hero {
      padding: 5rem 1rem;
    }
  }