.itm-landing-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  gap: 52px;
  padding: 64px 7.5vw 48px;
  background-color: #fafaf9;
}

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

.logo {
  font-family: "Kiwi Maru", Helvetica, sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 64px;
  line-height: 1;
}

.technical {
  margin-top: 12px;
  font-family: "Kiwi Maru", Helvetica, sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 15px;
}

.line {
  width: 100%;
  height: 1px;
  background: #e2e8f0;
}

.services-container {
  width: 100%;
  max-width: 1182px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 380px;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .07);
  border-color: #cbd5e1;
}

.frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.div-wrapper {
  display: flex;
  width: 128px;
  height: 128px;
  align-items: center;
  justify-content: center;
  background-color: #f0f9ff;
  border-radius: 64px;
}

.vector-wrapper {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}

.vector {
  width: 56px;
  height: 56px;
}

.div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.text-wrapper-2 {
  width: 100%;
  font-family: "Geist", Helvetica, sans-serif;
  font-weight: 600;
  color: #0f172a;
  font-size: 20px;
  text-align: center;
}

.p {
  width: 100%;
  font-family: "Geist", Helvetica, sans-serif;
  font-weight: 400;
  color: #64748b;
  font-size: 14px;
  text-align: center;
  line-height: 21px;
}

.frame-2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.explore-system {
  font-family: "Geist Mono", monospace;
  font-weight: 600;
  color: #0f172a;
  font-size: 11px;
  letter-spacing: .11px;
}

.arrow-icon {
  width: 12px;
  height: 12px;
}

.spacer {
  flex: 1;
  min-height: 20px;
}

.footer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.text-wrapper-3 {
  font-family: "Geist Mono", monospace;
  font-weight: 400;
  color: #64748b;
  font-size: 11px;
}

@media (max-width: 900px) {
  .itm-landing-page {
    padding: 48px 24px 36px;
    gap: 38px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .service-card {
    height: 360px;
  }

  .logo {
    font-size: 54px;
  }
}

@media (max-width: 480px) {
  .itm-landing-page {
    padding: 36px 16px 28px;
  }

  .service-card {
    padding: 32px 24px;
  }

  .technical {
    font-size: 13px;
  }
}
