   
   
   html {
  scroll-behavior: smooth;
}

* {
  transition: color 0.25s ease, 
              background 0.25s ease, 
              border 0.25s ease,
              transform 0.35s cubic-bezier(.22,1,.36,1),
              opacity 0.35s ease;
}


.fade-up {
  opacity: 0;
  transform: translateY(20px);
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.ai-chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.04),
    rgba(255,255,255,0)
  );
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4f8cff;
  box-shadow: 0 0 12px rgba(79,140,255,.9);
}

.chat-sub {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 2px;
}


.chat-reset {
  background: none;
  border: none;
  color: #999;
  font-size: 12px;
  cursor: pointer;
}

.chat-reset:hover {
  color: #fff;
}

    
    :root {
      --bg: #0b0d10;
      --bg-soft: #11141a;
      --text: #ffffff;
      --text-soft: #b6bcc9;
      --accent: #4f8cff;
      --border: rgba(255,255,255,0.08);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body {
      background: radial-gradient(1200px 600px at 80% -10%, rgba(79,140,255,0.15), transparent 40%),
                  radial-gradient(1000px 600px at -10% 10%, rgba(255,255,255,0.05), transparent 40%),
                  var(--bg);
      color: var(--text);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* Layout */
    .container {
      max-width: 1100px;
      margin: auto;
      padding: 0 24px;
    }

    header {
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .nav-links a {
      margin-left: 24px;
      font-size: 14px;
      color: var(--text-soft);
    }

    /* Hero */
    .hero {
      padding: 100px 0;
      text-align: left;
    }

    .hero-badge {
      display: inline-block;
      font-size: 11px;
      padding: 4px 8px;
      border-radius: 8px;
      background: rgba(255,255,255,0.06);
      color: var(--text-soft);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .hero-glow {
  width: 120px;
  height: 6px;
  margin: 20px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f8cff, transparent);
  opacity: .6;
}



    h1 {
      font-size: 56px;
      line-height: 1.1;
      letter-spacing: -0.03em;
      max-width: 700px;
    }

    .hero p {
      margin-top: 20px;
      max-width: 600px;
      color: var(--text-soft);
      font-size: 18px;
    }

    .hero-buttons {
      margin-top: 32px;
      display: flex;
      gap: 16px;
    }

    .btn {
      padding: 14px 22px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--text);
      cursor: pointer;
    }

    .btn-primary {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
    }

    /* Sections */
    section {
      padding: 80px 0;
      border-top: 1px solid var(--border);
    }

    .section-title {
      font-size: 36px;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .section-subtitle {
      color: var(--text-soft);
      max-width: 600px;
    }

    /* Cards */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .card {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
    }

    .card h3 {
      margin-bottom: 8px;
      font-size: 18px;
    }

    .card p {
      font-size: 14px;
      color: var(--text-soft);
    }

    /* CTA */
    .cta {
      text-align: center;
      background: radial-gradient(600px 300px at 50% -20%, rgba(79,140,255,0.25), transparent 60%);
    }

    .cta h2 {
      font-size: 40px;
      letter-spacing: -0.02em;
    }

    .cta p {
      margin-top: 12px;
      color: var(--text-soft);
    }

    footer {
      padding: 40px 0;
      border-top: 1px solid var(--border);
      color: var(--text-soft);
      font-size: 13px;
      text-align: center;
    }

    @media (max-width: 768px) {
  h1 {
    font-size: 42px;
  }

  header nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .nav-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero {
    padding: 70px 0 60px;
    text-align: center;
  }

  h1 {
    font-size: 36px;
    line-height: 1.15;
  }

  .hero p {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-glow {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
    text-align: center;
  }

  .section-subtitle {
    text-align: center;
    margin: auto;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-left: 10px;
    padding-right: 10px;
  }
}

#leadForm input,
#leadForm textarea {
  background:#121722;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:10px;
  padding:14px;
  color:white;
  font-size:15px;
}

#leadForm input:focus,
#leadForm textarea:focus {
  outline:none;
  border-color:#4f8cff;
}



