 :root {
      --primary-color:#313746;
      --secondary-color: #313746;
      --accent-color: #3182CE;
      --highlight-color: #E53E3E;
    }
html, body {
  overflow-x: hidden;
}

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: var(--secondary-color);
    }

    .navbar {
      padding: 0.4rem 0;
      background: var(--primary-color) !important;
      box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    }
    

    .hero {
         background: #313746;
      color: white;
      padding: 200px 0 100px;
    }

    .graphic-wave {
      position: absolute;
      bottom: -114px;
      left: 0;
      width: 100%;
      height:88px;
      /*background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0 70L50 66C100 62 200 54 300 52C400 50 500 54 600 58C700 62 800 66 900 60C1000 54 1100 38 1150 30L1200 22V120H0Z" fill="%23f8f9fa"/></svg>');*/
    }
  

    .feature-card {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 4px 25px rgba(0,0,0,0.08);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .section {
      padding: 50px 0;
      position: relative;
    }

    .dashboard-mockup {
      border-radius: 20px;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--accent-color);
    }

    .stat-label {
      color: var(--secondary-color);
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .hero {
        padding: 120px 0 60px;
      }
      
      .section {
        padding: 60px 0;
      }

      .stat-number {
        font-size: 2rem;
      }
    }

    .cta-section {
      background: var(--primary-color);
      color: white;
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: -140px;
    }

    .footer {
      background: var(--secondary-color);
      color: #CBD5E0;
      padding: 125px 0 40px;
    }

    .gradient-text {
      background: linear-gradient(45deg, var(--accent-color), var(--highlight-color));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
        a{
       color: white;
    }