 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #1A2C3E;
      line-height: 1.5;
      scroll-behavior: smooth;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: #0A66C2;
      color: white;
      font-weight: 600;
      font-size: 1rem;
      padding: 14px 32px;
      border-radius: 40px;
      text-decoration: none;
      transition: all 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(10,102,194,0.2);
    }
    .btn-primary:hover {
      background-color: #084d8f;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(10,102,194,0.25);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: 1.5px solid #0A66C2;
      color: #0A66C2;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 40px;
      text-decoration: none;
      transition: 0.2s;
    }
    .btn-outline:hover {
      background: #eef4fc;
      border-color: #084d8f;
      color: #084d8f;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 0;
      flex-wrap: wrap;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #0A2647;
    }
    .logo span {
      color: #0A66C2;
    }
    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
    }
    .nav-links a {
      text-decoration: none;
      color: #2C3E50;
      font-weight: 500;
      transition: 0.2s;
    }
    .nav-links a:hover {
      color: #0A66C2;
    }

    .hero {
      padding: 60px 0 80px 0;
      background: linear-gradient(135deg, #F8FAFE 0%, #FFFFFF 100%);
    }
    .hero-grid {
      display: flex;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .hero-content {
      flex: 1;
    }
    .hero-content h1 {
      font-size: 3.2rem;
      font-weight: 800;
      line-height: 1.2;
      color: #0A2647;
      margin-bottom: 20px;
    }
    .hero-tag {
      background: #E8F0FE;
      display: inline-block;
      padding: 6px 18px;
      border-radius: 40px;
      font-size: 0.9rem;
      font-weight: 600;
      color: #0A66C2;
      margin-bottom: 24px;
    }
    .hero-content p {
      font-size: 1.2rem;
      color: #4a627a;
      margin-bottom: 32px;
      max-width: 550px;
    }
    .hero-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .hero-visual {
      flex: 1;
      background: #EFF3F8;
      border-radius: 36px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 25px 40px -12px rgba(0,0,0,0.1);
    }
    .hero-visual i {
      font-size: 2.5rem;
      color: #0A66C2;
      background: white;
      padding: 16px;
      border-radius: 50px;
      margin: 0 6px;
      box-shadow: 0 5px 12px rgba(0,0,0,0.05);
    }
    .hero-visual p {
      margin-top: 20px;
      font-weight: 500;
      color: #1e2f3e;
    }

    section {
      padding: 80px 0;
    }
    .section-title {
      font-size: 2.2rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 56px;
      color: #0A2647;
    }
    .section-sub {
      text-align: center;
      max-width: 700px;
      margin: -30px auto 50px auto;
      color: #5a6e8a;
      font-size: 1.1rem;
    }

    /* Systems Grid */
    .systems-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    .system-card {
      background: white;
      border-radius: 28px;
      padding: 32px 24px;
      transition: all 0.2s ease;
      border: 1px solid #E9EDF2;
      box-shadow: 0 8px 20px rgba(0,0,0,0.02);
      text-align: center;
    }
    .system-card:hover {
      transform: translateY(-6px);
      border-color: #CDE1F5;
      box-shadow: 0 20px 30px -12px rgba(10,102,194,0.1);
    }
    .system-icon {
      font-size: 2.8rem;
      color: #0A66C2;
      margin-bottom: 20px;
    }
    .system-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .system-card p {
      color: #4b5e77;
      line-height: 1.5;
    }

    .features-grid, .steps-grid, .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
    }
    .feature-card, .step-card, .why-card {
      background: white;
      border-radius: 28px;
      padding: 32px 24px;
      transition: all 0.2s ease;
      border: 1px solid #E9EDF2;
      box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    }
    .feature-card:hover {
      transform: translateY(-6px);
      border-color: #CDE1F5;
      box-shadow: 0 20px 30px -12px rgba(10,102,194,0.1);
    }
    .feature-icon {
      font-size: 2.5rem;
      color: #0A66C2;
      margin-bottom: 20px;
    }
    .feature-card h3, .step-card h3, .why-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .feature-card p, .why-card p {
      color: #4b5e77;
      line-height: 1.5;
    }
    .step-number {
      display: inline-block;
      background: #EFF3FC;
      color: #0A66C2;
      font-weight: 800;
      font-size: 1.2rem;
      padding: 4px 12px;
      border-radius: 60px;
      margin-bottom: 20px;
    }

    .demo-showcase {
      background: #F8F9FC;
      border-radius: 40px;
      padding: 48px 32px;
      text-align: center;
      border: 1px solid #E2E9F2;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    .testimonial {
      background: #F9FBFE;
      border-radius: 28px;
      padding: 28px;
      border-left: 5px solid #0A66C2;
    }
    .testimonial p {
      font-style: italic;
      margin-bottom: 16px;
      color: #2c3e50;
    }
    .client {
      font-weight: 700;
      color: #0A2647;
    }

    .contact-section {
      background: #0A2647;
      color: white;
      border-radius: 40px;
      margin: 40px 0 80px;
      padding: 56px 48px;
    }
    .contact-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 48px;
      justify-content: space-between;
    }
    .contact-info {
      flex: 1;
    }
    .contact-info h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
    }
    .contact-detail {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 24px 0;
    }
    .contact-detail i {
      font-size: 1.6rem;
      width: 40px;
    }
    .whatsapp-btn {
      background: #25D366;
      color: white;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 12px 28px;
      border-radius: 60px;
      font-weight: 700;
      text-decoration: none;
      margin-top: 12px;
      transition: 0.2s;
    }
    .whatsapp-btn:hover {
      background: #128C7E;
      transform: scale(1.02);
    }
    .contact-form {
      flex: 1;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(2px);
      padding: 28px;
      border-radius: 32px;
    }
    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 14px 16px;
      margin-bottom: 18px;
      border: none;
      border-radius: 20px;
      background: white;
      font-family: inherit;
      font-size: 1rem;
    }
    .contact-form button {
      background: #0A66C2;
      border: none;
      width: 100%;
      font-weight: 700;
    }
    footer {
      text-align: center;
      padding: 32px 0;
      border-top: 1px solid #E9EDF2;
      color: #6c7f8f;
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 20px;
      }
      .hero-content h1 {
        font-size: 2.2rem;
      }
      .navbar {
        flex-direction: column;
        gap: 18px;
      }
      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
      }
      .hero-grid {
        flex-direction: column;
      }
      .contact-section {
        padding: 32px 24px;
      }
    }

    .quixnes-footer {
    background: #0A1C2F;
    color: #B0C4DE;
    padding: 60px 0 30px;
    margin-top: 40px;
    border-top: 1px solid #1E3A5F;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
  }
  .footer-logo span {
    color: #0A66C2;
  }

  .footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #B0C4DE;
  }

  .social-links {
    display: flex;
    gap: 16px;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #1E3A5F;
    border-radius: 50%;
    color: white;
    transition: all 0.2s ease;
    text-decoration: none;
  }
  .social-links a:hover {
    background: #0A66C2;
    transform: translateY(-3px);
  }

  .footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
  }

  .footer-links, .footer-contact {
    list-style: none;
    padding: 0;
  }
  .footer-links li, .footer-contact li {
    margin-bottom: 12px;
  }
  .footer-links a {
    color: #B0C4DE;
    text-decoration: none;
    transition: 0.2s;
  }
  .footer-links a:hover {
    color: white;
    padding-left: 4px;
  }
  .footer-contact li i {
    width: 28px;
    color: #0A66C2;
  }

  .compliance-badge {
    background: #0E2A3B;
    padding: 12px;
    border-radius: 16px;
    margin-top: 20px;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.8;
  }
  .compliance-badge i {
    margin-right: 6px;
    color: #0A66C2;
  }

  .footer-bottom {
    border-top: 1px solid #1E3A5F;
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
  }
  .registration {
    font-size: 0.75rem;
    opacity: 0.7;
  }

  @media (max-width: 768px) {
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }
