 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #050816;
      color: white;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .background-glow {
      position: fixed;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, rgba(59,130,246,0) 70%);
      top: -200px;
      right: -200px;
      z-index: -1;
    }

    .background-glow-2 {
      position: fixed;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, rgba(168,85,247,0) 70%);
      bottom: -200px;
      left: -200px;
      z-index: -1;
    }

    header {
      width: 100%;
      height: 80px;
     padding: 0 9%;
      padding: 24px 8%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      backdrop-filter: blur(16px);
      background: rgba(5, 8, 22, 0.6);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      z-index: 100;
    }

    .logo {
      font-size: 2.5rem;
      font-weight: 800;
      letter-spacing: 1px;
    }

    .logo span {
      color: #60a5fa;
    }

    nav {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    nav a {
      color: #d1d5db;
      transition: 0.3s;
      font-size: 0.95rem;
    }

    nav a:hover {
      color: white;
    }

    .btn {
      padding: 12px 22px;
      border-radius: 14px;
      background: linear-gradient(135deg, #3b82f6, #8b5cf6);
      color: white;
      font-weight: 600;
      transition: 0.3s;
      box-shadow: 0 10px 30px rgba(59,130,246,0.25);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 8%;
      gap: 60px;
    }

    .hero-text {
      max-width: 650px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      color: #cbd5e1;
      margin-bottom: 30px;
      font-size: 0.9rem;
    }

    .hero h1 {
      font-size: 4rem;
      line-height: 1.05;
      margin-bottom: 24px;
      font-weight: 800;
    }

    .gradient-text {
      background: linear-gradient(135deg, #60a5fa, #a855f7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .contact-form-container{
          max-width: 750px;
          margin: auto;
          margin-top: 50px;
        }
        
        .contact-form{
          background: linear-gradient(180deg, rgba(8,20,45,0.95), rgba(2,10,25,0.95));
          padding: 40px;
          border-radius: 28px;
          border: 1px solid rgba(59,130,246,0.25);
          box-shadow: 0 20px 50px rgba(0,0,0,0.35);
        }
        
        .input-group{
          margin-bottom: 22px;
        }
        
        .contact-form input,
        .contact-form textarea{
          width: 100%;
          padding: 18px 20px;
          border-radius: 16px;
          border: 1px solid rgba(255,255,255,0.08);
          background: rgba(255,255,255,0.03);
          color: white;
          font-size: 1rem;
          outline: none;
          transition: 0.3s;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus{
          border-color: #3b82f6;
          box-shadow: 0 0 20px rgba(59,130,246,0.15);
        }
        
        .contact-form textarea{
          resize: none;
        }
        
        .contact-form input::placeholder,
        .contact-form textarea::placeholder{
          color: #94a3b8;
        }

    .hero p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #94a3b8;
      margin-bottom: 40px;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn-secondary {
      padding: 12px 22px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.03);
      color: white;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.06);
    }

    .hero-card {
      width: 420px;
      border-radius: 28px;
      padding: 30px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(20px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

    .window-top {
      display: flex;
      gap: 8px;
      margin-bottom: 24px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }

    .red { background: #ef4444; }
    .yellow { background: #f59e0b; }
    .green { background: #10b981; }

    .code-line {
      height: 14px;
      border-radius: 10px;
      margin-bottom: 16px;
      background: linear-gradient(90deg, rgba(96,165,250,0.7), rgba(168,85,247,0.4));
    }

    .small { width: 40%; }
    .medium { width: 65%; }
    .large { width: 100%; }

    section {
      padding: 120px 8%;
    }

    .section-title {
      text-align: center;
      margin-bottom: 70px;
    }

    .section-title h2 {
      font-size: 2.8rem;
      margin-bottom: 16px;
    }

    .section-title p {
      color: #94a3b8;
      max-width: 700px;
      margin: auto;
      line-height: 1.8;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .services-title {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 25px;
    }

    .services-title::before,
    .services-title::after {
      content: '';
      width: 120px;
      height: 2px;
      background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    }

    .services-title span {
      color: #3b82f6;
    }

    .service-card {
      padding: 40px 30px;
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(8,20,45,0.95), rgba(2,10,25,0.95));
      border: 1px solid rgba(59,130,246,0.25);
      transition: 0.35s;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 30px rgba(0,0,0,0.35);
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(59,130,246,0.08), transparent 60%);
      opacity: 0;
      transition: 0.4s;
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: rgba(96,165,250,0.5);
      box-shadow: 0 20px 50px rgba(59,130,246,0.18);
    }

    .service-icon {
      width: 95px;
      height: 95px;
      border-radius: 24px;
      background: linear-gradient(180deg, #1d4ed8, #312e81);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      margin: 0 auto 28px auto;
      box-shadow: 0 15px 35px rgba(59,130,246,0.25);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .service-card h3 {
      margin-bottom: 16px;
      font-size: 1.3rem;
    }

    .service-card p {
      color: #94a3b8;
      line-height: 1.8;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin-top: 60px;
    }

    .stat-box {
      padding: 40px;
      border-radius: 24px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      text-align: center;
    }

    .stat-box h3 {
      font-size: 3rem;
      margin-bottom: 12px;
    }

    .stat-box p {
      color: #94a3b8;
    }

    .contact-box {
      padding: 60px;
      border-radius: 32px;
      background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(168,85,247,0.15));
      border: 1px solid rgba(255,255,255,0.08);
      text-align: center;
    }

    .contact-box h2 {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .contact-box p {
      color: #d1d5db;
      max-width: 700px;
      margin: auto auto 35px auto;
      line-height: 1.8;
    }

    .btn-whatsapp{
       background: #25D366;
      color: white;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    
    .btn-whatsapp:hover{
      background: #1ebe5d;
    }

    footer {
      padding: 40px 8%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(255,255,255,0.06);
      color: #94a3b8;
      flex-wrap: wrap;
      gap: 20px;
    }

    .logo{
    display: flex;
    align-items: center;
}

.logo-img{
    height: 150px;
    width: auto;
    object-fit: contain;
}

.menu-toggle{
      display: none;
      font-size: 2rem;
      cursor: pointer;
      color: white;
    }

    @media(max-width: 1000px) {
         .menu-toggle{
        display: block;
      }

      nav {
        position: absolute;
        top: 80px;
        right: 8%;
        width: 260px;
        background: rgba(5, 8, 22, 0.98);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 20px;
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        display: none;
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
      }

      nav.active {
        display: flex;
      }
      .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 80px;
      }

      .hero-buttons {
        justify-content: center;
      }

      .hero-card {
        width: 100%;
        max-width: 500px;
      }

      .hero h1 {
        font-size: 3rem;
      }

      nav {
        display: none;
      }
    }

    @media(max-width: 600px) {
      .hero h1 {
        font-size: 2.3rem;
      }

      .section-title h2,
      .contact-box h2 {
        font-size: 2rem;
      }

      .contact-box {
        padding: 40px 24px;
      }
    }